@charset "UTF-8";
.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: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  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% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    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% {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    transform: none;
  }
}

@keyframes wobble {
  0% {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    transform: none;
  }
}

@keyframes jello {
  11.1% {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    transform: none;
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 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;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    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;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    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% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    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% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    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% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    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% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    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% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    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;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    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;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInStable {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  33.333% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  66.666666% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomInStable {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  33.333% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  66.666666% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.zoomInStable {
  -webkit-animation-name: zoomInStable;
  animation-name: zoomInStable;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

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

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    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);
  }
}

.animate {
  -webkit-animation: shadow-drop-2-center 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite reverse forwards;
  animation: shadow-drop-2-center 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite reverse forwards;
}

@-webkit-keyframes slide-fwd-center {
  0% {
    transform: translateZ(0);
  }

  100% {
    transform: translateZ(160px);
  }
}

@keyframes slide-fwd-center {
  0% {
    transform: translateZ(0);
  }

  100% {
    transform: translateZ(160px);
  }
}

@-webkit-keyframes slide-rotate-hor-top {
  0% {
    transform: translateY(0) rotateX(0deg);
  }

  100% {
    transform: translateY(-150px) rotateX(-90deg);
  }
}

@keyframes slide-rotate-hor-top {
  0% {
    transform: translateY(0) rotateX(0deg);
  }

  100% {
    transform: translateY(-150px) rotateX(-90deg);
  }
}

@-webkit-keyframes flip-scale-down-diag-2 {
  0% {
    transform: scale(1) rotate3d(-1, 1, 0, 0deg);
  }

  50% {
    transform: scale(0.4) rotate3d(-1, 1, 0, -90deg);
  }

  100% {
    transform: scale(1) rotate3d(-1, 1, 0, -180deg);
  }
}

@keyframes flip-scale-down-diag-2 {
  0% {
    transform: scale(1) rotate3d(-1, 1, 0, 0deg);
  }

  50% {
    transform: scale(0.4) rotate3d(-1, 1, 0, -90deg);
  }

  100% {
    transform: scale(1) rotate3d(-1, 1, 0, -180deg);
  }
}

@-webkit-keyframes shadow-drop-2-center {
  0% {
    transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }

  100% {
    transform: translateZ(50px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}

@keyframes shadow-drop-2-center {
  0% {
    transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }

  100% {
    transform: translateZ(50px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}

@font-face {
  font-family: "Flaticon";
  src: url("/fonts/flaticon.eot");
  src: url("/fonts/flaticon.eot?#iefix") format("embedded-opentype"), url("/fonts/flaticon.woff") format("woff"), url("/fonts/flaticon.ttf") format("truetype"), url("/fonts/flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
    font-family: "Flaticon";
    src: url("/fonts/flaticon.svg#Flaticon") format("svg");
}
}

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

.flaticon-collaboration:before {
  content: "\F100";
}

.flaticon-organization:before {
  content: "\F101";
}

.flaticon-computer:before {
  content: "\F102";
}

.flaticon-handshake:before {
  content: "\F103";
}

.flaticon-targeting:before {
  content: "\F104";
}

.flaticon-drop:before {
  content: "\F105";
}

.flaticon-unlink:before {
  content: "\F106";
}

.flaticon-search-1:before {
  content: "\F107";
}

.flaticon-like-1:before {
  content: "\F108";
}

.flaticon-play-button-2:before {
  content: "\F109";
}

.flaticon-placeholder-2:before {
  content: "\F10A";
}

.flaticon-diamond:before {
  content: "\F10B";
}

.flaticon-file-1:before {
  content: "\F10C";
}

.flaticon-calendar-1:before {
  content: "\F10D";
}

.flaticon-briefcase-1:before {
  content: "\F10E";
}

.flaticon-menu:before {
  content: "\F10F";
}

.flaticon-check-1:before {
  content: "\F110";
}

.flaticon-cancel-1:before {
  content: "\F111";
}

.flaticon-back-1:before {
  content: "\F112";
}

.flaticon-shopping-bag-3:before {
  content: "\F113";
}

.flaticon-monitor:before {
  content: "\F114";
}

.flaticon-piggy-bank-1:before {
  content: "\F115";
}

.flaticon-shopping-cart-1:before {
  content: "\F116";
}

.flaticon-phone-call:before {
  content: "\F117";
}

.flaticon-headphones-1:before {
  content: "\F118";
}

.flaticon-vector:before {
  content: "\F119";
}

.flaticon-house:before {
  content: "\F11A";
}

.flaticon-share:before {
  content: "\F11B";
}

.flaticon-musical-note:before {
  content: "\F11C";
}

.flaticon-back:before {
  content: "\F11D";
}

.flaticon-shopping-bag-2:before {
  content: "\F11E";
}

.flaticon-clock-2:before {
  content: "\F11F";
}

.flaticon-apple-logo:before {
  content: "\F120";
}

.flaticon-briefcase:before {
  content: "\F121";
}

.flaticon-money-bag-1:before {
  content: "\F122";
}

.flaticon-business-1:before {
  content: "\F123";
}

.flaticon-24-hours:before {
  content: "\F124";
}

.flaticon-send:before {
  content: "\F125";
}

.flaticon-shopping-cart:before {
  content: "\F126";
}

.flaticon-message:before {
  content: "\F127";
}

.flaticon-bar-chart:before {
  content: "\F128";
}

.flaticon-home-1:before {
  content: "\F129";
}

.flaticon-arrows-5:before {
  content: "\F12A";
}

.flaticon-file:before {
  content: "\F12B";
}

.flaticon-chat:before {
  content: "\F12C";
}

.flaticon-settings-1:before {
  content: "\F12D";
}

.flaticon-cloud:before {
  content: "\F12E";
}

.flaticon-envelope-1:before {
  content: "\F12F";
}

.flaticon-planet-earth:before {
  content: "\F130";
}

.flaticon-placeholder-1:before {
  content: "\F131";
}

.flaticon-interface-1:before {
  content: "\F132";
}

.flaticon-layers-1:before {
  content: "\F133";
}

.flaticon-edit:before {
  content: "\F134";
}

.flaticon-trophy-1:before {
  content: "\F135";
}

.flaticon-note-1:before {
  content: "\F136";
}

.flaticon-line-graph:before {
  content: "\F137";
}

.flaticon-telemarketer:before {
  content: "\F138";
}

.flaticon-flash:before {
  content: "\F139";
}

.flaticon-calendar:before {
  content: "\F13A";
}

.flaticon-medal:before {
  content: "\F13B";
}

.flaticon-smartphone-1:before {
  content: "\F13C";
}

.flaticon-technology-2:before {
  content: "\F13D";
}

.flaticon-user-1:before {
  content: "\F13E";
}

.flaticon-technology-1:before {
  content: "\F13F";
}

.flaticon-photo-camera:before {
  content: "\F140";
}

.flaticon-arrows-4:before {
  content: "\F141";
}

.flaticon-arrows-3:before {
  content: "\F142";
}

.flaticon-speech-bubble:before {
  content: "\F143";
}

.flaticon-heart-1:before {
  content: "\F144";
}

.flaticon-paper-plane:before {
  content: "\F145";
}

.flaticon-star-1:before {
  content: "\F146";
}

.flaticon-graphic:before {
  content: "\F147";
}

.flaticon-user:before {
  content: "\F148";
}

.flaticon-previous:before {
  content: "\F149";
}

.flaticon-arrows-2:before {
  content: "\F14A";
}

.flaticon-padlock:before {
  content: "\F14B";
}

.flaticon-right-quote:before {
  content: "\F14C";
}

.flaticon-left-quote-1:before {
  content: "\F14D";
}

.flaticon-right-arrow-3:before {
  content: "\F14E";
}

.flaticon-list:before {
  content: "\F14F";
}

.flaticon-layers:before {
  content: "\F150";
}

.flaticon-add:before {
  content: "\F151";
}

.flaticon-play-button-1:before {
  content: "\F152";
}

.flaticon-price-tag:before {
  content: "\F153";
}

.flaticon-next-2:before {
  content: "\F154";
}

.flaticon-note:before {
  content: "\F155";
}

.flaticon-next-1:before {
  content: "\F156";
}

.flaticon-arrow:before {
  content: "\F157";
}

.flaticon-link:before {
  content: "\F158";
}

.flaticon-like:before {
  content: "\F159";
}

.flaticon-settings:before {
  content: "\F15A";
}

.flaticon-heart:before {
  content: "\F15B";
}

.flaticon-placeholder:before {
  content: "\F15C";
}

.flaticon-next:before {
  content: "\F15D";
}

.flaticon-garbage:before {
  content: "\F15E";
}

.flaticon-telephone:before {
  content: "\F15F";
}

.flaticon-money-bag:before {
  content: "\F160";
}

.flaticon-piggy-bank:before {
  content: "\F161";
}

.flaticon-headphones:before {
  content: "\F162";
}

.flaticon-coin:before {
  content: "\F163";
}

.flaticon-favorite:before {
  content: "\F164";
}

.flaticon-plus:before {
  content: "\F165";
}

.flaticon-minus:before {
  content: "\F166";
}

.flaticon-checked:before {
  content: "\F167";
}

.flaticon-unchecked:before {
  content: "\F168";
}

.flaticon-timer:before {
  content: "\F169";
}

.flaticon-profile:before {
  content: "\F16A";
}

.flaticon-cancel:before {
  content: "\F16B";
}

.flaticon-right-arrow-2:before {
  content: "\F16C";
}

.flaticon-left-arrow-2:before {
  content: "\F16D";
}

.flaticon-down-arrow:before {
  content: "\F16E";
}

.flaticon-search:before {
  content: "\F16F";
}

.flaticon-clock-1:before {
  content: "\F170";
}

.flaticon-interface:before {
  content: "\F171";
}

.flaticon-shopping-bag-1:before {
  content: "\F172";
}

.flaticon-shopping-bag:before {
  content: "\F173";
}

.flaticon-arrows-1:before {
  content: "\F174";
}

.flaticon-magnifying-glass:before {
  content: "\F175";
}

.flaticon-smartphone:before {
  content: "\F176";
}

.flaticon-time:before {
  content: "\F177";
}

.flaticon-play-button:before {
  content: "\F178";
}

.flaticon-left-arrow-1:before {
  content: "\F179";
}

.flaticon-right-arrow-1:before {
  content: "\F17A";
}

.flaticon-minus-symbol:before {
  content: "\F17B";
}

.flaticon-plus-symbol:before {
  content: "\F17C";
}

.flaticon-clock:before {
  content: "\F17D";
}

.flaticon-download-arrow:before {
  content: "\F17E";
}

.flaticon-envelope:before {
  content: "\F17F";
}

.flaticon-up-arrow:before {
  content: "\F180";
}

.flaticon-people:before {
  content: "\F181";
}

.flaticon-commenting:before {
  content: "\F182";
}

.flaticon-technology:before {
  content: "\F183";
}

.flaticon-share-symbol:before {
  content: "\F184";
}

.flaticon-arrows:before {
  content: "\F185";
}

.flaticon-sent-mail:before {
  content: "\F186";
}

.flaticon-label:before {
  content: "\F187";
}

.flaticon-menu-options:before {
  content: "\F188";
}

.flaticon-web-page-home:before {
  content: "\F189";
}

.flaticon-location-pin:before {
  content: "\F18A";
}

.flaticon-arrow-pointing-to-right:before {
  content: "\F18B";
}

.flaticon-right-arrow:before {
  content: "\F18C";
}

.flaticon-house-outline:before {
  content: "\F18D";
}

.flaticon-left-arrow:before {
  content: "\F18E";
}

.flaticon-round:before {
  content: "\F18F";
}

.flaticon-check-symbol:before {
  content: "\F190";
}

.flaticon-forward-arrow:before {
  content: "\F191";
}

.flaticon-left-quote:before {
  content: "\F192";
}

.flaticon-placeholder-filled-point:before {
  content: "\F193";
}

.flaticon-right-quotation-sign:before {
  content: "\F194";
}

.flaticon-wifi-connection-signal-symbol:before {
  content: "\F195";
}

.flaticon-world:before {
  content: "\F196";
}

.flaticon-word-file:before {
  content: "\F197";
}

.flaticon-symbol:before {
  content: "\F198";
}

.flaticon-map-marker:before {
  content: "\F199";
}

.flaticon-home:before {
  content: "\F19A";
}

.flaticon-tag-black-shape:before {
  content: "\F19B";
}

.flaticon-quote-left:before {
  content: "\F19C";
}

.flaticon-tags:before {
  content: "\F19D";
}

.flaticon-check:before {
  content: "\F19E";
}

.flaticon-user-shape:before {
  content: "\F19F";
}

.flaticon-telephone-handle-silhouette:before {
  content: "\F1A0";
}

.flaticon-right-quotation-mark:before {
  content: "\F1A1";
}

.flaticon-comments:before {
  content: "\F1A2";
}

.flaticon-earth:before {
  content: "\F1A3";
}

.flaticon-pdf:before {
  content: "\F1A4";
}

.flaticon-word:before {
  content: "\F1A5";
}

.flaticon-pencil:before {
  content: "\F1A6";
}

.flaticon-trophy:before {
  content: "\F1A7";
}

.flaticon-e-mail-envelope:before {
  content: "\F1A8";
}

.flaticon-go-back-arrow:before {
  content: "\F1A9";
}

.flaticon-boat-anchor:before {
  content: "\F1AA";
}

.flaticon-send-message-button:before {
  content: "\F1AB";
}

.flaticon-web:before {
  content: "\F1AC";
}

.flaticon-boat-lifesaver:before {
  content: "\F1AD";
}

.flaticon-business:before {
  content: "\F1AE";
}

.flaticon-home-page:before {
  content: "\F1AF";
}

.flaticon-star:before {
  content: "\F1B0";
}

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "FontAwesome";
  src: url("/fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.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% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-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-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-genderless:before,
.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-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-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";
}

/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.0.2
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php

 * Hover.css Copyright Ian Lunn 2014. Generated with Sass.
 */

/* 2D TRANSITIONS */

/* Grow */

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);
}

/* Shrink */

.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-shrink:hover,
.hvr-shrink:focus,
.hvr-shrink:active {
  transform: scale(0.9);
}

/* Pulse */

@-webkit-keyframes hvr-pulse {
  25% {
    transform: scale(1.1);
  }

  75% {
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse {
  25% {
    transform: scale(1.1);
  }

  75% {
    transform: scale(0.9);
  }
}

.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-pulse:hover,
.hvr-pulse:focus,
.hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */

@-webkit-keyframes hvr-pulse-grow {
  to {
    transform: scale(1.1);
  }
}

@keyframes hvr-pulse-grow {
  to {
    transform: scale(1.1);
  }
}

.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-pulse-grow:hover,
.hvr-pulse-grow:focus,
.hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */

@-webkit-keyframes hvr-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}

.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-pulse-shrink:hover,
.hvr-pulse-shrink:focus,
.hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */

@-webkit-keyframes hvr-push {
  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hvr-push {
  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

.hvr-push {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */

@-webkit-keyframes hvr-pop {
  50% {
    transform: scale(1.2);
  }
}

@keyframes hvr-pop {
  50% {
    transform: scale(1.2);
  }
}

.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Bounce In */

.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.5s;
}

.hvr-bounce-in:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */

.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.5s;
}

.hvr-bounce-out:hover,
.hvr-bounce-out:focus,
.hvr-bounce-out:active {
  transform: scale(0.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */

.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-rotate:hover,
.hvr-rotate:focus,
.hvr-rotate:active {
  transform: rotate(4deg);
}

/* Grow Rotate */

.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow-rotate:hover,
.hvr-grow-rotate:focus,
.hvr-grow-rotate:active {
  transform: scale(1.1) rotate(4deg);
}

/* Float */

.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}

/* Sink */

.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-sink:hover,
.hvr-sink:focus,
.hvr-sink:active {
  transform: translateY(8px);
}

/* Bob */

@-webkit-keyframes hvr-bob {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    transform: translateY(-8px);
  }
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Hang */

@-webkit-keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(8px);
  }
}

@keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(8px);
  }
}

@-webkit-keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}

@keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}

.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-hang:hover,
.hvr-hang:focus,
.hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Skew */

.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-skew:hover,
.hvr-skew:focus,
.hvr-skew:active {
  transform: skew(-10deg);
}

/* Skew Forward */

.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.hvr-skew-forward:hover,
.hvr-skew-forward:focus,
.hvr-skew-forward:active {
  transform: skew(-10deg);
}

/* Skew Backward */

.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.hvr-skew-backward:hover,
.hvr-skew-backward:focus,
.hvr-skew-backward:active {
  transform: skew(10deg);
}

/* Wobble Vertical */

@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes hvr-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-vertical:hover,
.hvr-wobble-vertical:focus,
.hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */

@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }

  33.3% {
    transform: translateX(-6px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hvr-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }

  33.3% {
    transform: translateX(-6px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */

@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }

  33.3% {
    transform: translate(-6px, -6px);
  }

  49.95% {
    transform: translate(4px, 4px);
  }

  66.6% {
    transform: translate(-2px, -2px);
  }

  83.25% {
    transform: translate(1px, 1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }

  33.3% {
    transform: translate(-6px, -6px);
  }

  49.95% {
    transform: translate(4px, 4px);
  }

  66.6% {
    transform: translate(-2px, -2px);
  }

  83.25% {
    transform: translate(1px, 1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-to-bottom-right:hover,
.hvr-wobble-to-bottom-right:focus,
.hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */

@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }

  33.3% {
    transform: translate(-6px, 6px);
  }

  49.95% {
    transform: translate(4px, -4px);
  }

  66.6% {
    transform: translate(-2px, 2px);
  }

  83.25% {
    transform: translate(1px, -1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes hvr-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }

  33.3% {
    transform: translate(-6px, 6px);
  }

  49.95% {
    transform: translate(4px, -4px);
  }

  66.6% {
    transform: translate(-2px, 2px);
  }

  83.25% {
    transform: translate(1px, -1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-to-top-right:hover,
.hvr-wobble-to-top-right:focus,
.hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */

@-webkit-keyframes hvr-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

@keyframes hvr-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transform-origin: 0 100%;
}

.hvr-wobble-top:hover,
.hvr-wobble-top:focus,
.hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */

@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

@keyframes hvr-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transform-origin: 100% 0;
}

.hvr-wobble-bottom:hover,
.hvr-wobble-bottom:focus,
.hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */

@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

@keyframes hvr-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-skew:hover,
.hvr-wobble-skew:focus,
.hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */

@-webkit-keyframes hvr-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes hvr-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-buzz:hover,
.hvr-buzz:focus,
.hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */

@-webkit-keyframes hvr-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-buzz-out:hover,
.hvr-buzz-out:focus,
.hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* BACKGROUND TRANSITIONS */

/* Fade */

.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  transition-duration: 0.3s;
  transition-property: color, background-color;
}

.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
  background-color: #2098d1;
  color: white;
}

/* Back Pulse */

@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}

@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}

.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  transition-duration: 0.5s;
  transition-property: color, background-color;
}

.hvr-back-pulse:hover,
.hvr-back-pulse:focus,
.hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098d1;
  background-color: #2098d1;
  color: white;
}

/* Sweep To Right */

.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  transform: scaleX(1);
}

/* Sweep To Left */

.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-left:hover,
.hvr-sweep-to-left:focus,
.hvr-sweep-to-left:active {
  color: white;
}

.hvr-sweep-to-left:hover:before,
.hvr-sweep-to-left:focus:before,
.hvr-sweep-to-left:active:before {
  transform: scaleX(1);
}

/* Sweep To Bottom */

.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-bottom:hover,
.hvr-sweep-to-bottom:focus,
.hvr-sweep-to-bottom:active {
  color: white;
}

.hvr-sweep-to-bottom:hover:before,
.hvr-sweep-to-bottom:focus:before,
.hvr-sweep-to-bottom:active:before {
  transform: scaleY(1);
}

/* Sweep To Top */

.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: white;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  transform: scaleY(1);
}

/* Bounce To Right */

.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */

.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
  color: white;
}

.hvr-bounce-to-left:hover:before,
.hvr-bounce-to-left:focus:before,
.hvr-bounce-to-left:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */

.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-bottom:hover,
.hvr-bounce-to-bottom:focus,
.hvr-bounce-to-bottom:active {
  color: white;
}

.hvr-bounce-to-bottom:hover:before,
.hvr-bounce-to-bottom:focus:before,
.hvr-bounce-to-bottom:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */

.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
  color: white;
}

.hvr-bounce-to-top:hover:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */

.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  border-radius: 100%;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
  color: white;
}

.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
  transform: scale(2);
}

/* Radial In */

.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #2098d1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  transform: scale(2);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-radial-in:hover,
.hvr-radial-in:focus,
.hvr-radial-in:active {
  color: white;
}

.hvr-radial-in:hover:before,
.hvr-radial-in:focus:before,
.hvr-radial-in:active:before {
  transform: scale(0);
}

/* Rectangle In */

.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-rectangle-in:hover,
.hvr-rectangle-in:focus,
.hvr-rectangle-in:active {
  color: white;
}

.hvr-rectangle-in:hover:before,
.hvr-rectangle-in:focus:before,
.hvr-rectangle-in:active:before {
  transform: scale(0);
}

/* Rectangle Out */

.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
  color: white;
}

.hvr-rectangle-out:hover:before,
.hvr-rectangle-out:focus:before,
.hvr-rectangle-out:active:before {
  transform: scale(1);
}

.top-services .hvr-rectangle-out,
.services-slider .hvr-rectangle-out {
  transition-duration: 0.5s;
}

.top-services .hvr-rectangle-out:before,
.services-slider .hvr-rectangle-out:before {
  background: rgba(0, 0, 0, 0.05);
  transition-duration: 0.5s;
}

/* Shutter In Horizontal */

.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  transform: scaleX(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
  color: white;
}

.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
  transform: scaleX(0);
}

/* Shutter Out Horizontal */

.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white;
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  transform: scaleX(1);
}

/* Shutter In Vertical */

.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  transform: scaleY(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-in-vertical:hover,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:active {
  color: white;
}

.hvr-shutter-in-vertical:hover:before,
.hvr-shutter-in-vertical:focus:before,
.hvr-shutter-in-vertical:active:before {
  transform: scaleY(0);
}

/* Shutter Out Vertical */

.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
  color: white;
}

.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */

/* Border Fade */

.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

.hvr-border-fade:hover,
.hvr-border-fade:focus,
.hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */

.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

.hvr-hollow:hover,
.hvr-hollow:focus,
.hvr-hollow:active {
  background: none;
}

/* Trim */

.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-trim:before {
  content: "";
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}

.hvr-trim:hover:before,
.hvr-trim:focus:before,
.hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */

@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-ripple-out:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.meet-the-team .member .social li.hvr-ripple-out:before {
  border: #0f86ff solid 6px;
}

.hvr-ripple-out:hover:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/* Ripple In */

@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}

@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}

.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-ripple-in:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.hvr-ripple-in:hover:before,
.hvr-ripple-in:focus:before,
.hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}

/* Outline Out */

.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-outline-out:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.3s;
  transition-property: top, right, bottom, left;
}

.hvr-outline-out:hover:before,
.hvr-outline-out:focus:before,
.hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */

.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-outline-in:before {
  pointer-events: none;
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: top, right, bottom, left;
}

.hvr-outline-in:hover:before,
.hvr-outline-in:focus:before,
.hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */

.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: border-radius;
}

.hvr-round-corners:hover,
.hvr-round-corners:focus,
.hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */

.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */

.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */

.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-from-right:hover:before,
.hvr-underline-from-right:focus:before,
.hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */

.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098d1;
  height: 4px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-from-left:hover:before,
.hvr-overline-from-left:focus:before,
.hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */

.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #2098d1;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-from-center:hover:before,
.hvr-overline-from-center:focus:before,
.hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */

.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-from-right:hover:before,
.hvr-overline-from-right:focus:before,
.hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */

.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098d1;
  border-style: solid;
  border-width: 0;
  transition-property: border-width;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.hvr-reveal:hover:before,
.hvr-reveal:focus:before,
.hvr-reveal:active:before {
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */

.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  transform: translateY(4px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-reveal:hover:before,
.hvr-underline-reveal:focus:before,
.hvr-underline-reveal:active:before {
  transform: translateY(0);
}

/* Overline Reveal */

.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  transform: translateY(-4px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-reveal:hover:before,
.hvr-overline-reveal:focus:before,
.hvr-overline-reveal:active:before {
  transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */

/* Glow */

.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: box-shadow;
}

.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */

.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: box-shadow;
}

.hvr-shadow:hover,
.hvr-shadow:focus,
.hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */

.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
}

.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* Box Shadow Outset */

.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: box-shadow;
}

.hvr-box-shadow-outset:hover,
.hvr-box-shadow-outset:focus,
.hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */

.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

.hvr-box-shadow-inset:hover,
.hvr-box-shadow-inset:focus,
.hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */

.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}

.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
  transform: translateY(-5px);
  /* move the element up by 5px */
}

.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */

.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-shadow-radial:before,
.hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}

.hvr-shadow-radial:before {
  bottom: 100%;
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.hvr-shadow-radial:after {
  top: 100%;
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.hvr-shadow-radial:hover:before,
.hvr-shadow-radial:focus:before,
.hvr-shadow-radial:active:before,
.hvr-shadow-radial:hover:after,
.hvr-shadow-radial:focus:after,
.hvr-shadow-radial:active:after {
  opacity: 1;
}

/* SPEECH BUBBLES */

/* Bubble Top */

.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}

.hvr-bubble-top:hover:before,
.hvr-bubble-top:focus:before,
.hvr-bubble-top:active:before {
  transform: translateY(-10px);
}

/* Bubble Right */

.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}

.hvr-bubble-right:hover:before,
.hvr-bubble-right:focus:before,
.hvr-bubble-right:active:before {
  transform: translateX(10px);
}

/* Bubble Bottom */

.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}

.hvr-bubble-bottom:hover:before,
.hvr-bubble-bottom:focus:before,
.hvr-bubble-bottom:active:before {
  transform: translateY(10px);
}

/* Bubble Left */

.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}

.hvr-bubble-left:hover:before,
.hvr-bubble-left:focus:before,
.hvr-bubble-left:active:before {
  transform: translateX(-10px);
}

/* Bubble Float Top */

.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: "";
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-top:hover,
.hvr-bubble-float-top:focus,
.hvr-bubble-float-top:active {
  transform: translateY(10px);
}

.hvr-bubble-float-top:hover:before,
.hvr-bubble-float-top:focus:before,
.hvr-bubble-float-top:active:before {
  transform: translateY(-10px);
}

/* Bubble Float Right */

.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-right:hover,
.hvr-bubble-float-right:focus,
.hvr-bubble-float-right:active {
  transform: translateX(-10px);
}

.hvr-bubble-float-right:hover:before,
.hvr-bubble-float-right:focus:before,
.hvr-bubble-float-right:active:before {
  transform: translateX(10px);
}

/* Bubble Float Bottom */

.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: "";
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-bottom:hover,
.hvr-bubble-float-bottom:focus,
.hvr-bubble-float-bottom:active {
  transform: translateY(-10px);
}

.hvr-bubble-float-bottom:hover:before,
.hvr-bubble-float-bottom:focus:before,
.hvr-bubble-float-bottom:active:before {
  transform: translateY(10px);
}

/* Bubble Float Left */

.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-left:hover,
.hvr-bubble-float-left:focus,
.hvr-bubble-float-left:active {
  transform: translateX(10px);
}

.hvr-bubble-float-left:hover:before,
.hvr-bubble-float-left:focus:before,
.hvr-bubble-float-left:active:before {
  transform: translateX(-10px);
}

/* ICONS */

/* Icon Back */

.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-left: 2.2em;
  transition-duration: 0.1s;
}

.hvr-icon-back:before {
  content: "\F137";
  position: absolute;
  left: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
  transform: translateX(-4px);
}

/* Icon Forward */

.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.1s;
}

.hvr-icon-forward:before {
  content: "\F138";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
  transform: translateX(4px);
}

/* Icon Down */

@-webkit-keyframes hvr-icon-down {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-down {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(6px);
  }
}

/* Icon Down */

.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-down:before {
  content: "\F01A";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-down:hover:before,
.hvr-icon-down:focus:before,
.hvr-icon-down:active:before {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Up */

@-webkit-keyframes hvr-icon-up {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-up {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(-6px);
  }
}

/* Icon Up */

.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-up:before {
  content: "\F01B";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-up:hover:before,
.hvr-icon-up:focus:before,
.hvr-icon-up:active:before {
  -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Spin */

.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-spin:before {
  content: "\F021";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transition-duration: 1s;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}

.hvr-icon-spin:hover:before,
.hvr-icon-spin:focus:before,
.hvr-icon-spin:active:before {
  transform: rotate(360deg);
}

/* Icon Drop */

@-webkit-keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  51%, 100% {
    opacity: 1;
  }
}

@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  51%, 100% {
    opacity: 1;
  }
}

/* Icon Drop */

.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-drop:before {
  content: "\F041";
  position: absolute;
  right: 1em;
  opacity: 1;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-drop:hover:before,
.hvr-icon-drop:focus:before,
.hvr-icon-drop:active:before {
  opacity: 0;
  transition-duration: 0.3s;
  -webkit-animation-name: hvr-icon-drop;
  animation-name: hvr-icon-drop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */

.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-fade:before {
  content: "\F00C";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.5s;
  transition-property: color;
}

.hvr-icon-fade:hover:before,
.hvr-icon-fade:focus:before,
.hvr-icon-fade:active:before {
  color: #0F9E5E;
}

/* Icon Float Away */

@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-1em);
  }
}

@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-1em);
  }
}

/* Icon Float Away */

.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-float-away:before,
.hvr-icon-float-away:after {
  content: "\F055";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
}

.hvr-icon-float-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hvr-icon-float-away:hover:after,
.hvr-icon-float-away:focus:after,
.hvr-icon-float-away:active:after {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Sink Away */

@-webkit-keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(1em);
  }
}

@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(1em);
  }
}

/* Icon Sink Away */

.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-sink-away:before,
.hvr-icon-sink-away:after {
  content: "\F056";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-sink-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hvr-icon-sink-away:hover:after,
.hvr-icon-sink-away:focus:after,
.hvr-icon-sink-away:active:after {
  -webkit-animation-name: hvr-icon-sink-away;
  animation-name: hvr-icon-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Grow */

.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-grow:before {
  content: "\F118";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-grow:hover:before,
.hvr-icon-grow:focus:before,
.hvr-icon-grow:active:before {
  transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */

.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-shrink:before {
  content: "\F119";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-shrink:hover:before,
.hvr-icon-shrink:focus:before,
.hvr-icon-shrink:active:before {
  transform: scale(0.8);
}

/* Icon Pulse */

@-webkit-keyframes hvr-icon-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(0.8);
  }
}

@keyframes hvr-icon-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(0.8);
  }
}

.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-pulse:before {
  content: "\F015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-timing-function: ease-out;
}

.hvr-icon-pulse:hover:before,
.hvr-icon-pulse:focus:before,
.hvr-icon-pulse:active:before {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Pulse Grow */

@-webkit-keyframes hvr-icon-pulse-grow {
  to {
    transform: scale(1.3);
  }
}

@keyframes hvr-icon-pulse-grow {
  to {
    transform: scale(1.3);
  }
}

.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-pulse-grow:before {
  content: "\F015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-timing-function: ease-out;
}

.hvr-icon-pulse-grow:hover:before,
.hvr-icon-pulse-grow:focus:before,
.hvr-icon-pulse-grow:active:before {
  -webkit-animation-name: hvr-icon-pulse-grow;
  animation-name: hvr-icon-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Pulse Shrink */

@-webkit-keyframes hvr-icon-pulse-shrink {
  to {
    transform: scale(0.8);
  }
}

@keyframes hvr-icon-pulse-shrink {
  to {
    transform: scale(0.8);
  }
}

.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}

.hvr-icon-pulse-shrink:before {
  content: "\F015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-timing-function: ease-out;
}

.hvr-icon-pulse-shrink:hover:before,
.hvr-icon-pulse-shrink:focus:before,
.hvr-icon-pulse-shrink:active:before {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Push */

@-webkit-keyframes hvr-icon-push {
  50% {
    transform: scale(0.5);
  }
}

@keyframes hvr-icon-push {
  50% {
    transform: scale(0.5);
  }
}

.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-push:before {
  content: "\F006";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-push:hover:before,
.hvr-icon-push:focus:before,
.hvr-icon-push:active:before {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Pop */

@-webkit-keyframes hvr-icon-pop {
  50% {
    transform: scale(1.5);
  }
}

@keyframes hvr-icon-pop {
  50% {
    transform: scale(1.5);
  }
}

.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-pop:before {
  content: "\F005";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-pop:hover:before,
.hvr-icon-pop:focus:before,
.hvr-icon-pop:active:before {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Bounce */

.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-bounce:before {
  content: "\F087";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-bounce:hover:before,
.hvr-icon-bounce:focus:before,
.hvr-icon-bounce:active:before {
  transform: scale(1.5);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */

.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-rotate:before {
  content: "\F0C6";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-rotate:hover:before,
.hvr-icon-rotate:focus:before,
.hvr-icon-rotate:active:before {
  transform: rotate(20deg);
}

/* Icon Grow Rotate */

.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-grow-rotate:before {
  content: "\F095";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-grow-rotate:hover:before,
.hvr-icon-grow-rotate:focus:before,
.hvr-icon-grow-rotate:active:before {
  transform: scale(1.5) rotate(12deg);
}

/* Icon Float */

.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-float:before {
  content: "\F01B";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-float:hover:before,
.hvr-icon-float:focus:before,
.hvr-icon-float:active:before {
  transform: translateY(-4px);
}

/* Icon Sink */

.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-sink:before {
  content: "\F01A";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-sink:hover:before,
.hvr-icon-sink:focus:before,
.hvr-icon-sink:active:before {
  transform: translateY(4px);
}

/* Icon Bob */

@-webkit-keyframes hvr-icon-bob {
  0% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-bob {
  0% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(-6px);
  }
}

@-webkit-keyframes hvr-icon-bob-float {
  100% {
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-bob-float {
  100% {
    transform: translateY(-6px);
  }
}

.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-bob:before {
  content: "\F077";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-bob:hover:before,
.hvr-icon-bob:focus:before,
.hvr-icon-bob:active:before {
  -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Hang */

@-webkit-keyframes hvr-icon-hang {
  0% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-hang {
  0% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(6px);
  }
}

@-webkit-keyframes hvr-icon-hang-sink {
  100% {
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-hang-sink {
  100% {
    transform: translateY(6px);
  }
}

.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-hang:before {
  content: "\F078";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-hang:hover:before,
.hvr-icon-hang:focus:before,
.hvr-icon-hang:active:before {
  -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */

@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    transform: translateX(6px);
  }

  33.3% {
    transform: translateX(-5px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    transform: translateX(6px);
  }

  33.3% {
    transform: translateX(-5px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-wobble-horizontal:before {
  content: "\F061";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-wobble-horizontal:hover:before,
.hvr-icon-wobble-horizontal:focus:before,
.hvr-icon-wobble-horizontal:active:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Wobble Vertical */

@-webkit-keyframes hvr-icon-wobble-vertical {
  16.65% {
    transform: translateY(6px);
  }

  33.3% {
    transform: translateY(-5px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes hvr-icon-wobble-vertical {
  16.65% {
    transform: translateY(6px);
  }

  33.3% {
    transform: translateY(-5px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-wobble-vertical:before {
  content: "\F062";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-wobble-vertical:hover:before,
.hvr-icon-wobble-vertical:focus:before,
.hvr-icon-wobble-vertical:active:before {
  -webkit-animation-name: hvr-icon-wobble-vertical;
  animation-name: hvr-icon-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Buzz */

@-webkit-keyframes hvr-icon-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes hvr-icon-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-buzz:before {
  content: "\F017";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-buzz:hover:before,
.hvr-icon-buzz:focus:before,
.hvr-icon-buzz:active:before {
  -webkit-animation-name: hvr-icon-buzz;
  animation-name: hvr-icon-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Buzz Out */

@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-icon-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  transition-duration: 0.3s;
}

.hvr-icon-buzz-out:before {
  content: "\F023";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  transform: translateZ(0);
}

.hvr-icon-buzz-out:hover:before,
.hvr-icon-buzz-out:focus:before,
.hvr-icon-buzz-out:active:before {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* CURLS */

/* Curl Top Left */

.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr="#ffffff", endColorstr="#000000");
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-top-left:hover:before,
.hvr-curl-top-left:focus:before,
.hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}

.top-services .hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: #0f86ff;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #0f86ff 50%, #0f86ff 56%, #0f86ff 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr="#ffffff", endColorstr="#0f86ff");
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.top-services .hvr-curl-top-left:hover:before,
.top-services .hvr-curl-top-left:focus:before,
.top-services .hvr-curl-top-left:active:before {
  width: 40px;
  height: 40px;
}

/* Curl Top Right */

.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-top-right:hover:before,
.hvr-curl-top-right:focus:before,
.hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}

.top-services .hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: #6ec7f9;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #6ec7f9 50%, #6ec7f9 56%, #6ec7f9 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.top-services .hvr-curl-top-right:hover:before,
.top-services .hvr-curl-top-right:focus:before,
.top-services .hvr-curl-top-right:active:before {
  width: 40px;
  height: 40px;
}

/* Curl Bottom Right */

.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-bottom-right:hover:before,
.hvr-curl-bottom-right:focus:before,
.hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Left */

.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(45deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-bottom-left:hover:before,
.hvr-curl-bottom-left:focus:before,
.hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

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

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

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

/* Overlays */

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */

.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */

/* Support: Firefox 5 - 40 */

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */

.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.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: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.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: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.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 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.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: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.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 {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.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: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/

.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.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: 0.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("/images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("/images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("/images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("/images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("/images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("/images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("/images/ui-icons_777777_256x240.png");
}

/* positioning */

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

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

/* Corner radius */

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */

.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0px 0px 5px #666666;
}

.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;
}

body.fancybox-active {
  overflow: hidden;
}

body.fancybox-iosfix {
  position: fixed;
  left: 0;
  right: 0;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99992;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  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(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption-wrap,
.fancybox-infobar,
.fancybox-toolbar {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.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 0.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: transform, opacity;
}

.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;
  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: transform, opacity;
}

.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, 0.6);
  transition: color 0.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: 0.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, 0.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: "\D7";
  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 0.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, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.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 rgba(99, 99, 99, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: a 0.8s infinite linear;
  animation: a 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999;
}

@-webkit-keyframes a {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes a {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  transform: translateZ(0);
  opacity: 1;
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scaleX(1);
  opacity: 1;
}

.fancybox-fx-rotate.fancybox-slide--previous {
  transform: rotate(-1turn);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  transform: rotate(1turn);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  transform: rotate(0deg);
  opacity: 1;
}

.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  transform: scaleX(1) translateZ(0);
  opacity: 1;
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  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 0.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, 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, 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 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.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);
  }
}

.ares.tparrows {
  cursor: pointer;
  background: #fff;
  min-width: 60px;
  min-height: 60px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%;
}

.ares.tparrows:before {
  font-family: "revicons";
  font-size: 25px;
  color: #aaa;
  display: block;
  line-height: 60px;
  text-align: center;
  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;
  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;
  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: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;
}

/* MEDIA QUERIES */

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

- 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: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: #7d7d7d;
}
/* THUMBS *
/* TABS */
/* 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;
  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: white;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: linear-gradient(to bottom, white 0%, #777777 100%);
}

.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;
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
}

.erinyen.tparrows:hover .tp-title-wrap {
  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;
  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:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #555555;
  /* old browsers */
  /* ff3.6+ */
  /* chrome,safari4+ */
  /* chrome10+,safari5.1+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(to bottom, #555555 0%, #222222 100%);
  /* w3c */
  /* 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 */
  /* ff3.6+ */
  /* chrome,safari4+ */
  /* chrome10+,safari5.1+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(to bottom, #e5e5e5 0%, #999999 100%);
  /* w3c */
  /* ie6-9 */
  border: 1px solid #555;
  width: 12px;
  height: 12px;
}

/* 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;
  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:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #777777;
  /* Old browsers */
  background: linear-gradient(to bottom, #777777 0%, #666666 100%);
  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 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #e1e1e1 100%);
  /* W3C */
  /* IE6-9 */
}

/* 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;
  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: white;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: linear-gradient(to bottom, white 0%, #777777 100%);
}

.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);
}

/* MEDIA QUERIES */

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

- 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: white;
}

.hades .tp-arr-allwrapper {
  position: absolute;
  left: 100%;
  top: 0px;
  background: #888;
  width: 100px;
  height: 100px;
  transition: all 0.3s;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  transform: rotatey(-90deg);
  transform-origin: 0% 50%;
}

.hades.tp-rightarrow .tp-arr-allwrapper {
  left: auto;
  right: 100%;
  transform-origin: 100% 50%;
  transform: rotatey(90deg);
}

.hades:hover .tp-arr-allwrapper {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotatey(0deg);
}

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

/* 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);
  perspective: 400;
  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;
  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;
}

/* 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;
  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: white;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: linear-gradient(to bottom, white 0%, #777777 100%);
}

.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:before {
  font-family: "revicons";
  font-size: 30px;
  color: #aaa;
  display: block;
  line-height: 70px;
  text-align: center;
  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;
  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: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;
  perspective: 400;
  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;
  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;
}

/* 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: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;
}

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

- 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;
  transition: transform 0.3s 0.3s;
  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;
  transition: all 0.3s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  box-sizing: border-box;
}

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

/* 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;
  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;
  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: #363636;
  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 #363636;
  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: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 */
  /* ff3.6+ */
  /* chrome,safari4+ */
  /* chrome10+,safari5.1+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(to bottom, #999999 0%, #e1e1e1 100%);
  /* w3c */
  /* 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;
}

/* THUMBS */

.hesperiden .tp-thumb {
  opacity: 1;
  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;
}

/* MEDIA QUERIES */

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

- 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;
  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: white;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: linear-gradient(to bottom, white 0%, #777777 100%);
}

.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.1);
  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: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;
}

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

- 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);
  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);
  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.1);
}

.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);
  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;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease;
}

.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after {
  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;
  transform-origin: 50% 50%;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
  z-index: 2;
  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;
  transform-origin: 50% 50%;
  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;
  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;
  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: white;
}

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

- 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;
  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;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  z-index: auto;
}

body {
  font-size: 14px;
  color: #777777;
  line-height: 1.7em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
  padding-right: 0 !important;
}

.modal-open {
  padding-left: 0px !important;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: 500;
  margin: 0px;
  color: black;
  background: none;
  line-height: 1.6em;
  font-family: "Poppins", sans-serif;
}

input,
button,
select,
textarea {
  font-family: "Poppins", sans-serif;
}

textarea {
  overflow: hidden;
}

.gray-bg {
  background-color: #f6f6f6;
}

p,
text {
  position: relative;
  line-height: 1.8em;
  font-family: "Poppins", sans-serif;
}

.cog {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8em;
}

.strike-through {
  text-decoration: line-through;
}

.index {
  z-index: auto;
}

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

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

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

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

.centered {
  text-align: center !important;
}

/*Btn Style One*/

.btn-style-one {
  position: relative;
  padding: 10px 28px;
  line-height: 24px;
  text-transform: uppercase;
  background: #035c73;
  color: #ffffff;
  border: 2px solid #035c73;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.btn-style-one:hover {
  background: none;
  color: #035c73;
  border-color: #035c73;
}

/*Btn Style Two*/

.btn-style-two {
  position: relative;
  padding: 10px 28px;
  line-height: 24px;
  text-transform: uppercase;
  background: #3d4a66;
  color: #ffffff;
  border: 2px solid #3d4a66;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 999;
  font-family: "Poppins", sans-serif;
}

.btn-style-two:hover {
  background: none;
  color: #3d4a66;
  border-color: #3d4a66;
}

/*Btn Style Three*/

.btn-style-three {
  position: relative;
  padding: 10px 28px;
  line-height: 24px;
  text-transform: uppercase;
  background: #ffffff;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid #ffffff;
  font-family: "Poppins", sans-serif;
}

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

/*Social Icon One*/

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

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

.social-icon-one li a {
  position: relative;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #a6a6a6;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  background-color: #eeeeee;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.social-icon-one li a:hover {
  color: #ffffff;
  background-color: #035c73;
}

/*Social Icon One*/

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

.social-icon-two li {
  position: relative;
  margin: 0px 10px;
  display: inline-block;
}

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

.social-icon-two li a:hover {
  color: #f24a29;
}

/*Social Icon Three*/

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

.social-icon-three .share {
  position: relative;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.social-icon-three a {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  color: #a6a6a6;
  font-size: 14px;
  text-align: center;
  margin-left: 6px;
  line-height: 30px;
  background-color: #eeeeee;
  transition: all 300ms ease;
}

.social-icon-three a:hover {
  color: #ffffff;
  background-color: #035c73;
}

.theme_color {
  color: #035c73;
}

.theme_color {
  color: #035c73;
}

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

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  width: 229px;
  margin-right: 36px;
}

/***

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

***/

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 60px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: #035c73;
  display: none;
  transition: all 300ms ease;
  border: 1px solid #fff;
}

.scroll-to-top:hover {
  color: #035c73;
  background: #fff;
  border-radius: 170px;
}

/*List Style One*/

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

.list-style-one li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8em;
  font-weight: 400;
  color: #333333;
}

.list-style-one li .icon {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  color: #47546c;
  font-size: 18px;
}

/***

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

***/

.main-header {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
}

.main-header .auto-container {
  position: relative;
}

.main-header .main-box {
  position: relative;
  padding: 0px 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: all 300ms ease;
  margin-bottom: -25px;
  margin-top: -7px;
}

.main-header.fixed-header .main-box {
  position: fixed;
  border-bottom: 1px solid #181818;
  padding: 0px 0px;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  background-color: #212121;
}

.main-header .main-box .outer-container {
  position: relative;
}

.main-header .main-box .logo-box {
  position: relative;
  float: left;
  left: 0px;
  z-index: 10;
  transition: all 300ms ease;
}

.fixed-header .main-box .logo-box {
  padding: 10px 0px;
}

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

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

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

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

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

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

.main-menu .navigation > li {
  position: relative;
  margin-right: 20px;
  display: inline-block;
  padding: 47px 0px 20px;
  transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.fixed-header .main-menu .navigation > li {
  padding: 35px 0px;
}

.fixed-header .info-options {
  padding: 38px 0px !important;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  padding: 0px 0px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  text-transform: capitalize;
  letter-spacing: 0px;
  opacity: 1;
  font-weight: 500;
  font-size: 15px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-family: "Poppins", sans-serif;
}

.main-menu .navigation > li.dropdown > a:before {
  font-family: "FontAwesome";
  content: "\F107";
  position: absolute;
  right: 0px;
  margin: initial;
  font-size: 14px;
  margin-top: 2px;
}

.main-menu .navigation > li.dropdown a {
  padding-right: 15px;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: #ffffff;
  opacity: 1;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: -62px;
  /* changed from 0px	 */
  top: 80%;
  width: 181px;
  /* changed from 	 */
  padding: 0px;
  z-index: 100;
  display: none;
  background: #ffffff;
  border-top: 2px solid #035c73;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -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);
  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.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.main-menu .navigation > li > ul > li:hover > a {
  color: #ffffff;
  background: #035c73;
}

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

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

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 20px;
  width: 217px;
  /* change from 240px  */
  padding: 0px;
  z-index: 100;
  display: none;
  background: #ffffff;
  border-top: 2px solid #035c73;
  -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);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

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

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: #ffffff;
  background: #035c73;
}

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

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

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

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

.main-header .info-options {
  position: relative;
  float: right;
  margin-left: 25px;
  padding: 50px 0px;
  transition: all 300ms ease;
}

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

.header-style-two .main-menu .navigation > li {
  padding: 47px 0px 47px;
}

.header-style-two .search-box-outer,
.header-style-two .main-menu .navigation > li > a {
  color: #035c73;
}

.header-style-two .main-menu .navigation > li:hover > a,
.header-style-two .main-menu .navigation > li.current > a {
  color: #035c73;
}

.header-style-two.fixed-header .main-box {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.header-style-two.fixed-header .main-menu .navigation > li {
  padding: 35px 0px 35px;
}

.search-box-outer {
  position: relative;
  float: left;
  color: #ffffff;
}

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

.main-header .search-box-outer .dropdown-menu {
  top: 71px;
  border-top: 3px solid #035c73;
  padding: 0px;
  width: 280px;
  border-radius: 0px;
}

.main-header.fixed-header .search-box-outer .dropdown-menu {
  top: 61px;
}

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

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

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

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

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

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

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

/***

====================================================================
	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 h5 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
}

.main-slider .text {
  position: relative;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 2em;
}

.main-slider .title {
  position: relative;
  color: #ffffff;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2em;
  text-transform: capitalize;
}

.main-slider .tp-bannertimer {
  display: none !important;
}

/***

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

***/

.sec-title {
  position: relative;
  margin-bottom: 80px;
  /*70px  */
}

.sec-title h2 {
  position: relative;
  color: #035c73;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  padding-bottom: 0px;
}

.sec-title h4 {
  position: relative;
  color: #035c73;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  padding-bottom: 0px;
  /* top:22px; */
}

.sec-title h5 {
  position: relative;
  color: #035c73;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  padding-bottom: 0px;
}

.sec-title .text {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  color: #777777;
}

/*Centered*/

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

/*Light*/

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

/***

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

***/

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

.services-block {
  position: relative;
  margin-bottom: 40px;
}

.services-block .inner-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 70px 30px 70px;
  background-color: #4b7eea;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block .inner-box .icon-box {
  position: relative;
  width: 101px;
  height: 101px;
  margin: 0 auto;
  margin-bottom: 28px;
}

.services-block .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

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

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

.services-block:nth-child(2) .inner-box {
  background-color: #4b7eea;
}

.services-block:nth-child(3) .inner-box {
  background-color: #4b7eea;
}

.services-block .inner-box:hover {
  box-shadow: 0px 0px 14px 0px rgba(68, 68, 68, 0.4);
}

/***

====================================================================
	Audit Form Section
====================================================================

***/

.audit-form-section {
  position: relative;
  padding: 90px 0px 70px;
  background: #3d4a66;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.audit-form-section h2,
.audit-form-section h5 {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

/*Audit Form*/

.audit-form {
  position: relative;
}

.audit-form .row {
  margin: 0px -10px;
}

.audit-form .column {
  padding: 0px 10px;
}

.audit-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.audit-form .column .row .form-group {
  padding: 0px 10px;
}

.audit-form input[type=text],
.audit-form input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 10px 30px;
  height: 50px;
  color: #222222;
  font-size: 14px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.tel1 {
  position: relative;
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 10px 30px;
  height: 50px;
  color: #222222;
  font-size: 14px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.audit-form .form-group button {
  width: 100%;
  line-height: 26px;
}

/***

====================================================================
	Traffic Section
====================================================================

***/

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

.traffic-section .image-column {
  position: relative;
}

.traffic-section .image-column .image {
  position: relative;
  margin-bottom: 40px;
  padding-right: 100px;
  /* -webkit-animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* -webkit-animation: slide-rotate-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-rotate-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* -webkit-animation: slide-fwd-center 10000000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-fwd-center 10000000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* -webkit-animation: flip-scale-down-diag-2 5000s linear both;
  animation: flip-scale-down-diag-2 5000s linear both; */
  /* -webkit-animation: shadow-drop-2-center 0.4s cubic-bezier(0.550, 0.055, 0.675, 0.190) infinite reverse forwards;
  animation: shadow-drop-2-center 0.4s cubic-bezier(0.550, 0.055, 0.675, 0.190) infinite reverse forwards; */
}

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

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

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

.overlay1 {
  background: url("/images/shape-bg.png");
  position: absolute;
  left: -216px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  height: 295px;
}

#background-client {
  background-image: linear-gradient(130deg, #1b6473 25%, #3f9db5 100%) !important;
}

.bg-heading1 {
  color: #ffffff;
  font-size: 50px;
}

.bg-pragrah {
  color: white;
  font-size: 16px;
  padding: 20px 0px;
  font-weight: 400;
}

.bg-img {
  margin: 0 auto;
  display: block;
}

.traffic-section .content-column .inner-column h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.traffic-section .content-column .inner-column h2,
.traffic-section .content-column .inner-column h5,
.traffic-section .content-column .inner-column h4 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.traffic-section .content-column .inner-column .text {
  position: relative;
  color: #777777;
  font-size: 18px;
  line-height: 1.8em;
  margin-bottom: 50px;
}

/***

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

***/

/***

====================================================================
    float: right;
    height: 243px;
    width: 430px;
    padding-left: 112px;
    margin-left: 26px;====================================================================

***/

.services-section-two {
  position: relative;
  overflow: hidden;
  padding: 30px 0px 30px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #3d4a66;
}

.services-section-two .row {
  margin: 0px -100px;
}

.services-section-two .services-block-two {
  padding: 0px 100px;
}

.services-block-two {
  position: relative;
  margin-bottom: 60px;
}

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

.services-block-two .inner-box .line-arrow {
  position: absolute;
  content: "";
  left: 88% !important;
  top: 19% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .line-arrows {
  position: absolute;
  content: "";
  left: 88%;
  top: 34% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .line-arrow .tp {
  position: absolute;
  content: "";
  left: 88%;
  top: 20% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .costum-line {
  position: absolute;
  content: "";
  left: 554%;
  top: 34%;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .line-arrow:before {
  position: absolute;
  content: "\F0D9";
  left: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .line-arrows:before {
  position: absolute;
  content: "\F0D9";
  left: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .line-arrow:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .line-arrows:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .costum-line:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .icon-box {
  position: relative;
  width: 127px;
  height: 125px;
  margin: 0 auto;
  margin-bottom: 32px;
}

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

.services-block-two .inner-box .icon-box:before {
  position: absolute;
  content: "";
  left: -6px;
  top: -6px;
  right: -5px;
  bottom: -6px;
  border-radius: 50%;
  /* border:1px solid #ffffff; */
}

.services-block-two .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.services-block-two .inner-box h3 a {
  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;
}

.services-block-two .inner-box h3 a:hover {
  color: #035c73;
}

.services-block-two .inner-box h5 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 15px;
  color: #fff;
}

.services-block-two .inner-box h5 a {
  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;
}

.services-block-two .inner-box h5 a:hover {
  color: #035c73;
}

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

.services-block-two .inner-box .learn-more {
  position: relative;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-two .inner-box .learn-more .fa {
  margin-left: 5px;
}

/***

====================================================================
	Gallery Section
====================================================================

***/

.fullwidth-gallery-section {
  position: relative;
  background-color: #f0f0f0;
}

.fullwidth-gallery-section .gallery-outer {
  position: relative;
}

.fullwidth-gallery-section .gallery-outer .gallery-column {
  position: relative;
  width: 50%;
  float: left;
}

.fullwidth-gallery-section .gallery-outer .gallery-column .default-portfolio-item {
  position: relative;
  padding: 0px;
  z-index: 1;
}

.default-portfolio-item.mix,
.portfolio-item-two.mix {
  display: none;
}

.default-portfolio-item .inner-box {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.default-portfolio-item .image-box {
  position: relative;
  display: block;
}

.default-portfolio-item .image-box img {
  position: relative;
  display: block;
  width: 100%;
}

.default-portfolio-item .overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: #ffffff;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  transition: all 700ms ease;
  transform: translate(-100%, 0%);
}

.default-portfolio-item .inner-box:hover .overlay-box {
  opacity: 1;
  transform: translate(0%);
}

.default-portfolio-item .overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle;
  padding: 10px 0px;
}

.default-portfolio-item .overlay-inner .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.default-portfolio-item .overlay-inner .image-link {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  width: 42px;
  height: 42px;
  margin: 0px 5px;
  line-height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.default-portfolio-item .overlay-inner .image-link .icon {
  position: relative;
}

.default-portfolio-item .overlay-inner .image-link:hover {
  color: #666666;
  background-color: white;
}

.fullwidth-gallery-section .gallery-outer .gallery-column .inner-column {
  position: relative;
  margin-right: -120px;
}

.fullwidth-gallery-section .gallery-outer .content-column {
  position: relative;
  width: 50%;
  float: left;
}

.fullwidth-gallery-section .gallery-outer .content-column .content-inner {
  position: relative;
  margin-left: 170px;
  padding: 75px 40px 75px;
}

.fullwidth-gallery-section .gallery-outer .content-column .content-inner h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 22px;
}

.fullwidth-gallery-section .gallery-outer .content-column .content-inner .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  max-width: 380px;
  margin-bottom: 35px;
}

/***

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

***/

.testimonial-section {
  position: relative;
  padding: 140px 0px;
  background-position: right top;
}

.testimonial-section .owl-stage-outer {
  padding: 10px 10px;
}

.testimonial-section .outer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-section.style-two {
  background-color: #f8f8f8;
  background-position: right bottom;
  background-repeat: no-repeat;
}

/*testimonial style one*/

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

.testimonial-style-one .inner-box {
  position: relative;
  display: block;
  padding: 35px 45px 35px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px #f4f4f4;
}

.testimonial-style-one .inner-box .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 2em;
  font-weight: 400;
}

.testimonial-style-one .inner-box .user-info {
  position: relative;
}

.testimonial-style-one .inner-box .user-info .inner {
  position: relative;
  padding-left: 65px;
  min-height: 60px;
  float: right;
  display: inline-block;
}

.testimonial-style-one .inner-box .user-info .inner .author-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonial-style-one .inner-box .user-info .inner .author-image img {
  border-radius: 50%;
}

.testimonial-style-one .inner-box .user-info .inner h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  padding-top: 5px;
  display: inline-block;
  text-transform: capitalize;
}

.testimonial-style-one .inner-box .user-info .inner .designation {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

.testimonial-style-one .inner-box .user-info .quote {
  position: absolute;
  left: 0px;
  top: 10px;
  color: #efefef;
  font-size: 50px;
  line-height: 1em;
}

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

.testimonial-section .owl-dots {
  position: relative;
  text-align: center;
  padding: 40px 0px 0px;
}

.testimonial-section .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0px 4px;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.testimonial-section .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0px;
  border-radius: 50%;
  background: none;
  border: 1px solid #47546c;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.testimonial-section .owl-dots .owl-dot.active span,
.testimonial-section .owl-dots .owl-dot:hover span {
  background: #47546c;
  border-radius: 50%;
  border-color: #47546c;
}

.psize {
  width: 260px;
  text-align: center;
  font-size: large;
  font-family: "Poppins", sans-serif;
}

/***

====================================================================
	Fact Counter style
====================================================================

***/

.fact-counter-section {
  position: relative;
  background-position: left bottom;
  background-size: cover;
  padding: 80px 0px 60px 0px;
  background-color: #3d4a66;
  background-repeat: repeat-x;
}

.fact-counter {
  position: relative;
}

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

.fact-counter .column .inner {
  position: relative;
  text-align: center;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fact-counter .count-outer {
  position: relative;
  font-size: 36px;
  line-height: 1em;
  font-weight: 500;
  margin: 0px 0px;
}

.fact-counter .count-outer .icon {
  position: relative;
  color: #f24a29;
  display: block;
  font-size: 70px;
  line-height: 1em;
  margin-bottom: 30px;
}

.fact-counter .count-outer .count-text {
  position: relative;
  font-weight: 700;
  color: #ffffff;
  font-size: 60px;
}

.fact-counter .column .counter-title {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 35px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
}

/***

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

***/

.news-section {
  position: relative;
  padding: 54px 0px 100px;
  /* 140 to 54 */
}

.news-section .btn-box {
  position: relative;
  margin-top: 40px;
}

.news-section .btn-box .theme-btn {
  padding-left: 40px;
  padding-right: 40px;
}

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

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

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

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

.news-block .inner-box .image .post-date {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #ffffff;
  font-size: 12px;
}

.news-block .inner-box .lower-box {
  position: relative;
  padding: 10px 22px 20px;
  box-shadow: -21px 17px 16px 0px #cccccc;
}

.news-block .inner-box .lower-box h3,
.news-block .inner-box .lower-box h5 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 31px;
}

.news-block .inner-box .lower-box h3 a,
.news-block .inner-box .lower-box h5 a {
  position: relative;
  color: #333333;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-box h3 a:hover {
  color: #47546c;
}

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

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

.news-block .inner-box .lower-box ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-box ul li a:hover {
  color: #47546c;
}

.news-block .inner-box .lower-box ul li a .icon {
  position: relative;
  margin-right: 10px;
}

/***

====================================================================
	Sponsors Section
====================================================================

***/

.sponsors-section {
  position: relative;
}

.sponsors-section .sponsors-outer {
  position: relative;
  padding: 60px 0px 60px;
  border-top: 1px solid #e2e3e3;
}

.sponsors-section .owl-dots,
.sponsors-section .owl-nav {
  position: relative;
  display: none;
}

.sponsors-section .sponsors-outer .image-box {
  position: relative;
  text-align: center;
}

.sponsors-section .sponsors-outer .image-box img {
  max-width: 100%;
  width: auto;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  width: 170px !important;
  height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sponsors-section.style-two .sponsors-outer {
  border: 0px;
  padding-top: 40px;
}

/***

====================================================================
	Contact Info Section
====================================================================

***/

.contact-info-section {
  position: relative;
  padding: 90px 0px 60px;
  background-color: #3d4a66;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-info-section h2,
.contact-info-section h5 {
  position: relative;
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-section .info-blocks {
  position: relative;
  max-width: 576px;
  margin: 0 auto;
}

.contact-info-section .info-blocks .info-block {
  position: relative;
  margin-bottom: 30px;
}

.contact-info-section .info-blocks .info-block .inner {
  position: relative;
  text-align: center;
}

.contact-info-section .info-blocks .info-block .inner .icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  color: #035c73;
  border-radius: 5px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 25px;
  background-color: #ffffff;
}

.contact-info-section .info-blocks .info-block .inner .text {
  position: relative;
  color: #ffffff;
  font-size: 15px;
}

/***

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

***/

.main-footer {
  position: relative;
}

.main-footer .footer-upper {
  position: relative;
  padding: 80px 0px 40px;
}

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

.main-footer .footer-widget h2 {
  position: relative;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/*Logo Widget*/

.logo-widget {
  position: relative;
}

.logo-widget .logo {
  position: relative;
  margin-bottom: 15px;
}

.logo-widget .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

/*Links Widget*/

.main-footer .links-widget .list {
  position: relative;
}

.main-footer .links-widget .list li {
  position: relative;
  margin-bottom: 10px;
}

.main-footer .links-widget .list li a {
  position: relative;
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  padding-left: 15px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .links-widget .list li a:before {
  position: absolute;
  content: "\F0DA";
  left: 0px;
  top: -1px;
  color: #035c73;
  font-size: 14px;
  font-family: "FontAwesome";
}

.main-footer .links-widget .list li a:hover {
  color: #035c73;
}

/***

====================================================================
	News letter Form
====================================================================

***/

.newsletter-form {
  position: relative;
}

/*subscribe widget*/

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

.main-footer .newsletter-widget .form-group input[type=text],
.main-footer .newsletter-widget .form-group input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 20px;
  height: 48px;
  font-size: 15px;
  color: #444444;
  border-radius: 4px;
  background-color: #f0f0f0;
  transition: all 300ms ease;
}

.main-footer .newsletter-widget .form-group input[type=text]:focus,
.main-footer .newsletter-widget .form-group input[type=email]:focus {
  border-color: #c75ea3;
}

.main-footer .footer-bottom {
  position: relative;
  padding: 24px 0px;
  text-align: center;
  background-color: #fafafa;
}

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

/*Services*/

.services-block-three {
  position: relative;
  margin-bottom: 40px;
}

.services-block-three .inner-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 70px 30px 70px;
  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;
}

.services-block-three .inner-box .icon-box {
  position: relative;
  width: 101px;
  height: 101px;
  margin: 0 auto;
  margin-bottom: 28px;
}

.services-block-three .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

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

.services-block-three .inner-box h3 a:hover {
  color: #035c73;
}

.services-block-three .inner-box .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
}

/***

====================================================================
	Accordian Section
====================================================================

***/

.accordian-section {
  position: relative;
  padding: 140px 0px 140px;
}

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

.accordian-section .image-column .image {
  position: relative;
  margin: 40px 0px;
  padding-right: 50px;
}

.accordian-section .image-column .image img {
  position: absolute;
  right: 20px;
  top: -40px;
  max-width: none;
  display: block;
}

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

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

.accordian-section .content-column h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.accordian-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 25px;
}

/***

====================================================================
	Accordion Style
====================================================================

***/

.accordion-box {
  position: relative;
}

.accordion-box .block {
  position: relative;
  padding: 12px 0px;
  margin-bottom: 10px;
  background-color: #ffffff;
  box-shadow: 0px 4px 14px 0px #ededed;
}

.accordion-box .block .acc-btn {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  padding: 0px 50px 0px 64px;
  transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.accordion-box .block .acc-btn .outer-icon {
  position: absolute;
  left: 30px;
  top: 0px;
  color: #f7502e;
}

.accordion-box .block .icon-outer {
  position: absolute;
  right: 25px;
  top: 2px;
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.accordion-box .block .icon-outer .icon {
  position: absolute;
  right: 0px;
  width: 25px;
  height: 25px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9em;
  text-align: center;
  border-radius: 50%;
  background-color: #d3d3d3;
}

.accordion-box .block .icon-outer .icon-plus {
  opacity: 1;
}

.accordion-box .block .icon-outer .icon-minus {
  opacity: 0;
  font-weight: 300;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-minus {
  opacity: 1;
  color: #ffffff;
  background-color: #e74c31;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-plus {
  opacity: 0;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content .content-text {
  padding-bottom: 6px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .content {
  position: relative;
  font-size: 14px;
  padding: 10px 30px 0px 64px;
}

.accordion-box .block .content .accordian-text {
  margin-bottom: 20px;
  line-height: 1.8em;
  font-size: 14px;
  color: #777777;
  margin-top: 10px;
}

.accordion-box .block .content p:last-child {
  margin-bottom: 0px;
}

.dt-overflow1 {
  max-height: 321px;
  overflow: auto;
}

.p-l-50 {
  padding-left: 50px;
}

.total-detail {
  background: white;
  text-align: center;
  padding: 10px 10px 10px 10px;
  border-bottom: 3px solid;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
}

.total-number {
  color: firebrick;
  font-size: 50px;
}

.by-country {
  background: #125D74;
  padding: 30px;
  color: white;
  margin-top: -2px;
  padding-top: 5px;
  padding-bottom: 5px;
  /* height: 100vh;
  overflow: auto; */
}

.number-death {
  color: bisque;
  padding-right: 14px;
  width: 105px;
  display: inline-block;
}

.border-bottom1 {
  /* border-bottom: 1px solid; */
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
}

.p-design1 {
  font-size: 17px;
  font-weight: 300;
}

/***

====================================================================
	Project Section
====================================================================

***/

.project-section {
  position: relative;
  padding: 135px 0px 0px;
}

.project-section .filters {
  position: relative;
}

.project-section .filters .filter-tabs {
  position: relative;
  padding: 15px 40px;
  border-radius: 5px;
  margin-top: 4px;
  display: inline-block;
  background-color: #ffffff;
}

.project-section .filters .filter-tabs .filter {
  position: relative;
  color: #e4e8ec;
  font-size: 13px;
  margin: 0px 15px;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.project-section .filters .filter-tabs .filter.active,
.project-section .filters .filter-tabs .filter:hover {
  color: #f24a29;
}

.project-section .default-portfolio-item {
  padding: 0px;
}

.project-section.style-two {
  padding-top: 115px;
}

.project-section.style-two .filters {
  padding-bottom: 145px;
}

.services-block-four {
  position: relative;
  margin-bottom: 55px;
}

.services-block-four .inner-box {
  position: relative;
  display: block;
  padding: 78px 30px;
  border: 1px solid #ececec;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-four .inner-box .content {
  position: relative;
  padding-left: 80px;
}

.services-block-four .inner-box .content .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 65px;
  height: 65px;
}

.services-block-four .inner-box .content h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

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

.services-block-four .inner-box .content h3 a:hover {
  color: #f14929;
}

.services-block-four .inner-box .content .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 14px;
}

.services-block-four .inner-box .content .learn-more {
  position: relative;
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-four .inner-box .content .learn-more .fa {
  margin-left: 5px;
}

.services-block-four .inner-box .content .learn-more:hover {
  color: #f14929;
}

.services-block-four .inner-box:hover {
  border: 1px solid transparent;
  box-shadow: 0px 4px 19px 0px #f1f1f1;
}

/***

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

***/

.testimonial-section-two {
  position: relative;
  padding: 145px 0px 165px;
  background-color: #ff5d3d;
  background-position: right top;
  background-repeat: no-repeat;
}

.testimonial-section-two .sec-title .quote-icon {
  position: absolute;
  left: 50%;
  top: -18px;
  margin-left: -40px;
  text-align: center;
  font-size: 90px;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-section-two .inner-container {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
}

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

.testimonial-block-two .inner-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 25px 70px 40px;
  background-color: #ffffff;
  border-radius: 5px;
}

.testimonial-block-two .inner-box .author-image {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-bottom: 18px;
}

.testimonial-block-two .inner-box .author-name {
  position: relative;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial-block-two .inner-box .author-name span {
  font-weight: 600;
  color: #333333;
  font-size: 18px;
}

.testimonial-block-two .inner-box .text {
  position: relative;
  color: #8d8d8d;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7em;
}

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

.testimonial-section-two .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 100%;
  margin-top: -44px;
}

.testimonial-section-two .owl-nav .owl-prev,
.testimonial-section-two .owl-nav .owl-next {
  position: absolute;
  width: 27px;
  height: 86px;
  color: #ffffff;
  line-height: 86px;
  text-align: center;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-section-two .owl-nav .owl-prev {
  left: -60px;
}

.testimonial-section-two .owl-nav .owl-next {
  right: -60px;
}

/***

====================================================================
	Price Section
====================================================================

***/

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

.price-section .row {
  margin: 0px -25px;
}

.price-section .price-block {
  padding: 0px 25px;
}

.price-block {
  position: relative;
  margin-bottom: 40px;
}

.price-block .inner-box {
  position: relative;
  display: block;
  border-radius: 8px;
  padding: 10px;
  background-color: #ffffff;
}

.price-block .inner-box .content {
  position: relative;
  border-radius: 8px;
  padding-bottom: 40px;
  border: 1px solid #ededed;
}

.price-block .inner-box .content .title {
  position: relative;
  color: #333333;
  font-size: 40px;
  line-height: 1em;
  font-weight: 400;
  padding: 32px 0px;
}

.price-block .inner-box .content .package {
  position: relative;
  padding: 12px 0px 6px;
  text-align: center;
  color: #f24a29;
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 40px;
  background-color: #333333;
}

.price-block .inner-box .content .package sub {
  position: relative;
  color: #f24a29;
  font-size: 25px;
  font-weight: 400;
  margin-right: 2px;
}

.price-block .inner-box .content .package sup {
  position: relative;
  font-size: 20px;
  margin-left: 3px;
  text-decoration: underline;
}

.price-block .inner-box .content .package span {
  position: relative;
  top: -10px;
  font-size: 15px;
  color: #f6f6f6;
  margin-left: 15px;
  text-transform: capitalize;
}

.price-block .inner-box .content ul {
  position: relative;
  margin-bottom: 30px;
}

.price-block .inner-box .content ul li {
  position: relative;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}

.price-block .inner-box .content ul li span {
  color: #333333;
  font-weight: 500;
}

/*Nes Style*/

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

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

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

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

.news-block-two .inner-box .image .post-date {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #ffffff;
  font-size: 12px;
}

.news-block-two .inner-box .lower-content {
  position: relative;
  padding: 32px 30px 35px;
  box-shadow: 0px 6px 16px 0px rgba(204, 204, 204, 0.4);
}

.news-block-two .inner-box .lower-content .upper-box {
  position: relative;
}

.news-block-two .inner-box .lower-content .upper-box .read-more {
  position: absolute;
  right: 0px;
  top: 5px;
  color: #e3e3e3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  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;
}

.news-block-two .inner-box .lower-content .upper-box .read-more:hover {
  background-color: #035c73;
  border-color: #035c73;
  color: #ffffff;
}

.news-block-two .inner-box .lower-content h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4em;
  padding-right: 125px;
}

.news-block-two .inner-box .lower-content h3 a {
  position: relative;
  color: #333333;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content h3 a:hover {
  color: #47546c;
}

.news-block-two .inner-box .lower-content ul {
  position: relative;
}

.news-block-two .inner-box .lower-content ul li {
  position: relative;
}

.news-block-two .inner-box .lower-content ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content ul li a:hover {
  color: #47546c;
}

.news-block-two .inner-box .lower-content ul li a .icon {
  position: relative;
  margin-right: 10px;
  color: #47546c;
}

/***

====================================================================
	Page Title
====================================================================

***/

.page-title {
  position: relative;
  padding-top: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: #414e69;
  padding-bottom: 15px;
  z-index: 100;
  /* z-index: 100000; */
}

.page-title h1 {
  position: relative;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
  padding-bottom: 5px;
  margin-top: 60px;
  display: inline-block;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title .page-breadcrumb {
  position: relative;
}

.page-title .page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  -webkit-filter: contrast(1.75);
          filter: contrast(1.75);
}

.page-title .page-breadcrumb li:after {
  position: absolute;
  content: "/";
  right: -4px;
  top: 0px;
  color: #ffffff;
  font-family: "FontAwesome";
}

.page-title .page-breadcrumb li:last-child::after {
  display: none;
}

.page-title .page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}

.page-title .page-breadcrumb li a {
  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;
}

.page-title .page-breadcrumb li a:hover {
  color: #035c73;
}

/***

====================================================================
	Team Section
====================================================================

***/

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

.team-block {
  position: relative;
  margin-bottom: 40px;
}

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

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

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

.team-block .inner-box .lower-box {
  position: relative;
  padding: 20px 0px;
  text-align: center;
  box-shadow: 0px 6px 16px 0px rgba(204, 204, 204, 0.4);
}

.team-block .inner-box .lower-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

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

.team-block .inner-box .lower-box h3 a:hover {
  color: #f24a29;
}

.project-section .portfolio-item-two {
  position: relative;
  padding: 0px;
}

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

.portfolio-item-two .inner-box .image {
  position: relative;
}

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

.portfolio-item-two .inner-box .image .overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  padding: 30px 30px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: rgba(43, 53, 73, 0.85);
}

.portfolio-item-two .inner-box:hover .image .overlay-box {
  opacity: 1;
}

.portfolio-item-two .inner-box .image .overlay-box .content {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-item-two .inner-box .image .overlay-box .content .link-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1em;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.portfolio-item-two .inner-box .image .overlay-box .content .link-btn:hover {
  color: #f24a29;
}

.portfolio-item-two .inner-box .image .overlay-box .content .inner-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content .title {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content h2 {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  margin-top: 8px;
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content h2 a {
  position: relative;
  color: #ffffff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content h2 a:hover {
  color: #f24a29;
}

.case-single-section {
  position: relative;
  padding-top: 150px;
}

.case-single-section .case-inner {
  position: relative;
}

.case-single-section .case-inner .case-images {
  position: relative;
}

.case-single-section .case-inner .case-images .row {
  position: relative;
  margin: 0px -15px;
}

.case-single-section .case-inner .case-images .image-column {
  position: relative;
  padding: 0px 15px;
}

.case-single-section .case-inner .case-images .image {
  position: relative;
  margin-bottom: 20px;
}

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

.case-single-section .case-inner .cases-title {
  position: relative;
  padding-bottom: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}

.case-single-section .case-inner .cases-title h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: right;
  padding-right: 42px;
  border-right: 1px solid #cccccc;
}

.case-single-section .case-inner .cases-title .info-column {
  position: relative;
}

.case-single-section .case-inner .cases-title .info-column .inner {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.case-single-section .case-inner .cases-title .info-column .inner h3 {
  position: relative;
  color: #333333;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
}

.case-single-section .case-inner .cases-title .info-column .inner .text {
  color: #777777;
  font-size: 15px;
}

.case-single-section .case-inner .bold-text {
  position: relative;
  color: #333333;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.case-single-section .case-inner .text {
  position: relative;
}

.case-single-section .case-inner .text p {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 0px;
}

.case-single-section .case-inner .text .two-column {
  position: relative;
  margin-top: 32px;
  padding-bottom: 30px;
}

.case-single-section .case-inner .text h3 {
  position: relative;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.case-single-section .case-inner .text .two-column p {
  margin-bottom: 20px;
}

.case-single-section .case-inner .text .two-column .image-column {
  position: relative;
}

.case-single-section .case-inner .text .two-column .image-column .row {
  position: relative;
  margin: 0px -5px;
}

.case-single-section .case-inner .text .two-column .image-column .column {
  padding: 0px 5px;
}

.case-single-section .case-inner .text .two-column .image-column .image {
  position: relative;
  margin-bottom: 10px;
}

.case-single-section .case-inner .text .two-column .image-column .image img {
  width: 100%;
  display: block;
}

.related-projects {
  position: relative;
  padding-top: 30px;
  padding-bottom: 150px;
  border-top: 1px solid #cccccc;
}

.related-projects h3 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 40px;
}

.related-projects .portfolio-item-two {
  padding: 0px;
}

/***

====================================================================
	Sidebar Page
====================================================================

***/

.sidebar-page-container {
  position: relative;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 70px 0px 70px;
}

.sidebar-page-container .sidebar-side,
.sidebar-page-container .content-side {
  margin-bottom: 30px !important;
}

.sidebar-page-container .sidebar {
  position: relative;
}

/*Sidebar Title*/

.sidebar-title {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-title h2 {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
  line-height: 1.4em;
  text-transform: capitalize;
}

/*Sidebar Widget*/

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

/*Search Form Widget*/

.sidebar .search-box .form-group {
  position: relative;
  margin: 0px;
}

.sidebar .search-box .form-group input[type=text],
.sidebar .search-box .form-group input[type=search] {
  position: relative;
  line-height: 40px;
  background: #ffffff;
  color: #222222;
  display: block;
  font-size: 15px;
  width: 100%;
  height: 65px;
  border: 1px solid #f6f6f6;
  padding: 10px 50px 10px 30px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type=text]:focus,
.sidebar .search-box .form-group input[type=search]:focus {
  border-color: #035c73;
}

.sidebar .search-box .form-group button {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 64px;
  width: 63px;
  line-height: 46px;
  text-align: center;
  display: block;
  font-size: 24px;
  color: #ffffff;
  background: #333333;
  font-weight: normal;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input:focus + button,
.sidebar .search-box .form-group button:hover {
  background-color: #035c73;
}

.sidebar-widget .widget-content {
  position: relative;
  padding: 30px 40px 20px;
  background-color: #ffffff;
}

/*Blog Category*/

.blog-cat {
  position: relative;
}

.blog-cat li {
  position: relative;
  margin-bottom: 15px;
}

.blog-cat li a {
  position: relative;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 15px;
  display: block;
  border-bottom: 1px solid #dfdfdf;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.blog-cat li a span {
  float: right;
  color: #333333;
  font-weight: 600;
}

.blog-cat li a:hover {
  color: #035c73;
}

/*Post Widget*/

.sidebar .popular-posts .post {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #dfdfdf;
}

.sidebar .popular-posts .post:last-child {
  border: 0px;
  margin-bottom: 0px;
  padding-bottom: 5px;
}

.sidebar .popular-posts .post .text {
  position: relative;
  font-size: 14px;
  margin: 0px 0px 0px;
  font-weight: 600;
  color: #333333;
  text-transform: capitalize;
}

.sidebar .popular-posts .post .text a {
  color: #333333;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post a,
.sidebar .popular-posts .post a:hover {
  color: #035c73;
}

.sidebar .popular-posts .post-info {
  font-size: 12px;
  color: #777777;
  margin-top: 6px;
  font-weight: 300;
}

/*Popular Tags*/

.sidebar .popular-tags a {
  position: relative;
  display: inline-block;
  line-height: 24px;
  padding: 14px 20px 14px;
  margin: 0px 6px 10px 0px;
  color: #777777;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  background: #ffffff;
  text-transform: capitalize;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .popular-tags a:hover {
  background-color: #035c73;
  color: #ffffff;
}

.blog-classic,
.blog-grid,
.our-shop {
  padding-bottom: 20px;
  margin-bottom: 40px;
  padding-right: 20px;
  border-bottom: 1px solid #cccccc;
}

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

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

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

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

.news-block-three .inner-box .image .post-date {
  position: absolute;
  left: 22px;
  top: 22px;
  color: #ffffff;
  font-size: 12px;
}

.news-block-three .inner-box .lower-box {
  position: relative;
  margin-top: 20px;
  padding: 25px 30px 25px;
  background-color: #ffffff;
}

.news-block-three .inner-box .lower-box h3 {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

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

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

.news-block-three .inner-box .lower-box .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 18px;
}

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

.news-block-three .inner-box .lower-box ul li {
  position: relative;
}

.news-block-three .inner-box .lower-box ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-three .inner-box .lower-box ul li a:hover {
  color: #47546c;
}

.news-block-three .inner-box .lower-box ul li a .icon {
  position: relative;
  margin-right: 10px;
  font-size: 17px;
  color: #f0402f;
}

/***

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination {
  position: relative;
  margin-bottom: 30px;
}

.styled-pagination ul {
  position: relative;
  display: inline-block;
}

.styled-pagination li {
  position: relative;
  display: block;
  float: left;
  margin: 0px 8px 8px 0px;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  line-height: 18px;
  padding: 7px 5px;
  height: 32px;
  font-size: 13px;
  min-width: 32px;
  color: #333333;
  font-weight: 300;
  text-align: center;
  background: #e2e2e2;
  text-transform: capitalize;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}

.styled-pagination li a.next,
.styled-pagination li a.prev {
  color: #333333;
  padding: 6px 20px;
  border: 0px;
  font-weight: 300;
  line-height: 22px;
  text-transform: capitalize;
  background-color: #e2e2e2;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
  color: #ffffff;
  background-color: #035c73;
}

/*News Style*/

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

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

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

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

.news-block-four .inner-box .image .post-date {
  position: absolute;
  left: 18px;
  top: 12px;
  color: #ffffff;
  font-size: 12px;
}

.news-block-four .inner-box .lower-box {
  position: relative;
  margin-top: 10px;
  padding: 40px 20px 15px;
  background-color: #ffffff;
  box-shadow: 0px 6px 16px 0px #cccccc;
}

.news-block-four .inner-box .lower-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.news-block-four .inner-box .lower-box h3 a {
  position: relative;
  color: #333333;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-four .inner-box .lower-box h3 a:hover {
  color: #47546c;
}

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

.news-block-four .inner-box .lower-box ul li {
  position: relative;
}

.news-block-four .inner-box .lower-box ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-four .inner-box .lower-box ul li a:hover {
  color: #47546c;
}

.news-block-four .inner-box .lower-box ul li a .icon {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  color: #035c73;
  line-height: 1em;
}

.blog-single {
  position: relative;
}

.blog-single .inner-box {
  position: relative;
  display: block;
}

.blog-single .inner-box .image {
  position: relative;
  margin-bottom: 20px;
}

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

.blog-single .inner-box .image .post-date {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #ffffff;
  font-size: 12px;
}

.blog-single .inner-box .lower-content {
  position: relative;
}

.blog-single .inner-box .lower-content .content {
  position: relative;
  padding: 25px 30px 40px;
  background-color: #ffffff;
}

.blog-single .inner-box .lower-content h2 {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 10px;
}

.blog-single .inner-box .lower-content .text {
  position: relative;
  margin-bottom: 30px;
}

.blog-single .inner-box .lower-content .text p {
  /* position:relative;
  color:#777777;
  font-size:14px;
  line-height:1.8em;
  margin-bottom:11px;    */
  /* blogs haru ma ni change hunxa */
  position: relative;
  /* color: #777777; */
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 1rem;
  font-size: 18px;
  margin: 0 0 10px;
}

.blog-single .inner-box .lower-content .text .p1 {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 11px;
  /* blogs haru ma ni change hunxa */
}

.blog-single .inner-box .lower-content .post-meta {
  position: relative;
}

.blog-single .inner-box .lower-content .post-meta li {
  position: relative;
  font-weight: 300;
  color: #aaaaaa;
  font-size: 13px;
}

.blog-single .inner-box .lower-content .post-meta li .icon {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  color: #035c73;
  line-height: 1em;
}

.blog-single .inner-box .lower-content blockquote {
  position: relative;
  margin-top: 50px;
  border: none;
  padding: 0px;
  padding-left: 35px;
  margin-bottom: 10px;
  padding-right: 20px;
  background-color: #ffffff;
}

.blog-single .inner-box .lower-content blockquote .quote-icon {
  position: absolute;
  left: 35px;
  top: 0px;
  color: #ffffff;
  width: 85px;
  font-size: 40px;
  line-height: 1em;
  padding: 80px 0px;
  text-align: center;
  float: left;
  background-color: #333333;
}

.blog-single .inner-box .lower-content blockquote .text {
  color: #aaaaaa;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7em;
  margin-left: 120px;
  float: left;
  padding: 49px 0px;
  margin-bottom: 0px;
}

/*post share options*/

.blog-single .post-share-options {
  position: relative;
  padding: 20px 0px 6px;
}

.blog-single .post-share-options .tags a {
  position: relative;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
}

.blog-single .post-share-options .tags span {
  position: relative;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  margin-right: 5px;
}

.blog-single .post-share-options .tags {
  position: relative;
  color: #07102d;
  font-size: 16px;
  font-weight: 700;
}

/***

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

 ***/

.sidebar-page-container .comments-area {
  position: relative;
  margin-bottom: 50px;
  margin-top: 100px;
}

.sidebar-page-container .group-title {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-page-container .group-title h2 {
  position: relative;
  font-size: 25px;
  color: #333333;
  font-weight: 500;
  padding-bottom: 0px;
  text-transform: capitalize;
}

.sidebar-page-container .comments-area .comment-box {
  position: relative;
  border-bottom: 1px solid #f1f2f2;
  background-color: #ffffff;
  padding: 55px 45px 40px 28px;
  transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment {
  position: relative;
  font-size: 14px;
  padding-left: 115px;
}

.sidebar-page-container .comments-area .comment .comment-inner {
  position: relative;
}

.sidebar-page-container .comments-area .comment .comment-reply {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 32px;
  border-radius: 4px;
  background-color: #035c73;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 300ms ease;
  font-family: "Poppins", sans-serif;
}

.sidebar-page-container .comments-area .comment-box .author-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  margin-bottom: 20px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img {
  width: 94px;
  display: block;
}

.sidebar-page-container .comments-area .comment-info {
  color: #3e5773;
  line-height: 24px;
  font-size: 13px;
}

.sidebar-page-container .comments-area .comment-box strong {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  line-height: 16px;
  text-transform: capitalize;
}

.sidebar-page-container .comments-area .comment-box .text {
  color: #777777;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.8em;
}

.sidebar-page-container .comments-area .comment-info .comment-time {
  position: relative;
  font-size: 14px;
  color: #777777;
  font-weight: 300;
}

.sidebar-page-container .comments-area .comment-box .theme-btn {
  padding: 5px 30px;
  font-size: 12px;
  border: 1px solid #fbca00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-tabs .prod-tabs .tabs-content .tab .comments-area {
  margin-top: 0px;
}

/***

====================================================================
	Comment Form
====================================================================

 ***/

.comment-form {
  position: relative;
  margin-bottom: 60px;
  margin-top: 70px;
}

.comment-form form {
  position: relative;
  padding: 86px 100px 50px;
  background-color: #ffffff;
}

.comment-form .form-group {
  margin-bottom: 36px;
}

.comment-form .form-group input[type=text],
.comment-form .form-group input[type=email],
.comment-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 10px 28px;
  height: 50px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 300;
  background-color: #f8f8f8;
  border: 2px solid #ededed;
  transition: all 300ms ease;
}

.comment-form .form-group input[type=text]:focus,
.comment-form .form-group input[type=email]:focus,
.comment-form .form-group textarea:focus {
  border-color: #035c73;
}

/***

====================================================================
	Error Page
====================================================================

***/

.error-section {
  position: relative;
  text-align: center;
  padding: 180px 0px 180px;
}

.error-section .error-image {
  position: relative;
  text-align: center;
}

.error-section .error-image .image {
  position: relative;
  max-width: 100%;
  display: inline-block;
}

.error-section h3 {
  position: relative;
  color: #333333;
  font-weight: 700;
  font-size: 30px;
  margin-top: 10px;
  line-height: 1.2em;
  margin-bottom: 30px;
}

.error-section .text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 30px;
  color: #777777;
}

.error-search-box {
  position: relative;
  margin-top: 12px;
  width: 360px;
  display: inline-block;
}

.error-search-box .form-group {
  position: relative;
  margin: 0px;
}

.error-search-box .form-group input[type=text],
.error-search-box .form-group input[type=search] {
  position: relative;
  line-height: 42px;
  padding: 10px 50px 10px 28px;
  border: 1px solid #ebebeb;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 65px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.error-search-box .form-group input:focus {
  border-color: #035c73;
}

/***

====================================================================
	Contact Section
====================================================================

***/

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

.contact-section .column h2 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
  text-transform: capitalize;
}

.contact-section .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.9em;
  margin-bottom: 30px;
}

/***

====================================================================
	Contact Form
====================================================================

 ***/

.contact-form {
  position: relative;
  padding-right: 15px;
  margin-bottom: 30px;
}

.contact-form .row {
  position: relative;
  margin: 0px -8px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 8px;
}

.contact-form .form-group input[type=text],
.contact-form .form-group input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 27px;
  padding: 12px 20px;
  height: 54px;
  font-size: 13px;
  font-weight: 400;
  background-color: #fbfbfb;
  border: 2px solid #f1f1f1;
  transition: all 300ms ease;
}

.contact-form .form-group input[type=text]:focus,
.contact-form .form-group input[type=email]:focus,
.contact-form .form-group textarea:focus {
  border-color: #035c73;
}

.contact-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 32px;
  padding: 12px 20px;
  height: 110px;
  resize: none;
  font-size: 13px;
  background-color: #fbfbfb;
  border: 2px solid #f1f1f1;
  transition: all 300ms ease;
}

.contact-form button {
  position: relative;
  padding: 10px 34px;
  margin-top: 15px;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ff0000 !important;
}

.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0px 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff0000;
  font-weight: 500;
}

.contact-section .contact-info {
  position: relative;
}

.contact-section .contact-info li {
  position: relative;
  margin-bottom: 37px;
  color: #777777;
  font-size: 14px;
  padding-left: 85px;
  padding-top: 7px;
}

.contact-section .contact-info li span {
  position: relative;
  color: #222222;
}

.contact-section .contact-info li .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 58px;
  color: #ffffff;
  text-align: center;
  line-height: 58px;
  font-size: 32px;
  z-index: 1;
  background-color: #333333;
}

.contact-section .contact-info li .icon-box:after {
  position: absolute;
  content: "";
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid #cccccc;
}

/*Map Data*/

.map-data {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
}

.map-data h6 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  color: #121212;
}

.map-canvas {
  height: 540px;
}

/*Shop Item*/

.shop-item {
  position: relative;
  margin-bottom: 80px;
}

.shop-item .inner-box {
  position: relative;
  display: block;
}

.shop-item .inner-box .image {
  position: relative;
}

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

.shop-item .inner-box .lower-content {
  position: relative;
  margin-top: 6px;
  padding: 22px 18px 14px;
  background-color: #ffffff;
}

.shop-item .inner-box .lower-content h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.shop-item .inner-box .lower-content h3 a {
  color: #333333;
  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;
}

.shop-item .inner-box .lower-content h3 a:hover {
  color: #035c73;
}

.shop-item .inner-box .lower-content .price {
  position: relative;
}

.shop-item .inner-box .lower-content .price li {
  position: relative;
  font-size: 15px;
  color: #035c73;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.shop-item .inner-box .lower-content .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.shop-item .inner-box .lower-content .rating {
  position: relative;
}

.shop-item .inner-box .lower-content .rating .fa {
  position: relative;
  color: #035c73;
}

.shop-item .inner-box .lower-content .rating .fa.light {
  color: #aaaaaa;
}

.price-filter-widget .widget-content {
  padding: 48px 42px 50px;
}

/*Sidebar Range slider */

.range-slider-one {
  position: relative;
  min-height: 48px;
}

.range-slider-one .title {
  position: relative;
  float: left;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
}

.range-slider-one .title:before {
  position: absolute;
  content: "$";
  right: -14px;
  top: 0px;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
}

.range-slider-one .input {
  float: right;
  left: 8px;
  max-width: 75px;
  padding-left: 8px;
  margin-top: 8px;
  position: relative;
}

.range-slider-one .input input {
  background: none;
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  width: auto;
  text-align: left;
}

.range-slider-one .ui-widget.ui-widget-content {
  height: 4px;
  border: none;
  margin-bottom: 35px;
  background: #dfdfdf;
}

.range-slider-one .ui-slider .ui-slider-range {
  top: 0px;
  height: 4px;
  background: #035c73;
}

.range-slider-one .ui-state-default,
.range-slider-one .ui-widget-content .ui-state-default {
  top: -3px;
  width: 10px;
  height: 10px;
  border: 1px solid #dfdfdf;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.range-slider-one .theme-btn {
  padding: 4px 22px;
}

/*Sidebar Realated Posts */

.sidebar .related-posts .post {
  position: relative;
  padding: 0px 0px;
  padding-left: 110px;
  min-height: 90px;
  margin-bottom: 20px;
  padding-top: 9px;
}

.sidebar .related-posts .post:last-child {
  margin-bottom: 0px;
}

.sidebar .related-posts .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 95px;
}

.sidebar .related-posts .post .post-thumb img {
  display: block;
  width: 100%;
}

.sidebar .related-posts .post h4 {
  top: -2px;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  text-transform: capitalize;
}

.sidebar .related-posts .post h4 a {
  color: #333333;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .related-posts .post a,
.sidebar .related-posts .post a:hover {
  color: #035c73;
}

.sidebar .related-posts .post .price {
  position: relative;
}

.sidebar .related-posts .post .price li {
  position: relative;
  font-size: 15px;
  color: #035c73;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}

.sidebar .related-posts .post .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.sidebar .related-posts .post .rating {
  margin-bottom: 3px;
}

.sidebar .related-posts .post .rating .fa {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  color: #035c73;
  margin-right: 3px;
}

.sidebar .related-posts .post .price li {
  position: relative;
  font-size: 15px;
  color: #035c73;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}

.sidebar .related-posts .post .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.sidebar .related-posts .post .rating {
  margin-bottom: 3px;
}

.sidebar .related-posts .post .rating .fa {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  color: #035c73;
  margin-right: 3px;
}

.sidebar .related-posts .post .rating .fa-star.light {
  color: #aaaaaa;
}

.product-details .basic-details {
  position: relative;
  margin-bottom: 30px;
}

.product-details .basic-details .details-header h4 a {
  color: #333333;
}

.product-details .image-column .image-box img {
  position: relative;
  display: block;
  width: 100%;
  background-color: #f7f7f7;
}

.product-details .basic-details .details-header .rating .fa {
  display: inline-block;
  margin-right: 2px;
}

.product-details .basic-details .details-header h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 35px 0px 5px;
  line-height: 1.4em;
  color: #222222;
}

.product-details .basic-details .details-header h4 a {
  color: #333333;
}

.product-details .basic-details .details-header .rating {
  font-size: 16px;
  color: #035c73;
  margin-bottom: 15px;
  display: inline-block;
}

.product-details .basic-details .details-header .rating .fa {
  display: inline-block;
  margin-right: 2px;
}

.product-details .basic-details .details-header .rating .fa.dark {
  color: #aaaaaa;
}

.product-details .basic-details .details-header .reviews {
  position: relative;
  margin-left: 8px;
  display: inline-block;
}

.product-details .basic-details .details-header .reviews .separater {
  color: #acacac;
  margin: 0px 6px;
}

.product-details .basic-details .details-header .reviews a {
  position: relative;
  color: #aaaaaa;
  font-size: 12px;
}

.product-details .basic-details .details-header .price {
  position: absolute;
  right: 0px;
  top: 6px;
}

.product-details .basic-details .details-header .price li {
  position: relative;
  font-size: 18px;
  color: #035c73;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.product-details .basic-details .details-header .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.product-details .basic-details .prod-info {
  margin-bottom: 15px;
  line-height: 1.6em;
  font-size: 13px;
}

.product-details .basic-details .prod-info strong {
  font-weight: 700;
  color: #111111;
}

.product-details .basic-details .text {
  margin-bottom: 25px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7em;
}

.product-details .basic-details .item-quantity .field-label {
  /* float:left; */
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  display: inline-block;
  padding-right: 20px;
}

.product-details .basic-details .quantity-spinner,
.cart-section input.quantity-spinner {
  line-height: 24px;
  padding: 10px 15px !important;
  height: 46px !important;
  box-shadow: none !important;
}

.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn,
.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 11px 10px;
  background: #f4f5f6;
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-section .bootstrap-touchspin .input-group-btn-vertical i {
  top: 6px;
}

.product-details .basic-details .item-quantity {
  position: relative;
  width: 85px;
  margin-bottom: 30px;
}

.product-details .basic-details .item-quantity .field-label {
  float: left;
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  display: inline-block;
  padding-right: 20px;
}

.product-details .basic-details .quantity-spinner,
.cart-table input.quantity-spinner {
  font-size: 18px;
  line-height: 24px;
  padding: 10px 15px !important;
  height: 50px !important;
  box-shadow: none !important;
}

.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn,
.cart-table .bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 12px 10px;
  background: #f4f5f6;
  border-radius: 0px;
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-table .bootstrap-touchspin .input-group-btn-vertical i {
  top: 8px;
}

.product-details .basic-details .add-to-cart {
  margin-right: 5px;
}

/***

====================================================================
	Product Tabs Style
====================================================================

***/

.product-info-tabs {
  position: relative;
}

.product-info-tabs .prod-tabs {
  position: relative;
}

.product-info-tabs .prod-tabs .tab-btns {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 0px;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn {
  position: relative;
  top: 1px;
  display: block;
  float: left;
  margin-right: 8px;
  font-size: 13px;
  color: #333333;
  padding: 13px 60px;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  z-index: -1;
  background-color: #ffffff;
  transform: skewX(20deg);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn:first-child {
  margin-left: -10px;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn:hover:before,
.product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn:before {
  background-color: #f7502e;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn,
.product-info-tabs .prod-tabs .tab-btns .tab-btn:hover {
  color: #ffffff;
}

.product-info-tabs .prod-tabs .tabs-content {
  position: relative;
}

.product-info-tabs .prod-tabs .tabs-content .tab {
  position: relative;
  display: none;
}

.product-info-tabs .prod-tabs .tabs-content .tab.active-tab {
  display: block;
}

.product-info-tabs .prod-tabs .tabs-content .content {
  position: relative;
  padding: 40px 40px;
  background-color: #ffffff;
}

.product-info-tabs .prod-tabs .tabs-content .content .text {
  position: relative;
}

.product-info-tabs .prod-tabs .tabs-content .content .text p {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 20px;
}

.product-info-tabs .prod-tabs .tabs-content .content .text p:last-child {
  margin-bottom: 0px;
}

.prod-tabs .tabs-content .tab .title {
  position: relative;
  color: #3d3d3d;
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 25px;
}

/*Comment Form*/

.shop-comment-form {
  position: relative;
}

.shop-comment-form h2 {
  position: relative;
  color: #222222;
  font-size: 26px;
  margin-bottom: 15px;
}

.shop-comment-form .separator {
  position: relative;
  width: 60px;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 30px;
  background-color: #dedede;
}

.shop-comment-form .separator:after {
  position: absolute;
  content: "";
  left: 100%;
  top: -4px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background-color: #f6f6f6;
  border: 1px solid #e6e6e6;
}

.shop-comment-form .group-title {
  margin-bottom: 20px;
}

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

.shop-comment-form .rating-box .text {
  position: relative;
  font-size: 16px;
  color: #848484;
  margin-bottom: 10px;
}

.shop-comment-form .rating-box .rating {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ebebeb;
}

.shop-comment-form .rating-box .rating:last-child {
  border-right: 0px;
}

.shop-comment-form .rating-box .rating .fa {
  position: relative;
  margin-right: 2px;
  display: inline-block;
}

.shop-comment-form .rating-box .rating a {
  position: relative;
  color: #d6d6d6;
  font-size: 14px;
  display: inline-block;
}

.shop-comment-form .rating-box .rating a:hover {
  color: #fc7837;
}

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

.shop-comment-form .form-group label {
  position: relative;
  color: #727272;
  font-size: 16px;
  font-weight: 400;
}

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

.shop-comment-form .form-group input[type=text],
.shop-comment-form .form-group input[type=password],
.shop-comment-form .form-group input[type=tel],
.shop-comment-form .form-group input[type=email],
.shop-comment-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 15px;
  border: 1px solid #efefef;
  height: 50px;
  color: #848484;
  font-weight: 300;
  background: #ffffff;
  transition: all 300ms ease;
}

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

.shop-comment-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 10px 15px;
  color: #848484;
  border: 1px solid #efefef;
  height: 105px;
  font-weight: 300;
  background: #ffffff;
  resize: none;
  transition: all 300ms ease;
}

.shop-comment-form button {
  position: relative;
  margin-top: 10px;
}

.shop-comment-form input:focus,
.shop-comment-form select:focus,
.shop-comment-form textarea:focus {
  border-color: #f7502e;
}

/***

====================================================================
	Related Products
====================================================================

 ***/

.related-products {
  position: relative;
  margin-top: 90px;
}

.related-products h2 {
  position: relative;
  color: #333333;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 35px;
}

/***

====================================================================
	Cart Section style
====================================================================

***/

.cart-section {
  position: relative;
}

.cart-section .cart-outer {
  position: relative;
}

.cart-section .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.cart-section .cart-table {
  width: 100%;
  min-width: 750px;
}

.cart-table .cart-header {
  position: relative;
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  background: #333333;
  color: #1f1f1f;
}

.cart-table thead tr th {
  line-height: 24px;
  padding: 20px 15px;
  min-width: 120px;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  text-transform: capitalize;
}

.cart-table thead tr th.prod-column {
  text-align: left;
  padding-left: 40px;
}

.cart-table tbody tr td {
  line-height: 24px;
  padding: 40px 30px 40px;
  min-width: 100px;
  background-color: #ffffff;
}

.cart-table tbody tr .qty {
  width: 140px;
  padding-right: 40px;
}

.cart-table tbody tr .qty .quantity-spinner {
  background: #f5f5f5;
}

.cart-table tbody tr .prod-column .column-box {
  position: relative;
  min-height: 65px;
  padding-left: 90px;
  padding-top: 20px;
  text-align: left;
}

.column.default-column .cart-table tbody tr .qty {
  width: 110px;
  padding-right: 20px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb {
  position: absolute;
  width: 70px;
  border: 1px solid #f0f0f0;
  left: 0px;
  top: 0px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img {
  display: block;
  max-width: 100%;
}

.cart-table tbody tr .prod-column .column-box h3 {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 400;
  margin-bottom: 5px;
}

.cart-table tbody tr .sub-total {
  font-weight: 400;
  color: #f0402f;
  font-size: 14px;
}

.cart-table tbody tr td {
  vertical-align: middle;
}

.cart-table tbody tr td.price {
  font-size: 14px;
  font-weight: 400;
  color: #2c2c2c;
  padding-left: 15px;
}

.cart-table tbody tr td .quantity-spinner {
  padding: 5px 0px 5px 20px;
  line-height: 24px;
  height: 34px;
  display: block;
  width: 100%;
  position: relative;
}

.cart-table tbody .available-info {
  position: relative;
  padding-left: 50px;
  color: #727272;
  font-size: 16px;
}

.cart-table tbody .available-info .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  background: #3e4494;
  border-radius: 50%;
}

.cart-section .coupon-outer {
  position: relative;
  padding: 33px 30px 15px;
  background-color: #ffffff;
}

.cart-section .coupon-outer:before {
  position: absolute;
  content: "";
  left: 30px;
  width: 92%;
  top: 0px;
  height: 1px;
  bottom: 0px;
  background-color: #d3d3d3;
}

.cart-section .coupon-outer .cart-btn {
  font-size: 13px;
  padding: 10px 28px;
  font-weight: 700;
  transition: all 500ms ease;
}

.cart-section .apply-coupon {
  position: relative;
}

.cart-section .apply-coupon .form-group {
  position: relative;
  float: left;
  margin-right: 15px;
}

.cart-section .apply-coupon .form-group label {
  color: #333333;
  font-size: 15px;
  float: left;
  font-weight: 600;
  margin-top: 13px;
}

.cart-section .apply-coupon .form-group .coupon-btn {
  padding: 7px 18px;
  line-height: 30px;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
  border-color: #efefef;
  background-color: #efefef;
}

.cart-section .apply-coupon .form-group input[type=text] {
  display: block;
  line-height: 26px;
  padding: 12px 20px;
  height: 50px;
  width: 100px;
  font-size: 15px;
  background: none;
  float: left;
}

.cart-section .estimate-form {
  position: relative;
}

.cart-section .sec-title {
  margin-bottom: 25px;
}

.cart-section .sec-title h2 {
  font-size: 26px;
  color: #222222;
}

.cart-section .estimate-form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.cart-section .estimate-form .row .form-group {
  padding: 0px 7px !important;
  margin-bottom: 30px;
}

.cart-total-block {
  position: relative;
  margin-top: 54px;
  margin-bottom: 30px;
}

.cart-total-block h2 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 28px;
}

.cart-total-block .inner-block {
  position: relative;
  max-width: 460px;
  padding: 40px 45px;
  margin-bottom: 50px;
  background-color: #ffffff;
}

.cart-section .totals-table {
  position: relative;
  border: 1px solid #dcdcdc;
}

.cart-section .totals-table .col {
  position: relative;
  display: block;
  float: left;
  padding: 15px 15px;
  line-height: 24px;
  width: 35%;
  font-weight: 400;
  font-size: 14px;
  color: #aaaaaa;
  text-align: center;
}

.cart-section .totals-table .col.total-prices {
  color: #f0402f;
}

.cart-section .totals-table .col-title {
  font-size: 14px;
  width: 65%;
  color: #aaaaaa;
  font-weight: 400;
  text-align: left;
  border-right: 1px solid #cecece;
}

.cart-section .totals-table li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.cart-section .totals-table li:last-child {
  border-bottom: none;
}

.checkout-page .default-links {
  position: relative;
  margin-bottom: 50px;
}

.checkout-page .default-links li {
  margin-bottom: 25px;
  line-height: 24px;
  padding: 16px 24px;
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #d3d3d3;
}

.checkout-page .default-links li a {
  color: #035c73;
}

/*CheckOut Form*/

.checkout-form {
  position: relative;
}

.checkout-form h2 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 18px;
}

.checkout-form .column .row {
  margin: 0px -10px;
}

.checkout-form .column .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}

.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=password],
.checkout-form input[type=tel],
.checkout-form input[type=number],
.checkout-form input[type=url],
.checkout-form select,
.checkout-form textarea {
  position: relative;
  display: block;
  width: 100%;
  background: #ffffff;
  line-height: 20px;
  padding: 12px 18px;
  height: 46px;
  color: #aaaaaa;
  font-size: 12px;
  border: 1px solid transparent;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.checkout-form textarea {
  resize: none;
  padding: 22px 22px;
  height: 406px !important;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: #035c73;
}

.checkout-page .check-box {
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  padding-top: 5px;
}

.checkout-page .check-box label {
  position: relative;
  font-weight: 400;
  padding: 0px;
  font-size: 14px;
  cursor: pointer;
  color: #035c73;
}

.checkout-page .notes {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 12px;
}

/*Custom Select*/

.form-group .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 14px;
  font-style: normal;
  height: 45px;
  padding: 10px 18px;
  line-height: 24px;
  color: #333333;
  border-radius: 0px;
  border: 1px solid transparent;
  background: #ffffff;
}

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

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

.ui-widget.ui-widget-content {
  border: 1px solid #e0e0e0;
}

.ui-menu .ui-menu-item {
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.order-total-block {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
}

.order-total-block h2 {
  position: relative;
  color: #333333;
  font-weight: 500;
  margin-bottom: 32px;
  font-size: 20px;
}

.order-total-block ul {
  position: relative;
  border: 1px solid #f1f1f1;
}

.order-total-block ul li:nth-child(2n+1) {
  background-color: #ffffff;
}

.order-total-block ul li {
  position: relative;
  font-size: 13px;
}

.order-total-block ul li .col-title {
  position: relative;
  color: #333333;
  font-size: 13px;
}

.order-total-block ul .col {
  padding: 12px 20px;
  display: block;
}

.order-total-block ul .col.left {
  width: 65%;
  float: left;
}

/*Payment Option*/

.checkout-page .payment-options {
  position: relative;
  padding: 45px 30px 50px;
  background-color: #ffffff;
}

.checkout-page .payment-options ul {
  margin-bottom: 30px;
}

.checkout-page .payment-options li {
  position: relative;
  margin-bottom: 15px;
}

.checkout-page .payment-options li .radio-option {
  position: relative;
}

.checkout-page .payment-options li .radio-option label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #333333;
  cursor: pointer;
}

.checkout-page .payment-options li .radio-option label strong {
  font-weight: 400;
  color: #212734;
  font-size: 18px;
}

.checkout-page .payment-options li .radio-option label strong a {
  font-size: 16px;
  margin-left: 30px;
  text-decoration: underline;
}

.checkout-page .payment-options li .radio-option input[type=radio] {
  position: absolute;
  left: 0px;
  top: 3px;
}

.checkout-page .payment-options li .radio-option label .small-text {
  display: block;
  padding-top: 15px;
  letter-spacing: 0px;
  text-transform: none;
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  line-height: 1.9em;
}

.checkout-page .payment-options li.inner-boxed .radio-option {
  margin-left: 30px;
}

.checkout-page .payment-options li.inner-boxed .radio-option input[type=radio] {
  top: 0px;
}

.checkout-page .payment-options li.inner-boxed .radio-option label {
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.checkout-page .payment-options .place-order {
  margin-left: 30px;
}

.news {
  margin-top: -16px;
  margin-bottom: 16px;
  font-size: 10px;
}

.tp {
  top: 16%;
}

.cng {
  color: white;
}

.cng {
  color: white;
  bottom: 10px;
}

.gptchange {
  padding-top: 40px;
}

.gbchange {
  bottom: 49px;
}

.ghchange {
  height: 657px;
}

.fc {
  font-size: 1.75rem;
}

.top-60 {
  top: 60px !important;
}

.justify {
  text-align: justify;
}

.justifys {
  justify-items: center;
}

@media only screen and (max-width: 479px) {
  .top-60 {
    top: 20px !important;
  }

  .line-arrow {
    /* display:none; */
    opacity: 0;
  }

  .navbar1 {
    display: none;
  }

  .navbar1 {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .line-arrow {
    /* display:none; */
    opacity: 0;
  }

  .navbar1 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .line-arrow {
    /* display:none; */
    opacity: 0;
  }

  .navbar1 {
    display: none;
  }

  .margin-sm-device1 {
    margin-top: 90px !important;
  }

  .by-country {
    height: 200px;
    overflow: auto;
  }
}

.sidenav {
  height: 100%;
  width: 70%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #035c73;
  overflow-x: hidden;
  /* transition: 0.5s; */
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
  background: #035c73;
}

.sidenav a:hover {
  color: #f1f1f1;
}

/* .sidenav .closebtn {
            position: fixed;
            right: 0px;
            top: -10px;
            background: black;
            color: black;
            font-size: 40px;
            width: 100px;
            height: 100px;
        }
         */

.sidenav .closebtn:hover {
  color: black;
}

.dropdown-menu {
  padding: 0px !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.socials-mobile {
  position: fixed;
  float: right;
  display: block;
  width: 70%;
  height: 30px;
  background: #035c73;
  bottom: 0px;
  padding-bottom: 40px;
  transition: all 0.5s ease;
}

.dropdown-inner-font {
  font-size: 16px !important;
  color: antiquewhite !important;
}

body {
  height: 100%;
}

/* .socials-mobile {
            margin: 0 auto;
            display: block;
            width: 100%;
            margin-top: 20px;
        } */

/* .collapse.in {
            display: block !important;
        } */

.rotate1,
.rotate2,
.rotate3,
.rotate4,
.rotate2-1,
.rotate3-1 {
  transition: all 0.5s linear;
  font-size: 18px;
  margin-left: 10px;
  display: inline-block;
  position: initial;
  padding-top: 11px;
}

.rotate1.down,
.rotate2.down,
.rotate3.down,
.rotate4.down,
.rotate2-1.down,
.rotate3-1.down {
  transform: rotate(90deg);
  padding-left: 10px;
}

.cross-icon {
  font-size: 40px;
  cursor: pointer;
  float: right;
  margin-right: 10px;
  margin-top: -70px;
  display: none;
}

#nav-icon1 {
  width: 50px;
  height: 45px;
  position: fixed;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  right: 0px;
  margin-top: -50px;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 30px;
  background: #125D74;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 21px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  /* left: 60px; */
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.social-icon-design {
  background: #6d6e71;
  border: 1px solid #6d6e71;
  border-radius: 50%;
  margin-right: 3px;
  width: 25px;
  display: inline-block;
  text-align: center;
  padding-top: 1px;
  margin-left: 0px;
}

.social-icon-design:hover {
  background: transparent;
  border: 0px;
  color: white !important;
}

.map-icon {
  position: absolute !important;
  left: 37%;
}

.center {
  box-shadow: -2px -1px 5px 0px rgba(0, 0, 0, 0.36);
  padding: 50px;
}

.check-icon {
  border: 2px solid #40AC49;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  color: #40AC49;
}

.icon-wrapper {
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.08);
  width: 66px;
  padding: 10px;
  font-size: 25px;
  color: #F35551;
  padding-left: 13px;
}

.blog-design {
  position: absolute;
  top: 62px;
  left: 22%;
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.behance-design {
  position: absolute;
  top: 62px;
  left: 0px;
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.location-icon {
  width: 17px;
  margin-left: 10px;
  margin-top: -5px;
}

.top-30 {
  top: 30px;
}

.blog-icon {
  width: 43px;
  padding-left: 12px;
  padding-right: 10px;
  padding-bottom: 6px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

@media (min-width: 1024px) and (max-width: 1140px) {
  .margin-top-1 {
    top: 72px !important;
  }
}

@media (min-width: 1141px) {
  .header-style-two .main-menu .navigation > li {
    padding: 25px 0px 47px;
  }

  .margin-top-1 {
    top: 72px !important;
  }
}

.bg-white {
  background: white;
}

.bg-white1 {
  background: #F6F6F6;
}

.date1 {
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.25rem;
}

.margin-left1 {
  margin-left: 65px;
}

.padding1 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.font-18 {
  font-size: 18px;
}

.blog-title {
  font-size: 20px !important;
  letter-spacing: -0.2px !important;
  line-height: 1.3em !important;
  color: #151519;
  min-height: 3.5em;
}

.readmore-btn {
  border: 1px solid blue;
  margin-left: 16px;
  border-radius: 0px;
  padding: 4px;
  background: transparent;
}

.blog-desc {
  margin-top: 5px;
  text-align: justify;
  font-size: 15px;
}

.box-shadow1 {
  box-shadow: 0 0 10px -2px rgba(21, 21, 25, 0.25);
}

.date2 {
  font-weight: 600;
  font-size: 12px;
  color: #428cad !important;
}

.section-margin {
  margin-top: 80px;
  margin-bottom: 80px;
}

.our-blog {
  font-size: 24.1px;
  color: #151519 !important;
  letter-spacing: -1px;
  line-height: 1.1em;
  margin-top: 50px;
  word-spacing: 5px;
}

.our-blog-img {
  width: 80%;
  /* height: 550px; */
  box-shadow: 0 0 10px 0 rgba(21, 21, 25, 0.25);
  margin-left: 20%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-body {
  padding: 2.25rem !important;
}

.blogimg-border {
  border: 1px solid black;
  width: 46%;
  position: absolute;
  right: 0px;
  height: 660px;
  top: -80px;
  background: #151414;
}

.card-margin {
  margin-top: 80px;
}

.height-173 {
  height: 173px;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-margin {
  top: 5px;
  margin-left: 71px;
}

.m-t-27 {
  margin-top: 27px !important;
}

.blog-head1 {
  font-size: 19px;
  color: #151519 !important;
  text-align: justify;
}

/* gradient heading */

.gradient-heading {
  vertical-align: baseline;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  color: #444;
  letter-spacing: 0;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
}

.gradient-heading {
  background-image: linear-gradient(to right, #3452ff, #ff1053);
}

.gradient-heading {
  color: #3452ff;
  background: linear-gradient(to bottom right, #3452ff, #ff1053);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

.gradient-heading {
  font-size: 46px;
  line-height: 60px;
  font-weight: 700;
}

.bg-semi-white {
  background: #F6F6F6;
}

.mx-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.sub-heading {
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
}

.my-30 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.list1 {
  font-size: 18px;
  padding: 20px 50px;
}

.ol-list-type {
  list-style-type: decimal;
}

.ul-list-type {
  list-style-type: disc;
}

.sideimg1 {
  margin-top: 100px;
  width: 75%;
  margin-left: 80px;
}

.banner-img1 {
  width: 70%;
}

.sub-heading-1 {
  font-size: 18px;
  padding-left: 25px;
  padding-right: 25px;
}

.sub-content-1 {
  padding-left: 25px;
  padding-right: 25px;
}

.top-120 {
  top: 120px !important;
}

.icon-card {
  box-shadow: 0px 2px 70px 0px rgba(110, 130, 208, 0.18);
  background: white;
}

.card-icon {
  height: 76px;
  width: 80px;
  display: block;
  text-align: center;
  margin: auto;
  margin-top: 15px;
}

.icon-1 {
  height: 93px;
  width: 100px !important;
  display: block;
  margin: auto;
  margin-top: 35px;
  margin-bottom: 17px;
}

.list1 li {
  list-style: circle !important;
}

.ordered-list li {
  list-style-type: decimal;
  font-size: 18px;
  padding: 20px 10px;
  margin-left: 21px;
}

.line-arrows1 {
  position: absolute;
  content: "";
  left: 88%;
  top: 34% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: black;
}

.line-arrows1:before {
  position: absolute;
  content: "\F0D9";
  left: -5px;
  top: -11px !important;
  font-size: 16px;
  color: black;
  font-family: "FontAwesome";
}

.line-arrows1:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: black;
  font-family: "FontAwesome";
}

.img-margin1 {
  margin-left: 40px;
}

.color-dark1 {
  color: #666 !important;
  font-weight: 500 !important;
  line-height: 1.8em !important;
}

.card-text2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7em;
}

.box-team {
  box-shadow: 0px 2px 70px 0px rgba(110, 130, 208, 0.18);
}

.clients-logo {
  margin-top: 25px;
  box-shadow: 2px 9px 44px -13px rgba(0, 0, 0, 0.75);
}

.Clients-image {
  margin: 0 auto;
  display: block;
  padding: 12px;
  height: 160px;
  overflow: hidden;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
}

.client-head {
  font-family: "Roboto", Helvetica, Arial, Lucida, sans-serif;
  font-size: 45px;
  line-height: 1.2em;
  margin-top: 60px;
  margin-bottom: 50px;
}

.client-detail1 {
  color: #035c73;
  cursor: pointer;
}

.client-name {
  font-size: 16px;
  text-align: center;
  font-family: cursive;
  padding: 12px 1px;
}

.separator1 {
  border-bottom: 1px solid #dee2e6;
}

.speech-bubble {
  position: relative;
  background: #125D74;
  border-radius: 0.4em;
  height: 145px;
  width: 248px;
  z-index: 999;
  padding: 25px;
}

.our-awesome {
  font-family: "Roboto", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2em;
  text-align: center;
  margin-bottom: 30px;
}

.speech-bubble:after {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  width: 0;
  height: 0;
  border: 31px solid transparent;
  border-right-color: #125D74;
  border-left: 0;
  border-bottom: 0;
  margin-top: -15.5px;
  margin-left: -31px;
}

.client-detail2 {
  position: absolute;
  top: 25px;
  right: -263px;
  display: none;
}

.clients-logo1 {
  margin-top: 25px;
  box-shadow: 2px 9px 44px -13px rgba(0, 0, 0, 0.75);
}

.speech-bubble1 {
  position: relative;
  background: #125D74;
  border-radius: 0.4em;
  height: 145px;
  width: 248px;
  z-index: 999;
  padding: 25px;
}

.speech-bubble1:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 22%;
  width: 0;
  height: 0;
  border: 31px solid transparent;
  border-left-color: #125D74;
  border-right: 0;
  border-bottom: 0;
  margin-top: -15.5px;
  margin-left: -31px;
}

.client-detail3 {
  position: absolute;
  top: 25px;
  left: -263px;
  display: none;
}

.testo-boxes {
  margin-top: 15px;
  box-shadow: 0px 2px 37px -9px rgba(0, 0, 0, 0.75);
}

.testo-img {
  padding: 25px 18px;
  margin: 0 auto;
  display: block;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
}

.testo-name {
  font-size: 18px;
  text-align: center;
  margin-top: -19px;
  margin-bottom: 13px;
}

.testo-name2 {
  font-size: 14px;
  text-align: center;
  color: grey;
  font-weight: 200;
}

.testo-paragrah {
  text-align: center;
  font-size: 14px;
  padding: 0px 24px;
}

.testo-icons {
  text-align: center;
  color: hotpink;
}

.testo-icons .fa {
  margin-right: 10px;
  margin-bottom: 25px;
  font-size: 15px !important;
}

@media (min-width: 576px) and (max-width: 768px) {
  .card-columns {
    -moz-column-count: 2;
    column-count: 2;
  }

  .height-173 {
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .top-0 {
    top: 0px !important;
  }

  .left-12 {
    left: 12px !important;
  }

  .top-120 {
    top: 10px !important;
  }
}

@media (max-width: 576px) {
  .img-margin1 {
    margin-left: 5px;
  }

  .top-120 {
    top: 10px !important;
  }

  .height-173 {
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .img-margin {
    margin-left: 0px;
  }

  .width-100 {
    width: 100%;
  }

  .top-0 {
    top: 0px !important;
  }

  .left-12 {
    left: 12px !important;
  }
}

@media screen and (max-width: 991px) {
  .card-margin {
    margin-top: 0px;
  }

  .our-blog {
    margin-top: 0px;
  }
}

@media screen and (min-width: 1200px) {
  .margin-120 {
    margin-top: 120px !important;
  }
}

@media only screen and (max-width: 600px) {
  .speech-bubble {
    position: relative;
    background: #125D74;
    border-radius: 0.4em;
    height: 152px;
    width: 100%;
    z-index: 999;
    padding: 25px;
    display: block;
  }

  .speech-bubble:after {
    content: "";
    position: absolute;
    left: 44px;
    top: -5%;
    width: 0;
    height: 0;
    border: 31px solid transparent;
    border-right-color: #125D74;
    border-left: 0;
    border-bottom: 0;
    margin-top: -15.5px;
    margin-left: -31px;
  }

  .speech-bubble1 {
    position: relative;
    background: #125D74;
    border-radius: 0.4em;
    height: 152px;
    width: 100%;
    z-index: 999;
    padding: 25px;
    display: block;
  }

  .speech-bubble1:after {
    content: "";
    position: absolute;
    left: 44px;
    top: -5%;
    width: 0;
    height: 0;
    border: 31px solid transparent;
    border-right-color: #125D74;
    border-left: 0;
    border-bottom: 0;
    margin-top: -15.5px;
    margin-left: -31px;
  }

  .client-detail2 {
    position: absolute;
    top: 192px;
    right: -15px;
    width: 100%;
  }

  .client-detail3 {
    position: absolute;
    top: 192px;
    left: 15px;
    width: 100%;
  }

  .overlay1 {
    left: 0px;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    height: 295px;
  }

  #team {
    margin-top: 140px;
  }

  #clients10 {
    margin-top: 100px;
  }
}

.global-img {
  width: auto;
  margin: 0 auto;
  display: block;
}

.no-logo {
  font-weight: bold;
  padding: 10px;
  font-size: 17px;
  padding-top: 33px;
  padding-bottom: 25px;
}

.pt0 {
  padding-top: 0 !important;
}

.tp-leftarrow {
  display: none;
}

.tp-rightarrow {
  display: none;
}

input[type=tel] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 10px 30px;
  height: 50px;
  color: #222222;
  font-size: 14px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  /* 333 277 */
}

@media only screen and (max-width: 767px) {
  .test {
    top: 42px !important;
    text-align: left;
    /* width: max-content; */
    width: 168px !important;
  }

  .good {
    margin-left: -181px;
    display: block;
    top: 43px;
    width: inherit;
  }

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

  .main-menu .navigation > li > ul > li > ul {
    position: absolute;
    margin: 0 !important;
    padding: 0 !important;
    left: 100%;
    top: 45 !important;
    display: contents !important;
    width: 217px;
    /* change from 240px  */
    padding: 0;
    z-index: 100;
    display: none;
    background: #ffffff;
    border-top: 2px solid #035c73;
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 768px) {
  .size {
    height: 255px !important;
  }

  .training-text {
    position: relative;
    width: 214px;
    /* right: -10px; */
    left: 3%;
    /* padding-left: 87px; */
    padding-right: -3px;
    margin-left: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  .size {
    height: 300px !important;
  }
}

@media (max-width: 425px) {
  .none {
    display: none;
  }

  .training-text {
    position: relative;
    width: 214px;
    right: -10px;
    left: 10px;
    /* padding-left: 87px; */
    padding-right: -3px;
    margin-left: 79px;
  }
}

@media (max-width: 375px) {
  .none {
    display: none;
  }

  .training-text {
    position: relative;
    width: 214px;
    right: -10px;
    left: 10px;
    /* padding-left: 87px; */
    padding-right: -3px;
    margin-left: 58px;
  }
}

@media (max-width: 320px) {
  .none {
    display: none;
  }

  .training-text {
    position: relative;
    width: 214px;
    right: -10px;
    left: 10px;
    /* padding-left: 87px; */
    padding-right: -3px;
    margin-left: 32px;
  }
}

.global-img {
  width: auto;
  margin: 0 auto;
  display: block;
}

#accordion h3,
#accordion1 h3 {
  background: white;
  color: #333;
  font-size: 19px;
  font-style: italic;
  border: 1px solid #ddd;
}

#accordion h3 i,
#accordion1 h3 i {
  float: right;
  margin-right: 14px;
  font-size: 27px;
  margin-top: -4px;
}

#accordion,
#accordion1 {
  margin-top: 40px;
  margin-bottom: 40px;
}

#accordion p,
#accordion1 p {
  font-size: 17px;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  z-index: auto;
}

/***

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

***/

body {
  font-size: 14px;
  color: #777777;
  line-height: 1.7em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
  padding-right: 0 !important;
}

.modal-open {
  padding-left: 0px !important;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: 500;
  margin: 0px;
  color: black;
  background: none;
  line-height: 1.6em;
  font-family: "Poppins", sans-serif;
}

input,
button,
select,
textarea {
  font-family: "Poppins", sans-serif;
}

textarea {
  overflow: hidden;
}

.gray-bg {
  background-color: #f6f6f6;
}

p,
text {
  position: relative;
  line-height: 1.8em;
  font-family: "Poppins", sans-serif;
}

.cog {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8em;
}

.strike-through {
  text-decoration: line-through;
}

.index {
  z-index: auto;
}

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

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

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

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

.centered {
  text-align: center !important;
}

/*Btn Style One*/

.btn-style-one {
  position: relative;
  padding: 10px 28px;
  line-height: 24px;
  text-transform: uppercase;
  background: #035c73;
  color: #ffffff;
  border: 2px solid #035c73;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.btn-style-one:hover {
  background: none;
  color: #035c73;
  border-color: #035c73;
}

/*Btn Style Two*/

.btn-style-two {
  position: relative;
  padding: 10px 28px;
  line-height: 24px;
  text-transform: uppercase;
  background: #3d4a66;
  color: #ffffff;
  border: 2px solid #3d4a66;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 999;
  font-family: "Poppins", sans-serif;
}

.btn-style-two:hover {
  background: none;
  color: #3d4a66;
  border-color: #3d4a66;
}

/*Btn Style Three*/

.btn-style-three {
  position: relative;
  padding: 10px 28px;
  line-height: 24px;
  text-transform: uppercase;
  background: #ffffff;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid #ffffff;
  font-family: "Poppins", sans-serif;
}

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

/*Social Icon One*/

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

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

.social-icon-one li a {
  position: relative;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #a6a6a6;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  background-color: #eeeeee;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.social-icon-one li a:hover {
  color: #ffffff;
  background-color: #035c73;
}

/*Social Icon One*/

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

.social-icon-two li {
  position: relative;
  margin: 0px 10px;
  display: inline-block;
}

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

.social-icon-two li a:hover {
  color: #f24a29;
}

/*Social Icon Three*/

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

.social-icon-three .share {
  position: relative;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.social-icon-three a {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  color: #a6a6a6;
  font-size: 14px;
  text-align: center;
  margin-left: 6px;
  line-height: 30px;
  background-color: #eeeeee;
  transition: all 300ms ease;
}

.social-icon-three a:hover {
  color: #ffffff;
  background-color: #035c73;
}

.theme_color {
  color: #035c73;
}

.theme_color {
  color: #035c73;
}

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

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  width: 229px;
  margin-right: 36px;
}

/***

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

***/

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 60px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: #035c73;
  display: none;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  color: #ffffff;
  background: #035c73;
  border-radius: 170px;
}

/*List Style One*/

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

.list-style-one li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8em;
  font-weight: 400;
  color: #333333;
}

.list-style-one li .icon {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  color: #47546c;
  font-size: 18px;
}

/***

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

***/

.main-header {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
}

.main-header .auto-container {
  position: relative;
}
/* .main-header .main-box {
  position: relative;
  padding: 0px 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: all 300ms ease;
  margin-bottom: -25px;
  margin-top: -7px;
} */

.main-header.fixed-header .main-box {
  position: fixed;
  border-bottom: 1px solid #181818;
  padding: 0px 0px;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  background-color: #212121;
  height:100px;
  margin-top:-35px;
}

.main-header .main-box .outer-container {
  position: relative;
}

.main-header .main-box .logo-box {
  position: relative;
  float: left;
  left: 0px;
  z-index: 10;
  padding: 20px 0 10px 0px;
  transition: all 300ms ease;
}

.fixed-header .main-box .logo-box {
  padding: 10px 0px;
}

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

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

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

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

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

.main-menu .navigation {
  position: relative;
  margin: 0px;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  justify-content:space-between
}

.main-menu .navigation > li {
  position: relative;
  margin-right: 20px;
  display: inline-block;
  padding: 47px 0px 20px;
  transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.fixed-header .main-menu .navigation > li {
  padding: 35px 0px;
}

.fixed-header .info-options {
  padding: 38px 0px !important;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  padding: 0px 0px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  text-transform: capitalize;
  letter-spacing: 0px;
  opacity: 1;
  font-weight: 500;
  font-size: 15px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-family: "Poppins", sans-serif;
}

.main-menu .navigation > li.dropdown > a:before {
  font-family: "FontAwesome";
  content: "\F107";
  position: absolute;
  right: 0px;
  margin: initial;
  font-size: 14px;
  margin-top: 2px;
}

.main-menu .navigation > li.dropdown a {
  padding-right: 15px;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: #ffffff;
  opacity: 1;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: -62px;
  /* changed from 0px	 */
  top: 80%;
  width: 181px;
  /* changed from 	 */
  padding: 0px;
  z-index: 100;
  display: none;
  background: #ffffff;
  border-top: 2px solid #035c73;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -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);
  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.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.main-menu .navigation > li > ul > li:hover > a {
  color: #ffffff;
  background: #035c73;
}

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

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

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 20px;
  width: 217px;
  /* change from 240px  */
  padding: 0px;
  z-index: 100;
  display: none;
  background: #ffffff;
  border-top: 2px solid #035c73;
  -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);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

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

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: #ffffff;
  background: #035c73;
}

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

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

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

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

.main-header .info-options {
  position: relative;
  float: right;
  margin-left: 25px;
  padding: 50px 0px;
  transition: all 300ms ease;
}

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

.header-style-two .main-menu .navigation > li {
  padding: 47px 0px 47px;
}

.header-style-two .search-box-outer,
.header-style-two .main-menu .navigation > li > a {
  color: #035c73;
}

.header-style-two .main-menu .navigation > li:hover > a,
.header-style-two .main-menu .navigation > li.current > a {
  color: #035c73;
}

.header-style-two.fixed-header .main-box {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.header-style-two.fixed-header .main-menu .navigation > li {
  padding: 35px 0px 35px;
}

.search-box-outer {
  position: relative;
  float: left;
  color: #ffffff;
}

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

.main-header .search-box-outer .dropdown-menu {
  top: 71px;
  border-top: 3px solid #035c73;
  padding: 0px;
  width: 280px;
  border-radius: 0px;
}

.main-header.fixed-header .search-box-outer .dropdown-menu {
  top: 61px;
}

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

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

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

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

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

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

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

/***

====================================================================
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 h5 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
}

.main-slider .text {
  position: relative;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 2em;
}

.main-slider .title {
  position: relative;
  color: #ffffff;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2em;
  text-transform: capitalize;
}

.main-slider .tp-bannertimer {
  display: none !important;
}

/***

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

***/

/**
====================================================================
Services Section
====================================================================

***/

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

.services-block {
  position: relative;
  margin-bottom: 40px;
}

.services-block .inner-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 70px 30px 70px;
  background-color: #4b7eea;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block .inner-box .icon-box {
  position: relative;
  width: 101px;
  height: 101px;
  margin: 0 auto;
  margin-bottom: 28px;
}

.services-block .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

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

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

.services-block:nth-child(2) .inner-box {
  background-color: #4b7eea;
}

.services-block:nth-child(3) .inner-box {
  background-color: #4b7eea;
}

.services-block .inner-box:hover {
  box-shadow: 0px 0px 14px 0px rgba(68, 68, 68, 0.4);
}

/***

====================================================================
Audit Form Section
====================================================================

***/

.audit-form-section {
  position: relative;
  padding: 90px 0px 70px;
  background: #3d4a66;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.audit-form-section h2,
.audit-form-section h5 {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

/*Audit Form*/

.audit-form {
  position: relative;
}

.audit-form .row {
  margin: 0px -10px;
}

.audit-form .column {
  padding: 0px 10px;
}

.audit-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.audit-form .column .row .form-group {
  padding: 0px 10px;
}

.audit-form input[type=text],
.audit-form input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 10px 30px;
  height: 50px;
  color: #222222;
  font-size: 14px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.tel1 {
  position: relative;
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 10px 30px;
  height: 50px;
  color: #222222;
  font-size: 14px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.audit-form .form-group button {
  width: 100%;
  line-height: 26px;
}

/***

====================================================================
Traffic Section
====================================================================

***/

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

.traffic-section .image-column {
  position: relative;
}

.traffic-section .image-column .image {
  position: relative;
  margin-bottom: 40px;
  padding-right: 100px;
  /* -webkit-animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* -webkit-animation: slide-rotate-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-rotate-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* -webkit-animation: slide-fwd-center 10000000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-fwd-center 10000000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  /* -webkit-animation: flip-scale-down-diag-2 5000s linear both;
  animation: flip-scale-down-diag-2 5000s linear both; */
  /* -webkit-animation: shadow-drop-2-center 0.4s cubic-bezier(0.550, 0.055, 0.675, 0.190) infinite reverse forwards;
  animation: shadow-drop-2-center 0.4s cubic-bezier(0.550, 0.055, 0.675, 0.190) infinite reverse forwards; */
}

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

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

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

.traffic-section .content-column .inner-column h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.traffic-section .content-column .inner-column h2,
.traffic-section .content-column .inner-column h5,
.traffic-section .content-column .inner-column h4 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.traffic-section .content-column .inner-column .text {
  position: relative;
  color: #777777;
  font-size: 18px;
  line-height: 1.8em;
  margin-bottom: 50px;
}

/***

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

***/

/***

====================================================================
  float: right;
  height: 243px;
  width: 430px;
  padding-left: 112px;
  margin-left: 26px;====================================================================

***/

.services-section-two {
  position: relative;
  overflow: hidden;
  padding: 30px 0px 30px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #3d4a66;
}

.services-section-two .row {
  margin: 0px -100px;
}

.services-section-two .services-block-two {
  padding: 0px 100px;
}

.services-block-two {
  position: relative;
  margin-bottom: 60px;
}

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

.services-block-two .inner-box .line-arrow {
  position: absolute;
  content: "";
  left: 88% !important;
  top: 19% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .line-arrows {
  position: absolute;
  content: "";
  left: 88%;
  top: 34% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .line-arrow .tp {
  position: absolute;
  content: "";
  left: 88%;
  top: 20% !important;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .costum-line {
  position: absolute;
  content: "";
  left: 554%;
  top: 34%;
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

.services-block-two .inner-box .line-arrow:before {
  position: absolute;
  content: "\F0D9";
  left: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .line-arrows:before {
  position: absolute;
  content: "\F0D9";
  left: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .line-arrow:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .line-arrows:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .costum-line:after {
  position: absolute;
  content: "\F0DA";
  right: -5px;
  top: -11px !important;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
}

.services-block-two .inner-box .icon-box {
  position: relative;
  width: 127px;
  height: 125px;
  margin: 0 auto;
  margin-bottom: 32px;
}

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

.services-block-two .inner-box .icon-box:before {
  position: absolute;
  content: "";
  left: -6px;
  top: -6px;
  right: -5px;
  bottom: -6px;
  border-radius: 50%;
  /* border:1px solid #ffffff; */
}

.services-block-two .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.services-block-two .inner-box h3 a {
  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;
}

.services-block-two .inner-box h3 a:hover {
  color: #035c73;
}

.services-block-two .inner-box h5 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 15px;
  color: #fff;
}

.services-block-two .inner-box h5 a {
  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;
}

.services-block-two .inner-box h5 a:hover {
  color: #035c73;
}

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

.services-block-two .inner-box .learn-more {
  position: relative;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-two .inner-box .learn-more .fa {
  margin-left: 5px;
}

/***

====================================================================
Gallery Section
====================================================================

***/

.fullwidth-gallery-section {
  position: relative;
  background-color: #f0f0f0;
}

.fullwidth-gallery-section .gallery-outer {
  position: relative;
}

.fullwidth-gallery-section .gallery-outer .gallery-column {
  position: relative;
  width: 50%;
  float: left;
}

.fullwidth-gallery-section .gallery-outer .gallery-column .default-portfolio-item {
  position: relative;
  padding: 0px;
  z-index: 1;
}

.default-portfolio-item.mix,
.portfolio-item-two.mix {
  display: none;
}

.default-portfolio-item .inner-box {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.default-portfolio-item .image-box {
  position: relative;
  display: block;
}

.default-portfolio-item .image-box img {
  position: relative;
  display: block;
  width: 100%;
}

.default-portfolio-item .overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: #ffffff;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  transition: all 700ms ease;
  transform: translate(-100%, 0%);
}

.default-portfolio-item .inner-box:hover .overlay-box {
  opacity: 1;
  transform: translate(0%);
}

.default-portfolio-item .overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle;
  padding: 10px 0px;
}

.default-portfolio-item .overlay-inner .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.default-portfolio-item .overlay-inner .image-link {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  width: 42px;
  height: 42px;
  margin: 0px 5px;
  line-height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.default-portfolio-item .overlay-inner .image-link .icon {
  position: relative;
}

.default-portfolio-item .overlay-inner .image-link:hover {
  color: #666666;
  background-color: white;
}

.fullwidth-gallery-section .gallery-outer .gallery-column .inner-column {
  position: relative;
  margin-right: -120px;
}

.fullwidth-gallery-section .gallery-outer .content-column {
  position: relative;
  width: 50%;
  float: left;
}

.fullwidth-gallery-section .gallery-outer .content-column .content-inner {
  position: relative;
  margin-left: 170px;
  padding: 75px 40px 75px;
}

.fullwidth-gallery-section .gallery-outer .content-column .content-inner h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 22px;
}

.fullwidth-gallery-section .gallery-outer .content-column .content-inner .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  max-width: 380px;
  margin-bottom: 35px;
}

/***

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

***/

.testimonial-section {
  position: relative;
  padding: 140px 0px;
  background-position: right top;
}

.testimonial-section .owl-stage-outer {
  padding: 10px 10px;
}

.testimonial-section .outer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-section.style-two {
  background-color: #f8f8f8;
  background-position: right bottom;
  background-repeat: no-repeat;
}

/*testimonial style one*/

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

.testimonial-style-one .inner-box {
  position: relative;
  display: block;
  padding: 35px 45px 35px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px #f4f4f4;
}

.testimonial-style-one .inner-box .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 2em;
  font-weight: 400;
}

.testimonial-style-one .inner-box .user-info {
  position: relative;
}

.testimonial-style-one .inner-box .user-info .inner {
  position: relative;
  padding-left: 65px;
  min-height: 60px;
  float: right;
  display: inline-block;
}

.testimonial-style-one .inner-box .user-info .inner .author-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonial-style-one .inner-box .user-info .inner .author-image img {
  border-radius: 50%;
}

.testimonial-style-one .inner-box .user-info .inner h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  padding-top: 5px;
  display: inline-block;
  text-transform: capitalize;
}

.testimonial-style-one .inner-box .user-info .inner .designation {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

.testimonial-style-one .inner-box .user-info .quote {
  position: absolute;
  left: 0px;
  top: 10px;
  color: #efefef;
  font-size: 50px;
  line-height: 1em;
}

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

.testimonial-section .owl-dots {
  position: relative;
  text-align: center;
  padding: 40px 0px 0px;
}

.testimonial-section .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0px 4px;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.testimonial-section .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0px;
  border-radius: 50%;
  background: none;
  border: 1px solid #47546c;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.testimonial-section .owl-dots .owl-dot.active span,
.testimonial-section .owl-dots .owl-dot:hover span {
  background: #47546c;
  border-radius: 50%;
  border-color: #47546c;
}

.psize {
  width: 260px;
  text-align: center;
  font-size: large;
  font-family: "Poppins", sans-serif;
}

/***

====================================================================
Fact Counter style
====================================================================

***/

.fact-counter-section {
  position: relative;
  background-position: left bottom;
  background-size: cover;
  padding: 80px 0px 60px 0px;
  background-color: #3d4a66;
  background-repeat: repeat-x;
}

.fact-counter {
  position: relative;
}

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

.fact-counter .column .inner {
  position: relative;
  text-align: center;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fact-counter .count-outer {
  position: relative;
  font-size: 36px;
  line-height: 1em;
  font-weight: 500;
  margin: 0px 0px;
}

.fact-counter .count-outer .icon {
  position: relative;
  color: #f24a29;
  display: block;
  font-size: 70px;
  line-height: 1em;
  margin-bottom: 30px;
}

.fact-counter .count-outer .count-text {
  position: relative;
  font-weight: 700;
  color: #ffffff;
  font-size: 60px;
}

.fact-counter .column .counter-title {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 35px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
}

/***

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

***/

.news-section {
  position: relative;
  padding: 54px 0px 100px;
  /* 140 to 54 */
}

.news-section .btn-box {
  position: relative;
  margin-top: 40px;
}

.news-section .btn-box .theme-btn {
  padding-left: 40px;
  padding-right: 40px;
}

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

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

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

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

.news-block .inner-box .image .post-date {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #ffffff;
  font-size: 12px;
}

.news-block .inner-box .lower-box {
  position: relative;
  padding: 10px 22px 20px;
  box-shadow: -21px 17px 16px 0px #cccccc;
}

.news-block .inner-box .lower-box h3,
.news-block .inner-box .lower-box h5 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 31px;
}

.news-block .inner-box .lower-box h3 a,
.news-block .inner-box .lower-box h5 a {
  position: relative;
  color: #333333;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-box h3 a:hover {
  color: #47546c;
}

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

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

.news-block .inner-box .lower-box ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-box ul li a:hover {
  color: #47546c;
}

.news-block .inner-box .lower-box ul li a .icon {
  position: relative;
  margin-right: 10px;
}

/***

====================================================================
Sponsors Section
====================================================================

***/

.sponsors-section {
  position: relative;
}

.sponsors-section .sponsors-outer {
  position: relative;
  padding: 60px 0px 60px;
  border-top: 1px solid #e2e3e3;
}

.sponsors-section .owl-dots,
.sponsors-section .owl-nav {
  position: relative;
  display: none;
}

.sponsors-section .sponsors-outer .image-box {
  position: relative;
  text-align: center;
}

.sponsors-section .sponsors-outer .image-box img {
  max-width: 100%;
  width: auto;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sponsors-section.style-two .sponsors-outer {
  border: 0px;
  padding-top: 40px;
}

/***

====================================================================
Contact Info Section
====================================================================

***/

.contact-info-section {
  position: relative;
  padding: 90px 0px 60px;
  background-color: #3d4a66;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-info-section h2,
.contact-info-section h5 {
  position: relative;
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-section .info-blocks {
  position: relative;
  max-width: 576px;
  margin: 0 auto;
}

.contact-info-section .info-blocks .info-block {
  position: relative;
  margin-bottom: 30px;
}

.contact-info-section .info-blocks .info-block .inner {
  position: relative;
  text-align: center;
}

.contact-info-section .info-blocks .info-block .inner .icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  color: #035c73;
  border-radius: 5px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 25px;
  background-color: #ffffff;
}

.contact-info-section .info-blocks .info-block .inner .text {
  position: relative;
  color: #ffffff;
  font-size: 15px;
}

/***

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

***/

.main-footer {
  position: relative;
}

.main-footer .footer-upper {
  position: relative;
  padding: 80px 0px 40px;
}

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

.main-footer .footer-widget h2 {
  position: relative;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/*Logo Widget*/

.logo-widget {
  position: relative;
}

.logo-widget .logo {
  position: relative;
  margin-bottom: 15px;
}

.logo-widget .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

/*Links Widget*/

.main-footer .links-widget .list {
  position: relative;
}

.main-footer .links-widget .list li {
  position: relative;
  margin-bottom: 10px;
}

.main-footer .links-widget .list li a {
  position: relative;
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  padding-left: 15px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .links-widget .list li a:before {
  position: absolute;
  content: "\F0DA";
  left: 0px;
  top: -1px;
  color: #035c73;
  font-size: 14px;
  font-family: "FontAwesome";
}

.main-footer .links-widget .list li a:hover {
  color: #035c73;
}

/***

====================================================================
News letter Form
====================================================================

***/

.newsletter-form {
  position: relative;
}

/*subscribe widget*/

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

.main-footer .newsletter-widget .form-group input[type=text],
.main-footer .newsletter-widget .form-group input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 20px;
  height: 48px;
  font-size: 15px;
  color: #444444;
  border-radius: 4px;
  background-color: #f0f0f0;
  transition: all 300ms ease;
}

.main-footer .newsletter-widget .form-group input[type=text]:focus,
.main-footer .newsletter-widget .form-group input[type=email]:focus {
  border-color: #c75ea3;
}

.main-footer .footer-bottom {
  position: relative;
  padding: 24px 0px;
  text-align: center;
  background-color: #fafafa;
}

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

/*Services*/

.services-block-three {
  position: relative;
  margin-bottom: 40px;
}

.services-block-three .inner-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 70px 30px 70px;
  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;
}

.services-block-three .inner-box .icon-box {
  position: relative;
  width: 101px;
  height: 101px;
  margin: 0 auto;
  margin-bottom: 28px;
}

.services-block-three .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

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

.services-block-three .inner-box h3 a:hover {
  color: #035c73;
}

.services-block-three .inner-box .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
}

/***

====================================================================
Accordian Section
====================================================================

***/

.accordian-section {
  position: relative;
  padding: 140px 0px 140px;
}

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

.accordian-section .image-column .image {
  position: relative;
  margin: 40px 0px;
  padding-right: 50px;
}

.accordian-section .image-column .image img {
  position: absolute;
  right: 20px;
  top: -40px;
  max-width: none;
  display: block;
}

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

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

.accordian-section .content-column h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.accordian-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 25px;
}

/***

====================================================================
Accordion Style
====================================================================

***/

.accordion-box {
  position: relative;
}

.accordion-box .block {
  position: relative;
  padding: 12px 0px;
  margin-bottom: 10px;
  background-color: #ffffff;
  box-shadow: 0px 4px 14px 0px #ededed;
}

.accordion-box .block .acc-btn {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  padding: 0px 50px 0px 64px;
  transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.accordion-box .block .acc-btn .outer-icon {
  position: absolute;
  left: 30px;
  top: 0px;
  color: #f7502e;
}

.accordion-box .block .icon-outer {
  position: absolute;
  right: 25px;
  top: 2px;
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.accordion-box .block .icon-outer .icon {
  position: absolute;
  right: 0px;
  width: 25px;
  height: 25px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9em;
  text-align: center;
  border-radius: 50%;
  background-color: #d3d3d3;
}

.accordion-box .block .icon-outer .icon-plus {
  opacity: 1;
}

.accordion-box .block .icon-outer .icon-minus {
  opacity: 0;
  font-weight: 300;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-minus {
  opacity: 1;
  color: #ffffff;
  background-color: #e74c31;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-plus {
  opacity: 0;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content .content-text {
  padding-bottom: 6px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .content {
  position: relative;
  font-size: 14px;
  padding: 10px 30px 0px 64px;
}

.accordion-box .block .content .accordian-text {
  margin-bottom: 20px;
  line-height: 1.8em;
  font-size: 14px;
  color: #777777;
  margin-top: 10px;
}

.accordion-box .block .content p:last-child {
  margin-bottom: 0px;
}

/***

====================================================================
Project Section
====================================================================

***/

.project-section {
  position: relative;
  padding: 135px 0px 0px;
}

.project-section .filters {
  position: relative;
}

.project-section .filters .filter-tabs {
  position: relative;
  padding: 15px 40px;
  border-radius: 5px;
  margin-top: 4px;
  display: inline-block;
  background-color: #ffffff;
}

.project-section .filters .filter-tabs .filter {
  position: relative;
  color: #e4e8ec;
  font-size: 13px;
  margin: 0px 15px;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.project-section .filters .filter-tabs .filter.active,
.project-section .filters .filter-tabs .filter:hover {
  color: #f24a29;
}

.project-section .default-portfolio-item {
  padding: 0px;
}

.project-section.style-two {
  padding-top: 115px;
}

.project-section.style-two .filters {
  padding-bottom: 145px;
}

.services-block-four {
  position: relative;
  margin-bottom: 55px;
}

.services-block-four .inner-box {
  position: relative;
  display: block;
  padding: 78px 30px;
  border: 1px solid #ececec;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-four .inner-box .content {
  position: relative;
  padding-left: 80px;
}

.services-block-four .inner-box .content .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 65px;
  height: 65px;
}

.services-block-four .inner-box .content h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

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

.services-block-four .inner-box .content h3 a:hover {
  color: #f14929;
}

.services-block-four .inner-box .content .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 14px;
}

.services-block-four .inner-box .content .learn-more {
  position: relative;
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-four .inner-box .content .learn-more .fa {
  margin-left: 5px;
}

.services-block-four .inner-box .content .learn-more:hover {
  color: #f14929;
}

.services-block-four .inner-box:hover {
  border: 1px solid transparent;
  box-shadow: 0px 4px 19px 0px #f1f1f1;
}

/***

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

***/

.testimonial-section-two {
  position: relative;
  padding: 145px 0px 165px;
  background-color: #ff5d3d;
  background-position: right top;
  background-repeat: no-repeat;
}

.testimonial-section-two .sec-title .quote-icon {
  position: absolute;
  left: 50%;
  top: -18px;
  margin-left: -40px;
  text-align: center;
  font-size: 90px;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-section-two .inner-container {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
}

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

.testimonial-block-two .inner-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 25px 70px 40px;
  background-color: #ffffff;
  border-radius: 5px;
}

.testimonial-block-two .inner-box .author-image {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-bottom: 18px;
}

.testimonial-block-two .inner-box .author-name {
  position: relative;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial-block-two .inner-box .author-name span {
  font-weight: 600;
  color: #333333;
  font-size: 18px;
}

.testimonial-block-two .inner-box .text {
  position: relative;
  color: #8d8d8d;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7em;
}

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

.testimonial-section-two .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 100%;
  margin-top: -44px;
}

.testimonial-section-two .owl-nav .owl-prev,
.testimonial-section-two .owl-nav .owl-next {
  position: absolute;
  width: 27px;
  height: 86px;
  color: #ffffff;
  line-height: 86px;
  text-align: center;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-section-two .owl-nav .owl-prev {
  left: -60px;
}

.testimonial-section-two .owl-nav .owl-next {
  right: -60px;
}

/***

====================================================================
Price Section
====================================================================

***/

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

.price-section .row {
  margin: 0px -25px;
}

.price-section .price-block {
  padding: 0px 25px;
}

.price-block {
  position: relative;
  margin-bottom: 40px;
}

.price-block .inner-box {
  position: relative;
  display: block;
  border-radius: 8px;
  padding: 10px;
  background-color: #ffffff;
}

.price-block .inner-box .content {
  position: relative;
  border-radius: 8px;
  padding-bottom: 40px;
  border: 1px solid #ededed;
}

.price-block .inner-box .content .title {
  position: relative;
  color: #333333;
  font-size: 40px;
  line-height: 1em;
  font-weight: 400;
  padding: 32px 0px;
}

.price-block .inner-box .content .package {
  position: relative;
  padding: 12px 0px 6px;
  text-align: center;
  color: #f24a29;
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 40px;
  background-color: #333333;
}

.price-block .inner-box .content .package sub {
  position: relative;
  color: #f24a29;
  font-size: 25px;
  font-weight: 400;
  margin-right: 2px;
}

.price-block .inner-box .content .package sup {
  position: relative;
  font-size: 20px;
  margin-left: 3px;
  text-decoration: underline;
}

.price-block .inner-box .content .package span {
  position: relative;
  top: -10px;
  font-size: 15px;
  color: #f6f6f6;
  margin-left: 15px;
  text-transform: capitalize;
}

.price-block .inner-box .content ul {
  position: relative;
  margin-bottom: 30px;
}

.price-block .inner-box .content ul li {
  position: relative;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}

.price-block .inner-box .content ul li span {
  color: #333333;
  font-weight: 500;
}

/*Nes Style*/

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

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

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

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

.news-block-two .inner-box .image .post-date {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #ffffff;
  font-size: 12px;
}

.news-block-two .inner-box .lower-content {
  position: relative;
  padding: 32px 30px 35px;
  box-shadow: 0px 6px 16px 0px rgba(204, 204, 204, 0.4);
}

.news-block-two .inner-box .lower-content .upper-box {
  position: relative;
}

.news-block-two .inner-box .lower-content .upper-box .read-more {
  position: absolute;
  right: 0px;
  top: 5px;
  color: #e3e3e3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  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;
}

.news-block-two .inner-box .lower-content .upper-box .read-more:hover {
  background-color: #035c73;
  border-color: #035c73;
  color: #ffffff;
}

.news-block-two .inner-box .lower-content h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4em;
  padding-right: 125px;
}

.news-block-two .inner-box .lower-content h3 a {
  position: relative;
  color: #333333;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content h3 a:hover {
  color: #47546c;
}

.news-block-two .inner-box .lower-content ul {
  position: relative;
}

.news-block-two .inner-box .lower-content ul li {
  position: relative;
}

.news-block-two .inner-box .lower-content ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content ul li a:hover {
  color: #47546c;
}

.news-block-two .inner-box .lower-content ul li a .icon {
  position: relative;
  margin-right: 10px;
  color: #47546c;
}

/***

====================================================================
Page Title
====================================================================

***/

.page-title {
  position: relative;
  padding-top: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: #414e69;
  padding-bottom: 15px;
  z-index: 100;
  /* z-index: 100000; */
}

.page-title h1 {
  position: relative;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
  padding-bottom: 5px;
  margin-top: 60px;
  display: inline-block;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title .page-breadcrumb {
  position: relative;
}

.page-title .page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  -webkit-filter: contrast(1.75);
          filter: contrast(1.75);
}

.page-title .page-breadcrumb li:after {
  position: absolute;
  content: "/";
  right: -4px;
  top: 0px;
  color: #ffffff;
  font-family: "FontAwesome";
}

.page-title .page-breadcrumb li:last-child::after {
  display: none;
}

.page-title .page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}

.page-title .page-breadcrumb li a {
  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;
}

.page-title .page-breadcrumb li a:hover {
  color: #035c73;
}

/***

====================================================================
Team Section
====================================================================

***/

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

.team-block {
  position: relative;
  margin-bottom: 40px;
}

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

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

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

.team-block .inner-box .lower-box {
  position: relative;
  padding: 20px 0px;
  text-align: center;
  box-shadow: 0px 6px 16px 0px rgba(204, 204, 204, 0.4);
}

.team-block .inner-box .lower-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

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

.team-block .inner-box .lower-box h3 a:hover {
  color: #f24a29;
}

.project-section .portfolio-item-two {
  position: relative;
  padding: 0px;
}

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

.portfolio-item-two .inner-box .image {
  position: relative;
}

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

.portfolio-item-two .inner-box .image .overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  padding: 30px 30px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: rgba(43, 53, 73, 0.85);
}

.portfolio-item-two .inner-box:hover .image .overlay-box {
  opacity: 1;
}

.portfolio-item-two .inner-box .image .overlay-box .content {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-item-two .inner-box .image .overlay-box .content .link-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1em;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.portfolio-item-two .inner-box .image .overlay-box .content .link-btn:hover {
  color: #f24a29;
}

.portfolio-item-two .inner-box .image .overlay-box .content .inner-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content .title {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content h2 {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  margin-top: 8px;
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content h2 a {
  position: relative;
  color: #ffffff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.portfolio-item-two .inner-box .image .overlay-box .inner-content h2 a:hover {
  color: #f24a29;
}

.case-single-section {
  position: relative;
  padding-top: 150px;
}

.case-single-section .case-inner {
  position: relative;
}

.case-single-section .case-inner .case-images {
  position: relative;
}

.case-single-section .case-inner .case-images .row {
  position: relative;
  margin: 0px -15px;
}

.case-single-section .case-inner .case-images .image-column {
  position: relative;
  padding: 0px 15px;
}

.case-single-section .case-inner .case-images .image {
  position: relative;
  margin-bottom: 20px;
}

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

.case-single-section .case-inner .cases-title {
  position: relative;
  padding-bottom: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}

.case-single-section .case-inner .cases-title h2 {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: right;
  padding-right: 42px;
  border-right: 1px solid #cccccc;
}

.case-single-section .case-inner .cases-title .info-column {
  position: relative;
}

.case-single-section .case-inner .cases-title .info-column .inner {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.case-single-section .case-inner .cases-title .info-column .inner h3 {
  position: relative;
  color: #333333;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
}

.case-single-section .case-inner .cases-title .info-column .inner .text {
  color: #777777;
  font-size: 15px;
}

.case-single-section .case-inner .bold-text {
  position: relative;
  color: #333333;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.case-single-section .case-inner .text {
  position: relative;
}

.case-single-section .case-inner .text p {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 0px;
}

.case-single-section .case-inner .text .two-column {
  position: relative;
  margin-top: 32px;
  padding-bottom: 30px;
}

.case-single-section .case-inner .text h3 {
  position: relative;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.case-single-section .case-inner .text .two-column p {
  margin-bottom: 20px;
}

.case-single-section .case-inner .text .two-column .image-column {
  position: relative;
}

.case-single-section .case-inner .text .two-column .image-column .row {
  position: relative;
  margin: 0px -5px;
}

.case-single-section .case-inner .text .two-column .image-column .column {
  padding: 0px 5px;
}

.case-single-section .case-inner .text .two-column .image-column .image {
  position: relative;
  margin-bottom: 10px;
}

.case-single-section .case-inner .text .two-column .image-column .image img {
  width: 100%;
  display: block;
}

.related-projects {
  position: relative;
  padding-top: 30px;
  padding-bottom: 150px;
  border-top: 1px solid #cccccc;
}

.related-projects h3 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 40px;
}

.related-projects .portfolio-item-two {
  padding: 0px;
}

/***

====================================================================
Sidebar Page
====================================================================

***/

.sidebar-page-container {
  position: relative;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 70px 0px 70px;
}

.sidebar-page-container .sidebar-side,
.sidebar-page-container .content-side {
  margin-bottom: 30px !important;
}

.sidebar-page-container .sidebar {
  position: relative;
}

/*Sidebar Title*/

.sidebar-title {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-title h2 {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
  line-height: 1.4em;
  text-transform: capitalize;
}

/*Sidebar Widget*/

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

/*Search Form Widget*/

.sidebar .search-box .form-group {
  position: relative;
  margin: 0px;
}

.sidebar .search-box .form-group input[type=text],
.sidebar .search-box .form-group input[type=search] {
  position: relative;
  line-height: 40px;
  background: #ffffff;
  color: #222222;
  display: block;
  font-size: 15px;
  width: 100%;
  height: 65px;
  border: 1px solid #f6f6f6;
  padding: 10px 50px 10px 30px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type=text]:focus,
.sidebar .search-box .form-group input[type=search]:focus {
  border-color: #035c73;
}

.sidebar .search-box .form-group button {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 64px;
  width: 63px;
  line-height: 46px;
  text-align: center;
  display: block;
  font-size: 24px;
  color: #ffffff;
  background: #333333;
  font-weight: normal;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input:focus + button,
.sidebar .search-box .form-group button:hover {
  background-color: #035c73;
}

.sidebar-widget .widget-content {
  position: relative;
  padding: 30px 40px 20px;
  background-color: #ffffff;
}

/*Blog Category*/

.blog-cat {
  position: relative;
}

.blog-cat li {
  position: relative;
  margin-bottom: 15px;
}

.blog-cat li a {
  position: relative;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 15px;
  display: block;
  border-bottom: 1px solid #dfdfdf;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.blog-cat li a span {
  float: right;
  color: #333333;
  font-weight: 600;
}

.blog-cat li a:hover {
  color: #035c73;
}

/*Post Widget*/

.sidebar .popular-posts .post {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #dfdfdf;
}

.sidebar .popular-posts .post:last-child {
  border: 0px;
  margin-bottom: 0px;
  padding-bottom: 5px;
}

.sidebar .popular-posts .post .text {
  position: relative;
  font-size: 14px;
  margin: 0px 0px 0px;
  font-weight: 600;
  color: #333333;
  text-transform: capitalize;
}

.sidebar .popular-posts .post .text a {
  color: #333333;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post a,
.sidebar .popular-posts .post a:hover {
  color: #035c73;
}

.sidebar .popular-posts .post-info {
  font-size: 12px;
  color: #777777;
  margin-top: 6px;
  font-weight: 300;
}

/*Popular Tags*/

.sidebar .popular-tags a {
  position: relative;
  display: inline-block;
  line-height: 24px;
  padding: 14px 20px 14px;
  margin: 0px 6px 10px 0px;
  color: #777777;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  background: #ffffff;
  text-transform: capitalize;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .popular-tags a:hover {
  background-color: #035c73;
  color: #ffffff;
}

.blog-classic,
.blog-grid,
.our-shop {
  padding-bottom: 20px;
  margin-bottom: 40px;
  padding-right: 20px;
  border-bottom: 1px solid #cccccc;
}

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

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

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

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

.news-block-three .inner-box .image .post-date {
  position: absolute;
  left: 22px;
  top: 22px;
  color: #ffffff;
  font-size: 12px;
}

.news-block-three .inner-box .lower-box {
  position: relative;
  margin-top: 20px;
  padding: 25px 30px 25px;
  background-color: #ffffff;
}

.news-block-three .inner-box .lower-box h3 {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

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

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

.news-block-three .inner-box .lower-box .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 18px;
}

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

.news-block-three .inner-box .lower-box ul li {
  position: relative;
}

.news-block-three .inner-box .lower-box ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-three .inner-box .lower-box ul li a:hover {
  color: #47546c;
}

.news-block-three .inner-box .lower-box ul li a .icon {
  position: relative;
  margin-right: 10px;
  font-size: 17px;
  color: #f0402f;
}

/***

====================================================================
Styled Pagination
====================================================================

***/

.styled-pagination {
  position: relative;
  margin-bottom: 30px;
}

.styled-pagination ul {
  position: relative;
  display: inline-block;
}

.styled-pagination li {
  position: relative;
  display: block;
  float: left;
  margin: 0px 8px 8px 0px;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  line-height: 18px;
  padding: 7px 5px;
  height: 32px;
  font-size: 13px;
  min-width: 32px;
  color: #333333;
  font-weight: 300;
  text-align: center;
  background: #e2e2e2;
  text-transform: capitalize;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}

.styled-pagination li a.next,
.styled-pagination li a.prev {
  color: #333333;
  padding: 6px 20px;
  border: 0px;
  font-weight: 300;
  line-height: 22px;
  text-transform: capitalize;
  background-color: #e2e2e2;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
  color: #ffffff;
  background-color: #035c73;
}

/*News Style*/

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

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

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

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

.news-block-four .inner-box .image .post-date {
  position: absolute;
  left: 18px;
  top: 12px;
  color: #ffffff;
  font-size: 12px;
}

.news-block-four .inner-box .lower-box {
  position: relative;
  margin-top: 10px;
  padding: 40px 20px 15px;
  background-color: #ffffff;
  box-shadow: 0px 6px 16px 0px #cccccc;
}

.news-block-four .inner-box .lower-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.news-block-four .inner-box .lower-box h3 a {
  position: relative;
  color: #333333;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-four .inner-box .lower-box h3 a:hover {
  color: #47546c;
}

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

.news-block-four .inner-box .lower-box ul li {
  position: relative;
}

.news-block-four .inner-box .lower-box ul li a {
  position: relative;
  color: #aaaaaa;
  font-size: 13px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-four .inner-box .lower-box ul li a:hover {
  color: #47546c;
}

.news-block-four .inner-box .lower-box ul li a .icon {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  color: #035c73;
  line-height: 1em;
}

.blog-single {
  position: relative;
}

.blog-single .inner-box {
  position: relative;
  display: block;
}

.blog-single .inner-box .image {
  position: relative;
  margin-bottom: 20px;
}

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

.blog-single .inner-box .image .post-date {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #ffffff;
  font-size: 12px;
}

.blog-single .inner-box .lower-content {
  position: relative;
}

.blog-single .inner-box .lower-content .content {
  position: relative;
  padding: 25px 30px 40px;
  background-color: #ffffff;
}

.blog-single .inner-box .lower-content h2 {
  position: relative;
  font-size: 25px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}

.blog-single .inner-box .lower-content .text {
  position: relative;
  margin-bottom: 30px;
}

.blog-single .inner-box .lower-content .text p {
  /* position:relative;
  color:#777777;
  font-size:14px;
  line-height:1.8em;
  margin-bottom:11px;    */
  /* blogs haru ma ni change hunxa */
  position: relative;
  /* color: #777777; */
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 1rem;
  font-size: 18px;
  margin: 0 0 10px;
}

.blog-single .inner-box .lower-content .text .p1 {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 11px;
  /* blogs haru ma ni change hunxa */
}

.blog-single .inner-box .lower-content .post-meta {
  position: relative;
}

.blog-single .inner-box .lower-content .post-meta li {
  position: relative;
  font-weight: 300;
  color: #aaaaaa;
  font-size: 13px;
}

.blog-single .inner-box .lower-content .post-meta li .icon {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  color: #035c73;
  line-height: 1em;
}

.blog-single .inner-box .lower-content blockquote {
  position: relative;
  margin-top: 50px;
  border: none;
  padding: 0px;
  padding-left: 35px;
  margin-bottom: 10px;
  padding-right: 20px;
  background-color: #ffffff;
}

.blog-single .inner-box .lower-content blockquote .quote-icon {
  position: absolute;
  left: 35px;
  top: 0px;
  color: #ffffff;
  width: 85px;
  font-size: 40px;
  line-height: 1em;
  padding: 80px 0px;
  text-align: center;
  float: left;
  background-color: #333333;
}

.blog-single .inner-box .lower-content blockquote .text {
  color: #aaaaaa;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7em;
  margin-left: 120px;
  float: left;
  padding: 49px 0px;
  margin-bottom: 0px;
}

/*post share options*/

.blog-single .post-share-options {
  position: relative;
  padding: 20px 0px 6px;
}

.blog-single .post-share-options .tags a {
  position: relative;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
}

.blog-single .post-share-options .tags span {
  position: relative;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  margin-right: 5px;
}

.blog-single .post-share-options .tags {
  position: relative;
  color: #07102d;
  font-size: 16px;
  font-weight: 700;
}

/***

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

***/

.sidebar-page-container .comments-area {
  position: relative;
  margin-bottom: 50px;
  margin-top: 100px;
}

.sidebar-page-container .group-title {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-page-container .group-title h2 {
  position: relative;
  font-size: 25px;
  color: #333333;
  font-weight: 500;
  padding-bottom: 0px;
  text-transform: capitalize;
}

.sidebar-page-container .comments-area .comment-box {
  position: relative;
  border-bottom: 1px solid #f1f2f2;
  background-color: #ffffff;
  padding: 55px 45px 40px 28px;
  transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment {
  position: relative;
  font-size: 14px;
  padding-left: 115px;
}

.sidebar-page-container .comments-area .comment .comment-inner {
  position: relative;
}

.sidebar-page-container .comments-area .comment .comment-reply {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 32px;
  border-radius: 4px;
  background-color: #035c73;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 300ms ease;
  font-family: "Poppins", sans-serif;
}

.sidebar-page-container .comments-area .comment-box .author-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  margin-bottom: 20px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img {
  width: 94px;
  display: block;
}

.sidebar-page-container .comments-area .comment-info {
  color: #3e5773;
  line-height: 24px;
  font-size: 13px;
}

.sidebar-page-container .comments-area .comment-box strong {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  line-height: 16px;
  text-transform: capitalize;
}

.sidebar-page-container .comments-area .comment-box .text {
  color: #777777;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.8em;
}

.sidebar-page-container .comments-area .comment-info .comment-time {
  position: relative;
  font-size: 14px;
  color: #777777;
  font-weight: 300;
}

.sidebar-page-container .comments-area .comment-box .theme-btn {
  padding: 5px 30px;
  font-size: 12px;
  border: 1px solid #fbca00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-tabs .prod-tabs .tabs-content .tab .comments-area {
  margin-top: 0px;
}

/***

====================================================================
Comment Form
====================================================================

***/

.comment-form {
  position: relative;
  margin-bottom: 60px;
  margin-top: 70px;
}

.comment-form form {
  position: relative;
  padding: 86px 100px 50px;
  background-color: #ffffff;
}

.comment-form .form-group {
  margin-bottom: 36px;
}

.comment-form .form-group input[type=text],
.comment-form .form-group input[type=email],
.comment-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 10px 28px;
  height: 50px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 300;
  background-color: #f8f8f8;
  border: 2px solid #ededed;
  transition: all 300ms ease;
}

.comment-form .form-group input[type=text]:focus,
.comment-form .form-group input[type=email]:focus,
.comment-form .form-group textarea:focus {
  border-color: #035c73;
}

/***

====================================================================
Error Page
====================================================================

***/

.error-section {
  position: relative;
  text-align: center;
  padding: 180px 0px 180px;
}

.error-section .error-image {
  position: relative;
  text-align: center;
}

.error-section .error-image .image {
  position: relative;
  max-width: 100%;
  display: inline-block;
}

.error-section h3 {
  position: relative;
  color: #333333;
  font-weight: 700;
  font-size: 30px;
  margin-top: 10px;
  line-height: 1.2em;
  margin-bottom: 30px;
}

.error-section .text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 30px;
  color: #777777;
}

.error-search-box {
  position: relative;
  margin-top: 12px;
  width: 360px;
  display: inline-block;
}

.error-search-box .form-group {
  position: relative;
  margin: 0px;
}

.error-search-box .form-group input[type=text],
.error-search-box .form-group input[type=search] {
  position: relative;
  line-height: 42px;
  padding: 10px 50px 10px 28px;
  border: 1px solid #ebebeb;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 65px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.error-search-box .form-group input:focus {
  border-color: #035c73;
}

/***

====================================================================
Contact Section
====================================================================

***/

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

.contact-section .column h2 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
  text-transform: capitalize;
}

.contact-section .text {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 1.9em;
  margin-bottom: 30px;
}

/***

====================================================================
Contact Form
====================================================================

***/

.contact-form {
  position: relative;
  padding-right: 15px;
  margin-bottom: 30px;
}

.contact-form .row {
  position: relative;
  margin: 0px -8px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 8px;
}

.contact-form .form-group input[type=text],
.contact-form .form-group input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 27px;
  padding: 12px 20px;
  height: 54px;
  font-size: 13px;
  font-weight: 400;
  background-color: #fbfbfb;
  border: 2px solid #f1f1f1;
  transition: all 300ms ease;
}

.contact-form .form-group input[type=text]:focus,
.contact-form .form-group input[type=email]:focus,
.contact-form .form-group textarea:focus {
  border-color: #035c73;
}

.contact-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 32px;
  padding: 12px 20px;
  height: 110px;
  resize: none;
  font-size: 13px;
  background-color: #fbfbfb;
  border: 2px solid #f1f1f1;
  transition: all 300ms ease;
}

.contact-form button {
  position: relative;
  padding: 10px 34px;
  margin-top: 15px;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ff0000 !important;
}

.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0px 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff0000;
  font-weight: 500;
}

.contact-section .contact-info {
  position: relative;
}

.contact-section .contact-info li {
  position: relative;
  margin-bottom: 37px;
  color: #777777;
  font-size: 14px;
  padding-left: 85px;
  padding-top: 7px;
}

.contact-section .contact-info li span {
  position: relative;
  color: #222222;
}

.contact-section .contact-info li .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 58px;
  color: #ffffff;
  text-align: center;
  line-height: 58px;
  font-size: 32px;
  z-index: 1;
  background-color: #333333;
}

.contact-section .contact-info li .icon-box:after {
  position: absolute;
  content: "";
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid #cccccc;
}

/*Map Data*/

.map-data {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
}

.map-data h6 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  color: #121212;
}

.map-canvas {
  height: 540px;
}

/*Shop Item*/

.shop-item {
  position: relative;
  margin-bottom: 80px;
}

.shop-item .inner-box {
  position: relative;
  display: block;
}

.shop-item .inner-box .image {
  position: relative;
}

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

.shop-item .inner-box .lower-content {
  position: relative;
  margin-top: 6px;
  padding: 22px 18px 14px;
  background-color: #ffffff;
}

.shop-item .inner-box .lower-content h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.shop-item .inner-box .lower-content h3 a {
  color: #333333;
  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;
}

.shop-item .inner-box .lower-content h3 a:hover {
  color: #035c73;
}

.shop-item .inner-box .lower-content .price {
  position: relative;
}

.shop-item .inner-box .lower-content .price li {
  position: relative;
  font-size: 15px;
  color: #035c73;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.shop-item .inner-box .lower-content .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.shop-item .inner-box .lower-content .rating {
  position: relative;
}

.shop-item .inner-box .lower-content .rating .fa {
  position: relative;
  color: #035c73;
}

.shop-item .inner-box .lower-content .rating .fa.light {
  color: #aaaaaa;
}

.price-filter-widget .widget-content {
  padding: 48px 42px 50px;
}

/*Sidebar Range slider */

.range-slider-one {
  position: relative;
  min-height: 48px;
}

.range-slider-one .title {
  position: relative;
  float: left;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
}

.range-slider-one .title:before {
  position: absolute;
  content: "$";
  right: -14px;
  top: 0px;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
}

.range-slider-one .input {
  float: right;
  left: 8px;
  max-width: 75px;
  padding-left: 8px;
  margin-top: 8px;
  position: relative;
}

.range-slider-one .input input {
  background: none;
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  width: auto;
  text-align: left;
}

.range-slider-one .ui-widget.ui-widget-content {
  height: 4px;
  border: none;
  margin-bottom: 35px;
  background: #dfdfdf;
}

.range-slider-one .ui-slider .ui-slider-range {
  top: 0px;
  height: 4px;
  background: #035c73;
}

.range-slider-one .ui-state-default,
.range-slider-one .ui-widget-content .ui-state-default {
  top: -3px;
  width: 10px;
  height: 10px;
  border: 1px solid #dfdfdf;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.range-slider-one .theme-btn {
  padding: 4px 22px;
}

/*Sidebar Realated Posts */

.sidebar .related-posts .post {
  position: relative;
  padding: 0px 0px;
  padding-left: 110px;
  min-height: 90px;
  margin-bottom: 20px;
  padding-top: 9px;
}

.sidebar .related-posts .post:last-child {
  margin-bottom: 0px;
}

.sidebar .related-posts .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 95px;
}

.sidebar .related-posts .post .post-thumb img {
  display: block;
  width: 100%;
}

.sidebar .related-posts .post h4 {
  top: -2px;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  text-transform: capitalize;
}

.sidebar .related-posts .post h4 a {
  color: #333333;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .related-posts .post a,
.sidebar .related-posts .post a:hover {
  color: #035c73;
}

.sidebar .related-posts .post .price {
  position: relative;
}

.sidebar .related-posts .post .price li {
  position: relative;
  font-size: 15px;
  color: #035c73;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}

.sidebar .related-posts .post .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.sidebar .related-posts .post .rating {
  margin-bottom: 3px;
}

.sidebar .related-posts .post .rating .fa {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  color: #035c73;
  margin-right: 3px;
}

.sidebar .related-posts .post .price li {
  position: relative;
  font-size: 15px;
  color: #035c73;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}

.sidebar .related-posts .post .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.sidebar .related-posts .post .rating {
  margin-bottom: 3px;
}

.sidebar .related-posts .post .rating .fa {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  color: #035c73;
  margin-right: 3px;
}

.sidebar .related-posts .post .rating .fa-star.light {
  color: #aaaaaa;
}

.product-details .basic-details {
  position: relative;
  margin-bottom: 30px;
}

.product-details .basic-details .details-header h4 a {
  color: #333333;
}

.product-details .image-column .image-box img {
  position: relative;
  display: block;
  width: 100%;
  background-color: #f7f7f7;
}

.product-details .basic-details .details-header .rating .fa {
  display: inline-block;
  margin-right: 2px;
}

.product-details .basic-details .details-header h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 35px 0px 5px;
  line-height: 1.4em;
  color: #222222;
}

.product-details .basic-details .details-header h4 a {
  color: #333333;
}

.product-details .basic-details .details-header .rating {
  font-size: 16px;
  color: #035c73;
  margin-bottom: 15px;
  display: inline-block;
}

.product-details .basic-details .details-header .rating .fa {
  display: inline-block;
  margin-right: 2px;
}

.product-details .basic-details .details-header .rating .fa.dark {
  color: #aaaaaa;
}

.product-details .basic-details .details-header .reviews {
  position: relative;
  margin-left: 8px;
  display: inline-block;
}

.product-details .basic-details .details-header .reviews .separater {
  color: #acacac;
  margin: 0px 6px;
}

.product-details .basic-details .details-header .reviews a {
  position: relative;
  color: #aaaaaa;
  font-size: 12px;
}

.product-details .basic-details .details-header .price {
  position: absolute;
  right: 0px;
  top: 6px;
}

.product-details .basic-details .details-header .price li {
  position: relative;
  font-size: 18px;
  color: #035c73;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.product-details .basic-details .details-header .price li.total-price {
  text-decoration: line-through;
  color: #aaaaaa;
}

.product-details .basic-details .prod-info {
  margin-bottom: 15px;
  line-height: 1.6em;
  font-size: 13px;
}

.product-details .basic-details .prod-info strong {
  font-weight: 700;
  color: #111111;
}

.product-details .basic-details .text {
  margin-bottom: 25px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7em;
}

.product-details .basic-details .item-quantity .field-label {
  /* float:left; */
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  display: inline-block;
  padding-right: 20px;
}

.product-details .basic-details .quantity-spinner,
.cart-section input.quantity-spinner {
  line-height: 24px;
  padding: 10px 15px !important;
  height: 46px !important;
  box-shadow: none !important;
}

.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn,
.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 11px 10px;
  background: #f4f5f6;
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-section .bootstrap-touchspin .input-group-btn-vertical i {
  top: 6px;
}

.product-details .basic-details .item-quantity {
  position: relative;
  width: 85px;
  margin-bottom: 30px;
}

.product-details .basic-details .item-quantity .field-label {
  float: left;
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  display: inline-block;
  padding-right: 20px;
}

.product-details .basic-details .quantity-spinner,
.cart-table input.quantity-spinner {
  font-size: 18px;
  line-height: 24px;
  padding: 10px 15px !important;
  height: 50px !important;
  box-shadow: none !important;
}

.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn,
.cart-table .bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 12px 10px;
  background: #f4f5f6;
  border-radius: 0px;
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-table .bootstrap-touchspin .input-group-btn-vertical i {
  top: 8px;
}

.product-details .basic-details .add-to-cart {
  margin-right: 5px;
}

/***

====================================================================
Product Tabs Style
====================================================================

***/

.product-info-tabs {
  position: relative;
}

.product-info-tabs .prod-tabs {
  position: relative;
}

.product-info-tabs .prod-tabs .tab-btns {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 0px;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn {
  position: relative;
  top: 1px;
  display: block;
  float: left;
  margin-right: 8px;
  font-size: 13px;
  color: #333333;
  padding: 13px 60px;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  z-index: -1;
  background-color: #ffffff;
  transform: skewX(20deg);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn:first-child {
  margin-left: -10px;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn:hover:before,
.product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn:before {
  background-color: #f7502e;
}

.product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn,
.product-info-tabs .prod-tabs .tab-btns .tab-btn:hover {
  color: #ffffff;
}

.product-info-tabs .prod-tabs .tabs-content {
  position: relative;
}

.product-info-tabs .prod-tabs .tabs-content .tab {
  position: relative;
  display: none;
}

.product-info-tabs .prod-tabs .tabs-content .tab.active-tab {
  display: block;
}

.product-info-tabs .prod-tabs .tabs-content .content {
  position: relative;
  padding: 40px 40px;
  background-color: #ffffff;
}

.product-info-tabs .prod-tabs .tabs-content .content .text {
  position: relative;
}

.product-info-tabs .prod-tabs .tabs-content .content .text p {
  position: relative;
  color: #777777;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 20px;
}

.product-info-tabs .prod-tabs .tabs-content .content .text p:last-child {
  margin-bottom: 0px;
}

.prod-tabs .tabs-content .tab .title {
  position: relative;
  color: #3d3d3d;
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 25px;
}

/*Comment Form*/

.shop-comment-form {
  position: relative;
}

.shop-comment-form h2 {
  position: relative;
  color: #222222;
  font-size: 26px;
  margin-bottom: 15px;
}

.shop-comment-form .separator {
  position: relative;
  width: 60px;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 30px;
  background-color: #dedede;
}

.shop-comment-form .separator:after {
  position: absolute;
  content: "";
  left: 100%;
  top: -4px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background-color: #f6f6f6;
  border: 1px solid #e6e6e6;
}

.shop-comment-form .group-title {
  margin-bottom: 20px;
}

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

.shop-comment-form .rating-box .text {
  position: relative;
  font-size: 16px;
  color: #848484;
  margin-bottom: 10px;
}

.shop-comment-form .rating-box .rating {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ebebeb;
}

.shop-comment-form .rating-box .rating:last-child {
  border-right: 0px;
}

.shop-comment-form .rating-box .rating .fa {
  position: relative;
  margin-right: 2px;
  display: inline-block;
}

.shop-comment-form .rating-box .rating a {
  position: relative;
  color: #d6d6d6;
  font-size: 14px;
  display: inline-block;
}

.shop-comment-form .rating-box .rating a:hover {
  color: #fc7837;
}

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

.shop-comment-form .form-group label {
  position: relative;
  color: #727272;
  font-size: 16px;
  font-weight: 400;
}

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

.shop-comment-form .form-group input[type=text],
.shop-comment-form .form-group input[type=password],
.shop-comment-form .form-group input[type=tel],
.shop-comment-form .form-group input[type=email],
.shop-comment-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 15px;
  border: 1px solid #efefef;
  height: 50px;
  color: #848484;
  font-weight: 300;
  background: #ffffff;
  transition: all 300ms ease;
}

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

.shop-comment-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 10px 15px;
  color: #848484;
  border: 1px solid #efefef;
  height: 105px;
  font-weight: 300;
  background: #ffffff;
  resize: none;
  transition: all 300ms ease;
}

.shop-comment-form button {
  position: relative;
  margin-top: 10px;
}

.shop-comment-form input:focus,
.shop-comment-form select:focus,
.shop-comment-form textarea:focus {
  border-color: #f7502e;
}

/***

====================================================================
Related Products
====================================================================

***/

.related-products {
  position: relative;
  margin-top: 90px;
}

.related-products h2 {
  position: relative;
  color: #333333;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 35px;
}

/***

====================================================================
Cart Section style
====================================================================

***/

.cart-section {
  position: relative;
}

.cart-section .cart-outer {
  position: relative;
}

.cart-section .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.cart-section .cart-table {
  width: 100%;
  min-width: 750px;
}

.cart-table .cart-header {
  position: relative;
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  background: #333333;
  color: #1f1f1f;
}

.cart-table thead tr th {
  line-height: 24px;
  padding: 20px 15px;
  min-width: 120px;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  text-transform: capitalize;
}

.cart-table thead tr th.prod-column {
  text-align: left;
  padding-left: 40px;
}

.cart-table tbody tr td {
  line-height: 24px;
  padding: 40px 30px 40px;
  min-width: 100px;
  background-color: #ffffff;
}

.cart-table tbody tr .qty {
  width: 140px;
  padding-right: 40px;
}

.cart-table tbody tr .qty .quantity-spinner {
  background: #f5f5f5;
}

.cart-table tbody tr .prod-column .column-box {
  position: relative;
  min-height: 65px;
  padding-left: 90px;
  padding-top: 20px;
  text-align: left;
}

.column.default-column .cart-table tbody tr .qty {
  width: 110px;
  padding-right: 20px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb {
  position: absolute;
  width: 70px;
  border: 1px solid #f0f0f0;
  left: 0px;
  top: 0px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img {
  display: block;
  max-width: 100%;
}

.cart-table tbody tr .prod-column .column-box h3 {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 400;
  margin-bottom: 5px;
}

.cart-table tbody tr .sub-total {
  font-weight: 400;
  color: #f0402f;
  font-size: 14px;
}

.cart-table tbody tr td {
  vertical-align: middle;
}

.cart-table tbody tr td.price {
  font-size: 14px;
  font-weight: 400;
  color: #2c2c2c;
  padding-left: 15px;
}

.cart-table tbody tr td .quantity-spinner {
  padding: 5px 0px 5px 20px;
  line-height: 24px;
  height: 34px;
  display: block;
  width: 100%;
  position: relative;
}

.cart-table tbody .available-info {
  position: relative;
  padding-left: 50px;
  color: #727272;
  font-size: 16px;
}

.cart-table tbody .available-info .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  background: #3e4494;
  border-radius: 50%;
}

.cart-section .coupon-outer {
  position: relative;
  padding: 33px 30px 15px;
  background-color: #ffffff;
}

.cart-section .coupon-outer:before {
  position: absolute;
  content: "";
  left: 30px;
  width: 92%;
  top: 0px;
  height: 1px;
  bottom: 0px;
  background-color: #d3d3d3;
}

.cart-section .coupon-outer .cart-btn {
  font-size: 13px;
  padding: 10px 28px;
  font-weight: 700;
  transition: all 500ms ease;
}

.cart-section .apply-coupon {
  position: relative;
}

.cart-section .apply-coupon .form-group {
  position: relative;
  float: left;
  margin-right: 15px;
}

.cart-section .apply-coupon .form-group label {
  color: #333333;
  font-size: 15px;
  float: left;
  font-weight: 600;
  margin-top: 13px;
}

.cart-section .apply-coupon .form-group .coupon-btn {
  padding: 7px 18px;
  line-height: 30px;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
  border-color: #efefef;
  background-color: #efefef;
}

.cart-section .apply-coupon .form-group input[type=text] {
  display: block;
  line-height: 26px;
  padding: 12px 20px;
  height: 50px;
  width: 100px;
  font-size: 15px;
  background: none;
  float: left;
}

.cart-section .estimate-form {
  position: relative;
}

.cart-section .sec-title {
  margin-bottom: 25px;
}

.cart-section .sec-title h2 {
  font-size: 26px;
  color: #222222;
}

.cart-section .estimate-form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.cart-section .estimate-form .row .form-group {
  padding: 0px 7px !important;
  margin-bottom: 30px;
}

.cart-total-block {
  position: relative;
  margin-top: 54px;
  margin-bottom: 30px;
}

.cart-total-block h2 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 28px;
}

.cart-total-block .inner-block {
  position: relative;
  max-width: 460px;
  padding: 40px 45px;
  margin-bottom: 50px;
  background-color: #ffffff;
}

.cart-section .totals-table {
  position: relative;
  border: 1px solid #dcdcdc;
}

.cart-section .totals-table .col {
  position: relative;
  display: block;
  float: left;
  padding: 15px 15px;
  line-height: 24px;
  width: 35%;
  font-weight: 400;
  font-size: 14px;
  color: #aaaaaa;
  text-align: center;
}

.cart-section .totals-table .col.total-prices {
  color: #f0402f;
}

.cart-section .totals-table .col-title {
  font-size: 14px;
  width: 65%;
  color: #aaaaaa;
  font-weight: 400;
  text-align: left;
  border-right: 1px solid #cecece;
}

.cart-section .totals-table li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.cart-section .totals-table li:last-child {
  border-bottom: none;
}

.checkout-page .default-links {
  position: relative;
  margin-bottom: 50px;
}

.checkout-page .default-links li {
  margin-bottom: 25px;
  line-height: 24px;
  padding: 16px 24px;
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #d3d3d3;
}

.checkout-page .default-links li a {
  color: #035c73;
}

/*CheckOut Form*/

.checkout-form {
  position: relative;
}

.checkout-form h2 {
  position: relative;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 18px;
}

.checkout-form .column .row {
  margin: 0px -10px;
}

.checkout-form .column .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}

.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=password],
.checkout-form input[type=tel],
.checkout-form input[type=number],
.checkout-form input[type=url],
.checkout-form select,
.checkout-form textarea {
  position: relative;
  display: block;
  width: 100%;
  background: #ffffff;
  line-height: 20px;
  padding: 12px 18px;
  height: 46px;
  color: #aaaaaa;
  font-size: 12px;
  border: 1px solid transparent;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.checkout-form textarea {
  resize: none;
  padding: 22px 22px;
  height: 406px !important;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: #035c73;
}

.checkout-page .check-box {
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  padding-top: 5px;
}

.checkout-page .check-box label {
  position: relative;
  font-weight: 400;
  padding: 0px;
  font-size: 14px;
  cursor: pointer;
  color: #035c73;
}

.checkout-page .notes {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 12px;
}

/*Custom Select*/

.form-group .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 14px;
  font-style: normal;
  height: 45px;
  padding: 10px 18px;
  line-height: 24px;
  color: #333333;
  border-radius: 0px;
  border: 1px solid transparent;
  background: #ffffff;
}

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

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

.ui-widget.ui-widget-content {
  border: 1px solid #e0e0e0;
}

.ui-menu .ui-menu-item {
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.order-total-block {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
}

.order-total-block h2 {
  position: relative;
  color: #333333;
  font-weight: 500;
  margin-bottom: 32px;
  font-size: 20px;
}

.order-total-block ul {
  position: relative;
  border: 1px solid #f1f1f1;
}

.order-total-block ul li:nth-child(2n+1) {
  background-color: #ffffff;
}

.order-total-block ul li {
  position: relative;
  font-size: 13px;
}

.order-total-block ul li .col-title {
  position: relative;
  color: #333333;
  font-size: 13px;
}

.order-total-block ul .col {
  padding: 12px 20px;
  display: block;
}

.order-total-block ul .col.left {
  width: 65%;
  float: left;
}

/*Payment Option*/

.checkout-page .payment-options {
  position: relative;
  padding: 45px 30px 50px;
  background-color: #ffffff;
}

.checkout-page .payment-options ul {
  margin-bottom: 30px;
}

.checkout-page .payment-options li {
  position: relative;
  margin-bottom: 15px;
}

.checkout-page .payment-options li .radio-option {
  position: relative;
}

.checkout-page .payment-options li .radio-option label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #333333;
  cursor: pointer;
}

.checkout-page .payment-options li .radio-option label strong {
  font-weight: 400;
  color: #212734;
  font-size: 18px;
}

.checkout-page .payment-options li .radio-option label strong a {
  font-size: 16px;
  margin-left: 30px;
  text-decoration: underline;
}

.checkout-page .payment-options li .radio-option input[type=radio] {
  position: absolute;
  left: 0px;
  top: 3px;
}

.checkout-page .payment-options li .radio-option label .small-text {
  display: block;
  padding-top: 15px;
  letter-spacing: 0px;
  text-transform: none;
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  line-height: 1.9em;
}

.checkout-page .payment-options li.inner-boxed .radio-option {
  margin-left: 30px;
}

.checkout-page .payment-options li.inner-boxed .radio-option input[type=radio] {
  top: 0px;
}

.checkout-page .payment-options li.inner-boxed .radio-option label {
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.checkout-page .payment-options .place-order {
  margin-left: 30px;
}

.news {
  margin-top: -16px;
  margin-bottom: 16px;
  font-size: 10px;
}

.tp {
  top: 16%;
}

.cng {
  color: white;
}

.cng {
  color: white;
  bottom: 10px;
}

.gptchange {
  padding-top: 40px;
}

.gbchange {
  bottom: 49px;
}

.ghchange {
  height: 657px;
}

.fc {
  font-size: 1.75rem;
}

.justify {
  text-align: justify;
}

.justifys {
  justify-items: center;
}

@media only screen and (max-width: 479px) {
  .line-arrow {
    /* display:none; */
    opacity: 0;
  }

  .navbar1 {
    display: none;
  }

  .navbar1 {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .line-arrow {
    /* display:none; */
    opacity: 0;
  }

  .navbar1 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .line-arrow {
    /* display:none; */
    opacity: 0;
  }

  .navbar1 {
    display: none;
  }
}

.sidenav {
  height: 100%;
  width: 70%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #035c73;
  overflow-x: hidden;
  /* transition: 0.5s; */
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
  background: #035c73;
}

.sidenav a:hover {
  color: #f1f1f1;
}

/* .sidenav .closebtn {
          position: fixed;
          right: 0px;
          top: -10px;
          background: black;
          color: black;
          font-size: 40px;
          width: 100px;
          height: 100px;
      }
       */

.sidenav .closebtn:hover {
  color: black;
}

.dropdown-menu {
  padding: 0px !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.socials-mobile {
  position: fixed;
  float: right;
  display: block;
  width: 70%;
  height: 30px;
  background: #035c73;
  bottom: 0px;
  padding-bottom: 40px;
  transition: all 0.5s ease;
}

.dropdown-inner-font {
  font-size: 16px !important;
  color: antiquewhite !important;
}

body {
  height: 100%;
}

/* .socials-mobile {
          margin: 0 auto;
          display: block;
          width: 100%;
          margin-top: 20px;
      } */

/* .collapse.in {
          display: block !important;
      } */

.rotate1,
.rotate2,
.rotate3,
.rotate4,
.rotate2-1,
.rotate3-1 {
  transition: all 0.5s linear;
  font-size: 18px;
  margin-left: 10px;
  display: inline-block;
  position: initial;
  padding-top: 11px;
}

.rotate1.down,
.rotate2.down,
.rotate3.down,
.rotate4.down,
.rotate2-1.down,
.rotate3-1.down {
  transform: rotate(90deg);
  padding-left: 10px;
}

.cross-icon {
  font-size: 40px;
  cursor: pointer;
  float: right;
  margin-right: 10px;
  margin-top: -70px;
  display: none;
}

#nav-icon1 {
  width: 50px;
  height: 45px;
  position: fixed;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  right: 0px;
  margin-top: -50px;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 30px;
  background: #125D74;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 21px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  /* left: 60px; */
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.social-icon-design {
  background: #6d6e71;
  border: 1px solid #6d6e71;
  border-radius: 50%;
  margin-right: 3px;
  width: 25px;
  display: inline-block;
  text-align: center;
  padding-top: 1px;
  margin-left: 0px;
}

.social-icon-design:hover {
  background: transparent;
  border: 0px;
  color: white !important;
}

.map-icon {
  position: absolute !important;
  left: 37%;
}

.center {
  box-shadow: -2px -1px 5px 0px rgba(0, 0, 0, 0.36);
  padding: 50px;
}

.check-icon {
  border: 2px solid #40AC49;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  color: #40AC49;
}

.icon-wrapper {
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.08);
  width: 66px;
  padding: 10px;
  font-size: 25px;
  color: #F35551;
  padding-left: 13px;
}

.blog-design {
  position: absolute;
  top: 62px;
  left: 22%;
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.behance-design {
  position: absolute;
  top: 62px;
  left: 0px;
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.location-icon {
  width: 17px;
  margin-left: 10px;
  margin-top: -5px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

@media (min-width: 1024px) and (max-width: 1140px) {
  .margin-top-1 {
    top: 72px !important;
  }
}

@media (min-width: 1141px) {
  .header-style-two .main-menu .navigation > li {
    padding: 25px 0px 47px;
  }

  .margin-top-1 {
    top: 72px !important;
  }
}

.bg-white {
  background: white;
}

.bg-white1 {
  background: #F6F6F6;
}

.date1 {
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.25rem;
}

.margin-left1 {
  margin-left: 65px;
}

.padding1 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.font-18 {
  font-size: 18px;
}

.blog-title {
  font-size: 20px !important;
  letter-spacing: -0.2px !important;
  line-height: 1.3em !important;
  color: #151519;
}

.readmore-btn {
  border: 1px solid blue;
  margin-left: 16px;
  border-radius: 0px;
  padding: 4px;
  background: transparent;
}

.blog-desc {
  margin-top: 5px;
  text-align: justify;
  font-size: 15px;
}

.box-shadow1 {
  box-shadow: 0 0 10px -2px rgba(21, 21, 25, 0.25);
}

.date2 {
  font-weight: 600;
  font-size: 12px;
  color: #428cad !important;
}

.section-margin {
  margin-top: 80px;
  margin-bottom: 80px;
}

.our-blog {
  font-size: 24.1px;
  color: #151519 !important;
  letter-spacing: -1px;
  line-height: 1.1em;
  margin-top: 50px;
  word-spacing: 5px;
}

.our-blog-img {
  width: 80%;
  /* height: 550px; */
  box-shadow: 0 0 10px 0 rgba(21, 21, 25, 0.25);
  margin-left: 20%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-body {
  padding: 2.25rem !important;
}

.blogimg-border {
  border: 1px solid black;
  width: 46%;
  position: absolute;
  right: 0px;
  height: 660px;
  top: -80px;
  background: #151414;
}

.card-margin {
  margin-top: 80px;
}

.height-173 {
  height: 173px;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-margin {
  top: 5px;
  margin-left: 71px;
}

.m-t-27 {
  margin-top: 27px !important;
}

.blog-head1 {
  font-size: 19px;
  color: #151519 !important;
  text-align: justify;
}

@media (min-width: 576px) and (max-width: 768px) {
  .card-columns {
    -moz-column-count: 2;
    column-count: 2;
  }

  .height-173 {
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .top-0 {
    top: 0px !important;
  }

  .left-12 {
    left: 12px !important;
  }
}

@media (max-width: 576px) {
  .height-173 {
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .img-margin {
    margin-left: 0px;
  }

  .width-100 {
    width: 100%;
  }

  .top-0 {
    top: 0px !important;
  }

  .left-12 {
    left: 12px !important;
  }
}

@media screen and (max-width: 991px) {
  .card-margin {
    margin-top: 0px;
  }

  .our-blog {
    margin-top: 0px;
  }
}

.ul-list-type-circle {
  list-style-type: circle;
}

.ml-25 {
  margin-left: 110px;
}

.custom_padding {
  padding: 29px 0px 29px;
  position: relative;
  text-align: center;
}

.custom_padding-1 {
  position: relative;
  padding: 29px 0px 90px;
}

.services-block-two .inner-box .icon-box .icon .line-arrow {
  left: 555%;
  top: 34%;
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}

#page_loader.off {
  opacity: 0;
  visibility: hidden;
  /**-webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
   transition: all .3s ease;
   **/
}

#page_loader {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  padding-top: 15em;
  background: #fff;
  transition: all 0.3s ease;
}

/**.text-center {
    text-align: center;
}


img {
    max-width: 100%;
}
img {
    vertical-align: middle;
}
img {
    border: 0;
}

img {
    width: 64px;
}**/

.fontschange {
  position: relative;
  color: #333333;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.circle {
  border-radius: 82px;
}

.fc {
  font-size: 30px;
}

.gap1 {
  bottom: 69px;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */

/* @-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.custom-num {
    font-size: 35px;


}


.top-headers {
    margin-bottom: -2px;
    /* padding-bottom: 2px; */

/* padding: 0px;
margin: 0px;
height: 0px;
padding: 0px;
background-color: black !important;
margin-right: -89px;
margin-left: -90px;
z
} */

.topheader-remake {
  margin: 25px;
  margin-bottom: -9px;
}

.localseo-width {
  width: 372px;
  left: 130px;
}

.custom_font {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  padding-left: 39px;
  margin: -21px;
  padding-right: 8px;
  color: white;
}

.custom_side {
  padding-right: 20px;
  padding-top: 24px;
}

.custom_anish {
  margin-top: -8px;
  margin-bottom: -28px;
  padding: 0px;
}

.custom-top-contact {
  margin: -7px;
}

.fa-color {
  color: #fff;
}

.top-header-socialmedia {
  padding: 120px;
  margin-top: -16px;
}

.social-icon-one li a .top-icons {
  position: relative;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #a6a6a6;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  background-color: #eeeeee;
  position: relative;
  text-align: center;
  width: 0px;
  height: 0px;
  padding: 12px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.p1 {
  position: relative;
  /* line-height: 0.8em; */
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: white;
}

/*  */

body {
  background: #262626;
}

.demopadding {
  margin: 0px auto;
  width: 200px;
  text-align: center;
}

.icon {
  position: relative;
  text-align: center;
  width: 0px;
  height: 0px;
  padding: 0px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  -khtml-border-radius: 20px 20px 20px 20px;
  color: black;
}

.icon i {
  font-size: 20px;
  position: absolute;
  left: 9px;
  top: 10px;
}

.icon.social {
  float: left;
  margin: 0 5px 0 0;
  cursor: pointer;
  background: #6d6e71;
  color: white;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.icon.social:hover {
  background: #262626;
  color: #6d6e71;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.8));
  -moz-filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.8));
  -ms-filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.8));
  -o-filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.8));
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.8));
}

.icon.social.fb i {
  left: 10px;
  top: 3px;
  width: 10px;
  color: #fff;
}

.icon.social.tw i {
  top: 2px;
  left: 6px;
  color: #fff;
}

.icon.social.in i {
  left: 7px;
  top: 1px;
  color: #fff;
}

.icon-circle {
  padding: 16px;
}

.done {
  right: 8px;
}

.info {
  left: 5px;
  bottom: -1px;
}

.blog {
  width: 50%;
  padding-top: 14px;
  padding-bottom: 37px;
}

.mid {
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .extra-small {
    display: flex;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */

/* @media only screen and (min-width: 600px) {
.portrait{
    display:flex;

}
.portrait_pad{
    width: 492px;
    padding: 0px;
    margin-top: -16px;
}
}
 */

.top-bar-dark {
  background-color: #151414;
  color: #797676;
}

.top-bar {
  background-color: #fff;
  padding: 16px 0;
  font-size: 14px;
  color: #2f2c2c;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 30;
  transition: all 0.3s ease;
}

.top-bar {
  background-color: #fff;
  padding: 10px 0;
  font-size: 14px;
  color: #2f2c2c;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 30;
  transition: all 0.3s ease;
}

/* @media (max-width: 1024px) {
    .top-bar {
        width: 320px;
        transform: translate(-50%, -100%);
        position: absolute;
        left: 50%;
        border-radius: 0 0 10px 10px;
    }
}

.top-bar>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

@media (max-width: 1200px) {
  .top-bar > .container {
    width: 100%;
  }
}

/*
@media (max-width: 1024px) {
    .top-bar>.container {
        flex-direction: column;
    }
} */

.top-bar > .container:before,
.top-bar > .container::after {
  display: none;
}

/* @media(max-width:1024px) {
    .top-bar.open {
        transform: translate(-50%, 0);
        z-index: 999;
        position: relative;
        display: none;
    }
} */

.top-bar .flags {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
}

.top-bar .top-bar-contact {
  display: flex;
  align-items: center;
}

/* @media (max-width: 1024px) {
    .top-bar .top-bar-contact {
        flex-direction: column;
    }
} */

.top-bar .nice-select {
  padding: 0 40px 0 0;
  background-color: transparent;
  font-size: 14px;
  margin-bottom: 0;
  color: #4cc2c0;
}

.top-bar .nice-select span {
  color: #4cc2c0;
}

.top-bar .nice-select .option {
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
}

.top-bar .nice-select:after {
  height: 6px;
  width: 6px;
  margin-top: -4px;
}

.top-bar .nice-select:focus {
  box-shadow: none;
  background-color: transparent;
}

.top-bar .contact-item {
  padding: 0 30px;
  position: relative;
  display: flex;
  align-items: center;
}

/* @media (max-width: 1024px) {
    .top-bar .contact-item {
        padding: 0;
        margin-bottom: 15px;
    }
} */

.top-bar .contact-item:first-child {
  padding-left: 0;
  padding-right: 10px;
}

/* @media (max-width: 1024px) {
    .top-bar .contact-item:first-child {
        padding: 0;
    }
} */

.top-bar .contact-item:last-child {
  padding-right: 0;
}

.top-bar .contact-item:last-child:after {
  display: none;
}

.top-bar .contact-item:after {
  content: "|";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #acacac;
}

/* @media (max-width: 1024px) {
    .top-bar .contact-item:after {
        display: none;
    }
} */

.top-bar a {
  color: #504c4c;
  border-bottom: 1px dashed #504c4c;
}

.top-bar a:hover {
  color: #4cc2c0;
  border-color: #4cc2c0;
}

.top-bar span {
  color: #acacac;
}

.top-bar .login-block {
  display: flex;
  align-items: center;
}

/* @media (max-width: 1024px) {
    .top-bar .login-block {
        margin-bottom: 15px;
    }
} */

.top-bar .login-block img {
  width: 28px;
  height: 28px;
  margin-right: 20px;
}

.top-bar .follow_us {
  display: flex;
  align-items: center;
}

.top-bar .socials {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.top-bar .socials img {
  width: 16px;
  height: auto;
}

.top-bar .socials a {
  border: none;
}

.top-bar .socials .social__item {
  margin-left: 10px;
}

.top-bar + .header {
  top: 60.5px;
}

/* @media (max-width: 1024px) {
    .top-bar+.header {
        top: 0;
    }
} */

@media (max-width: 768px) {
  .top-bar + .header {
    padding-top: 40px;
  }
}

/* @media(max-width:1024px) {
    .top-bar+.header.headroom--not-top {
        top: 0;
    }
    .top-bar .top-bar-close {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 10px;
        top: 10px;
        display: none;
        border: none;
    }
} */

/* @media (max-width: 1024px) {
    .top-bar .top-bar-close {
        display: block;
    }
} */

.top-bar .top-bar-close span {
  display: block;
  height: 2px;
  background: #707070;
  border-radius: 10px;
  margin: auto;
  width: 100%;
  transition: all 0.3s ease;
  top: 50%;
  position: absolute;
}

.top-bar .top-bar-close span:first-of-type {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.top-bar .top-bar-close span:last-of-type {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.top-bar-dark {
  background-color: #151414;
  color: white;
}

.top-bar-dark a {
  color: white;
}

.top-bar-dark span {
  color: white;
}

.top-bar-dark .nice-select .list {
  background-color: #151414;
  border: none;
  box-shadow: 0 5px 40px rgba(255, 255, 255, 0.3);
}

.top-bar-dark .nice-select .option.selected.focus {
  background-color: transparent;
}

.top-bar-dark .nice-select .option.selected.focus:hover {
  background-color: #424444;
}

.top-bar-dark .nice-select .option:hover {
  background-color: #424444;
}

@media only screen and (max-width: 600px) {
  #overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
  }
}

/* @media (max-width: 1024px) {
    .top-bar-link {
        display: block;
        visibility: visible;
    }
} */

.top-bar-link {
  display: none;
  /* visibility: hidden; */
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 0 0 10px 10px;
  background-color: #4cc2c0;
  text-align: center;
  padding: 0 16px;
  z-index: 50;
  box-shadow: 10px 0 30px 0 rgba(74, 189, 187, 0.4);
  border: 1px solid #f7f9f9;
}

/* @media (max-width: 1024px) {
    .top-bar-link {
        display: block;
        visibility: visible;
    }
    .top-bar-link {
        display: flex;

        position: absolute;
        top: 6px;
        left: 50%;
        transform: translate(-50%, 0px);
        background-color: black;
        text-align: center;
        z-index: 50;
        box-shadow: rgba(74, 189, 187, 0.4) 10px 0px 30px 0px;
        border-radius: 0px 0px 10px 10px;
        padding: 0px 16px;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(247, 249, 249);
        border-image: initial;
    }
    a {
        color: rgb(47, 44, 44);
        text-decoration: none;
        transition: all 0.15s linear 0s;
    }
    .top-bar-link .seosight-icon {
        height: 15px;
        width: 15px;
        color: rgb(255, 255, 255);
        transition: all 0.3s ease 0s;
    }
} */

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #242f3f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  top: 50%;
  /******** <- Remove this line *********/
  border: 4px solid #Fff;
  -webkit-animation: loader 2s infinite ease;
          animation: loader 2s infinite ease;
}

.change {
  position: absolute;
  will-change: transform;
  top: 0px;
  left: 0px;
  transform: translate3d(-163px, 22px, 0px);
}

.new {
  min-height: 400px;
  /* z-index: 1000; */
}

.p2 {
  font-size: 11px;
}

.face {
  width: 320px;
  height: 228px;
  right: 45px;
  margin-right: 1px;
}

/* padding-left: 7px; */

.size {
  height: 277px;
}

/* .set{
    top: 99px;!important
} */

.back {
  background: #4b7eea;
}

.white {
  color: white;
}

.border_radius {
  border-radius: 55px;
}

.icircle {
  background: white;
  border-radius: 69px;
}

.pop {
  font-size: 13px Poppins, sans-serif;
}

.popupimg {
  position: fixed;
  top: 30%;
  left: 24%;
  width: 50%;
  z-index: 999;
}

.popup-close {
  position: fixed;
  color: darkred;
  top: 30%;
  left: 71%;
  z-index: 999;
  font-size: 35px;
  cursor: pointer;
}

.index-header {
  background: url("/images/20201130034534_IMG_9524.jpg");
  height: 85vh;
  background-size: cover;
}

.main-title {
  line-height: 42px;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 35px;
  color: #fff;
}

.sub-title1 {
  line-height: 60px;
  border-width: 0px;
  margin: 0px 0px 5px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 50px;
  color: white;
}

.title-desc {
  font-size: 14px;
  color: #ffffff !important;
  font-weight: 400;
  line-height: 2em;
}

.margin-15-per {
  margin-top: 15%;
}

.popup-block {
  width: 100%;
  height: 80vh;
  overflow-y: hidden;
  background: rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

.top-callnow {
  color: #47c8ba;
  font-size: 30px;
  font-family: "Muli-SemiBold", sans-serif;
  line-height: 48px;
  font-weight: 500;
  padding: 10px 12px;
  background-color: #333;
  display: inline-block;
  margin: 0px;
  float: right;
  width: 100%;
}

.head-input {
  height: 50px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 0px;
  border-bottom: 2px solid #47c8ba;
  font-size: 16px;
  margin-top: 15px;
  display: inline-block;
  margin-right: 6px;
  width: 100%;
}

.submit-btn1 {
  background: #125d74;
  color: #fff;
  border: none;
  margin-top: 8px;
  font-size: 22px;
  text-transform: uppercase;
  width: 100%;
  padding-top: 13px;
  padding-bottom: 16px;
  font-weight: normal;
}

.submit-btn1:hover {
  color: white;
}

.free-web {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: ghostwhite;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .popup-close {
    position: fixed;
    color: darkred;
    top: 29%;
    z-index: 999;
    font-size: 35px;
    cursor: pointer;
    left: 87%;
  }

  .popupimg {
    position: fixed;
    top: 31%;
    left: 5%;
    width: 90%;
    z-index: 999;
  }

  .margin-15-per {
    margin-top: 23%;
  }

  .index-header {
    height: auto;
  }

  .top-callnow {
    font-size: 26px;
  }

  .margin-btm-20 {
    margin-bottom: 20px;
  }

  .traffic-section .content-column .inner-column h5 {
    font-size: 30px;
  }

  .sub-title1 {
    font-size: 43px;
  }
}

.submit-bt-1 {
  padding: 0px;
  padding-top: 13px;
  padding-bottom: 13px;
  position: relative;
  top: 6px;
  font-size: 18px;
}

.contact-us-btn {
  border-radius: 30px;
  margin-right: 0;
  padding: 7px 20px 8px !important;
  color: #fff !important;
  background-color: #47c8ba;
  border-color: #176077;
  font-family: cursive !important;
}

.number-btn {
  background: #B0B0B0;
  border-radius: 0.6em;
  margin-right: 0;
  min-width:150px;
  min-height:40px;
  color: #fff !important;
  padding:0 0.8em;
  line-height:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:nowrap;
  background-color: #176077;
  -webkit-border-radius: 0.6em;
  -moz-border-radius: 0.6em;
  -ms-border-radius: 0.6em;
  -o-border-radius: 0.6em;
}

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -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: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  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("/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

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

@media only screen and (max-width: 1400px) {
  .shop-banner:before {
    display: none;
  }
}

@media only screen and (max-width: 1340px) {
  .page-wrapper {
    overflow: hidden;
  }
}

@media only screen and (max-width: 1140px) {
  .main-header {
    margin: 0px !important;
  }

  .page-wrapper {
    overflow: hidden;
  }

  .main-menu .navigation > li {
    padding: 20px 0px;
    margin-right: 20px;
  }

  .main-header .info-options {
    padding: 25px 0px !important;
    margin: 0px;
  }

  .main-header .main-box .logo-box {
    padding-bottom: 0px;
  }

  .main-header,
  .main-header.fixed-header .main-box {
    position: relative;
    background-color: #212121;
  }

  .header-style-two.fixed-header .main-box {
    background: #ffffff;
  }

  .main-header.fixed-header .main-box {
    -webkit-animation: none;
    animation: none;
  }

  .main-header .search-box-outer .dropdown-menu {
    top: 48px;
  }

  .main-slider h2 {
    font-size: 48px !important;
    line-height: 1.4em;
  }

  .big-ipad-hidden,
  .news-block-two .inner-box .lower-content h3 a br {
    display: none !important;
  }

  .services-block .inner-box h3,
  .services-block-three .inner-box h3,
  .news-block-three .inner-box .lower-box h3 {
    font-size: 18px;
  }

  .contact-form,
  .traffic-section .image-column .image,
  .blog-classic,
  .blog-grid,
  .our-shop {
    /* padding-right:0px; */
    padding-right: 23px;
    left: 1px;
  }

  .fullwidth-gallery-section .gallery-outer .gallery-column,
  .fullwidth-gallery-section .gallery-outer .content-column {
    width: 100%;
    display: block;
  }

  .fullwidth-gallery-section .gallery-outer .content-column .content-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fullwidth-gallery-section .gallery-outer .gallery-column .inner-column {
    margin-right: 0px;
  }

  .fullwidth-gallery-section .gallery-outer .content-column .content-inner {
    margin-left: 0px;
  }

  .sec-title h2,
  .accordian-section .content-column h2,
  .traffic-section .content-column .inner-column h2 {
    font-size: 30px;
  }

  .services-block-four .inner-box .content h3 {
    font-size: 17px;
  }

  .price-section .price-block {
    padding: 0px 15px;
  }

  .price-section .row {
    margin: 0px -15px;
  }

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

  .header-style-two .main-menu .navigation > li,
  .header-style-two.fixed-header .main-menu .navigation > li {
    padding: 15px 0px 28px;
  }

  .blog-single .inner-box .lower-content blockquote .text {
    font-size: 16px;
  }

  .blog-single .inner-box .lower-content blockquote .quote-icon {
    padding: 69px 0px;
  }

  .product-details .info-column .btns-box .theme-btn {
    padding: 10px 20px;
    margin-bottom: 12px;
  }

  .product-info-tabs .comments-area {
    margin-top: 0px;
  }

  .accordian-section .image-column .image img {
    position: relative;
    top: 0px;
    right: 0px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: -26px;
    /* padding-right: 83px;
    left: 1px; */
  }
}

@media only screen and (min-width: 1023px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: -26px;
  }
}

@media only screen and (min-width: 1023px) and (min-width: 1024px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: 1px;
    /* padding-right: 83px;
    left: 1px; */
  }
}

@media only screen and (min-width: 1023px) and (min-width: 1024px) and (min-width: 1440px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: 2px;
    /* margin-top: -26px; */
  }
}

@media only screen and (min-width: 1023px) and (min-width: 1024px) and (max-width: 1023px) {
  .main-header .main-box .logo-box {
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    text-align: left;
    padding: 20px 0px 0px;
  }

  .main-header .main-box .outer-container {
    padding-left: 0px;
  }

  .main-header .nav-toggler {
    display: block;
  }

  .main-header.fixed-header .search-box-outer .dropdown-menu,
  .header-style-two.fixed-header .search-box-outer .dropdown-menu {
    top: 56px;
  }

  .header-style-two .search-box-outer .dropdown-menu {
    top: 61px;
  }

  .main-menu .navigation > li.dropdown a {
    padding-right: 0px;
  }

  .page-title h1 {
    font-size: 36px;
  }

  .main-slider .text br,
  .ipad-hidden,
  .services-block-two .inner-box .line-arrow,
  .main-menu .navigation > li.dropdown > a:before {
    display: none !important;
  }

  .main-slider h2 {
    font-size: 40px !important;
  }

  .services-section-two .row {
    margin: 0px -15px;
  }

  .services-section-two .services-block-two {
    padding: 0px 15px;
  }

  .accordian-section .image-column .image {
    margin-top: 0px;
  }

  .project-section .filters .pull-right {
    width: 100%;
  }

  .project-section .filters .filter-tabs {
    display: block;
    text-align: center;
  }

  .news-block-two .inner-box .lower-content .upper-box .read-more {
    position: relative;
    top: 0px;
    margin-bottom: 15px;
    display: inline-block;
  }

  .news-block-two .inner-box .lower-content h3 {
    padding-right: 0px;
  }

  .case-single-section .case-inner .cases-title h2 {
    text-align: left;
    border: none;
  }
}

@media only screen and (min-width: 1023px) and (min-width: 1024px) and (max-width: 767px) {
  .header-upper .logo-outer {
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    margin: 0px;
  }

  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: -26px;
  }

  .main-header .header-top .top-right,
  .main-header .header-top .top-left {
    width: 100%;
    text-align: center;
  }

  .main-header .header-top .top-right ul li,
  .main-header .header-top .top-left ul li {
    margin: 0px 10px;
  }

  .sec-title h2 {
    font-size: 26px;
  }

  .main-menu .collapse {
    max-height: 300px;
    overflow: auto;
    float: none;
    width: 100%;
    padding: 10px 0px 0px;
    border: none;
    margin: 0px 0px 15px;
    border-radius: 3px;
    box-shadow: none;
  }

  .main-menu .collapse.in,
  .main-menu .collapsing {
    padding: 10px 0px 0px;
    border: none;
    margin: 0px 0px 15px;
    border-radius: 3px;
    box-shadow: none;
  }

  .main-menu .navbar-header {
    position: relative;
    float: none;
    display: block;
    text-align: right;
    width: 100%;
    padding: 0px 0px 20px;
    right: 0px;
  }

  .main-menu .navbar-header .navbar-toggle {
    display: inline-block;
    z-index: 20;
    border: 1px solid #ff5926;
    float: none;
    margin: 0px 0px 0px 0px;
    border-radius: 0px;
    background: #ff5926;
  }

  .main-menu .navbar-header .navbar-toggle .icon-bar {
    background: #ffffff;
  }

  .main-menu .navbar-collapse > .navigation {
    float: none !important;
    margin: 0px !important;
    width: 100% !important;
    border: 1px solid #ffffff;
    border-top: none;
  }

  .main-menu .navbar-collapse > .navigation > li {
    margin: 0px !important;
    float: none !important;
    padding: 0px !important;
    width: 100%;
  }

  .main-menu .navigation > li > a,
  .main-menu .navigation > li > ul:before {
    border: none;
  }

  .main-menu .navbar-collapse > .navigation > li > a {
    padding: 10px 10px !important;
    border: none !important;
    font-size: 15px !important;
  }

  .main-menu .navigation li.dropdown > a:after,
  .main-menu .navigation > li.dropdown > a:before,
  .main-menu .navigation > li > ul > li > a::before,
  .main-menu .navigation > li > ul > li > ul > li > a::before {
    color: #ffffff !important;
    right: 15px;
    font-size: 16px;
    display: none !important;
  }

  .main-menu .navbar-collapse > .navigation > li > ul,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    position: relative;
    border: none;
    float: none;
    visibility: visible;
    opacity: 1;
    display: none;
    margin: 0px;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    padding: 0px;
    outline: none;
    width: 100%;
    background: #333333;
    border-radius: 0px;
    transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    -moz-transition: none !important;
  }

  .main-menu .navbar-collapse > .navigation > li > ul,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    border-top: 1px solid white !important;
  }

  .main-menu .navbar-collapse > .navigation > li,
  .main-menu .navbar-collapse > .navigation > li > ul > li,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li {
    border-top: 1px solid white !important;
    border-bottom: none;
    opacity: 1 !important;
    top: 0px !important;
    left: 0px !important;
    visibility: visible !important;
  }

  .main-menu .navbar-collapse > .navigation > li > ul > li:first-child,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:first-child {
    border-top: none !important;
  }

  .main-menu .navbar-collapse > .navigation > li:first-child {
    border: none;
  }

  .main-menu .navbar-collapse > .navigation > li > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a {
    padding: 10px 10px !important;
    line-height: 22px;
    color: #ffffff;
    background: #333333;
    text-align: left;
  }

  .main-menu .navbar-collapse > .navigation > li > a:hover,
  .main-menu .navbar-collapse > .navigation > li > a:active,
  .main-menu .navbar-collapse > .navigation > li > a:focus {
    background: #ff5926;
  }

  .main-menu .navbar-collapse > .navigation > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li.current > a,
  .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
    background: #333333;
    color: #ffffff !important;
  }

  .main-menu .navbar-collapse > .navigation li.dropdown .dropdown-btn,
  .header-style-two .nav-outer .btn-outer {
    display: block;
  }

  .main-menu .navbar-collapse > .navigation li.dropdown:after,
  .main-menu .navigation > li > ul:before,
  .main-slider .bordered-layer {
    display: none !important;
  }

  .main-header .nav-outer,
  .shop-page .prod-tabs .reviews-container .rev-header h4 {
    padding-right: 0px;
    width: 100%;
  }

  .main-header .main-box .logo-box {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  .main-header .main-menu {
    padding-top: 0px;
    width: 100%;
    margin: 0px;
  }

  .main-header .btn-outer {
    display: block;
  }

  .main-header .search-box-outer .dropdown-menu {
    top: 46px;
  }

  .main-header.fixed-header .search-box-outer .dropdown-menu {
    top: 42px;
  }

  .main-header.header-style-two .search-box-outer {
    padding-left: 0px;
    border: 0px;
    top: 0px;
  }

  .main-header.header-style-three .logo-box {
    padding-bottom: 20px;
  }

  .main-header .info-options {
    position: absolute;
    left: 0px;
    top: 6px;
    margin: 0px;
    padding: 0px !important;
    right: auto;
    width: 100%;
    z-index: 12;
    margin-top: 0px;
  }

  .search-box-outer {
    padding-left: 0px;
    border: 0px;
  }

  .fixed-header .info-options,
  .testimonial-section-two .single-item-carousel {
    padding: 0px !important;
  }

  .services-block-four .inner-box .content {
    padding-left: 0px;
    text-align: center;
  }

  .services-block-four .inner-box .content .icon-box {
    position: relative;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .services-block-four .inner-box {
    padding: 30px 15px;
  }

  .testimonial-section .owl-dots,
  .page-title .image {
    display: none;
  }

  .page-title h1 {
    margin-top: 0px;
  }

  .page-title {
    padding: 90px 0px;
  }

  .services-block-three .inner-box {
    padding: 40px 15px;
  }

  .blog-single .inner-box .lower-content blockquote .text {
    padding: 35px 0px;
  }

  .sidebar-page-container .comments-area .comment {
    padding-left: 0px;
  }

  .sidebar-page-container .comments-area .comment-box .author-thumb {
    position: relative;
  }

  .comment-form form {
    padding: 40px 40px 10px;
  }

  .cart-section .coupon-outer .pull-right {
    width: 100%;
  }

  .cart-section .coupon-outer {
    padding-bottom: 30px;
  }

  .line-arrow {
    display: none;
  }
}

@media only screen and (min-width: 1023px) and (min-width: 1024px) and (max-width: 599px) {
  .main-header .search-box-outer .dropdown-menu {
    left: 0px;
  }

  .main-slider h2,
  .main-slider h2 span {
    font-size: 24px !important;
    line-height: 2em;
  }

  .main-slider .text {
    font-size: 11px;
  }

  .audit-form-section h2,
  .traffic-section .content-column .inner-column h2 {
    font-size: 26px;
  }

  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: -26px;
  }

  .testimonial-style-one .inner-box {
    padding: 15px 25px 15px;
  }

  .project-section .filters .filter-tabs {
    padding-left: 15px;
    padding-right: 15px;
  }

  .project-section .filters .filter-tabs .filter {
    margin: 0px 8px;
  }

  .testimonial-block-two .inner-box {
    padding: 20px 15px 25px;
  }

  .news-block-two .inner-box .lower-content h3 {
    font-size: 17px;
  }

  .news-block-two .inner-box .lower-content {
    padding: 20px 20px;
  }

  .case-single-section .case-inner .cases-title h2 {
    font-size: 26px;
  }

  .blog-single .inner-box .lower-content blockquote .text {
    margin-left: 0px;
  }

  .blog-single .inner-box .lower-content blockquote .quote-icon {
    position: relative;
    padding: 15px 0px;
    left: 0px;
    top: 30px;
    margin-bottom: 20px;
  }

  .cart-total-block .inner-block {
    padding: 20px 25px;
  }

  .price-filter-widget .widget-content {
    padding: 30px 25px;
  }

  .line-arrow {
    display: none;
  }
}

@media only screen and (min-width: 1023px) and (min-width: 1024px) and (max-width: 479px) {
  .header-style-two .header-lower .left-btn,
  .header-style-two .header-lower .right-info {
    position: relative;
    padding: 20px 0 32px;
  }

  .main-header .nav-toggler {
    top: 0px;
  }

  .ipad-hidden {
    display: none !important;
  }

  .error-search-box {
    width: 100%;
  }

  .accordion-box .block .acc-btn {
    padding: 0px 30px 0px 30px;
    font-size: 16px;
  }

  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin-top: -26px;
  }

  .accordion-box .block .icon-outer {
    right: 8px;
  }

  .accordion-box .block .acc-btn .outer-icon {
    left: 8px;
  }

  .portfolio-item-two .inner-box .image .overlay-box .inner-content h2 {
    font-size: 20px;
  }

  .blog-single .post-share-options .pull-right {
    width: 100%;
    margin-top: 10px;
  }

  .sidebar-page-container .comments-area .comment .comment-reply {
    position: relative;
  }

  .product-info-tabs .prod-tabs .tab-btns .tab-btn {
    padding: 13px 30px;
  }

  .line-arrow {
    display: none;
  }

  .navbar1 {
    display: none;
  }
}

.set {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
}

.set > a {
  display: block;
  padding: 10px 15px 10px 30px;
  text-decoration: none;
  color: #555;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  transition: all 0.2s linear;
  position:relative;
}
.set > a > i{
    position:absolute;
    top:10px;
    left:13px;
    width:10px;
    height:10px;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    s-ms-transform: translateY(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
}

.set:first-child a {
  border-top: 1px solid #ddd;
}

.set > a:hover {
  color: #2B5D75;
  background: #fafafa;
  text-decoration: none;
}

/* .set > a i {
  float: left;
  margin-right: 10px;
  margin-top: 2px;
} */

.set > a.active {
  background-color: #2B5D75;
  color: #fff;
}

.digitalMarketingTraining .content {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: none;
}

.digitalMarketingTraining .content p {
  padding: 10px 15px;
  margin: 0;
  color: #333;
}

ul.list-style-none {
  list-style: none;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-top: none;
}

ul.list-style-none li {
  padding: 6px 3px;
  font-size: 14px;
  color: #444;
}

#academy-contact-form {
  max-width: 768px;
  margin: auto;
  position: relative;
}

#academy-contact-form button {
  overflow: visible;
}

#academy-contact-form button,
#academy-contact-form select {
  text-transform: none;
}

#academy-contact-form button,
#academy-contact-form input,
#academy-contact-form select,
#academy-contact-form textarea {
  color: #5A5A5A;
  font: inherit;
  margin: 0;
}

#academy-contact-form input {
  line-height: normal;
}

#academy-contact-form textarea {
  overflow: auto;
}

#academy-contact-form form {
  padding: 37.5px;
}

#academy-contact-form select option {
  padding: 10px 5px;
  font-size: 1.25rem;
}

#academy-contact-form .icon_wrapper {
  margin: 50px auto 0;
  width: 100%;
}

#academy-contact-form .icon {
  display: block;
  fill: #474544;
  height: 50px;
  margin: 0 auto;
  width: 50px;
}

#academy-contact-form .email {
  float: right;
  width: 45%;
}

#academy-contact-form input[type=text],
#academy-contact-form input[type=email],
#academy-contact-form select,
#academy-contact-form textarea {
  background: none;
  border: none;
  border-bottom: solid 2px #999;
  color: #474544;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0em 0 1.875em 0;
  padding: 0 0 0.875em 0;
  width: 100%;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
}

#academy-contact-form input[type=text]:focus,
#academy-contact-form [type=email]:focus,
#academy-contact-form textarea:focus {
  outline: none;
  padding: 0 0 0.875em 0;
}

#academy-contact-form .message {
  float: none;
}

#academy-contact-form .name {
  float: left;
  width: 45%;
}

#academy-contact-form select {
  background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png") no-repeat right;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

#academy-contact-form select::-ms-expand {
  display: none;
}

#academy-contact-form .subject {
  width: 100%;
}

#academy-contact-form .telephone {
  width: 100%;
}

#academy-contact-form textarea {
  line-height: 150%;
  resize: none;
  width: 100%;
}

#academy-contact-form::-webkit-input-placeholder {
  color: #474544;
}

#academy-contact-form:-moz-placeholder {
  color: #474544;
  opacity: 1;
}

#academy-contact-form::-moz-placeholder {
  color: #474544;
  opacity: 1;
}

#academy-contact-form:-ms-input-placeholder {
  color: #474544;
}

#academy-contact-form #form_button {
  background: none;
  border: solid 2px #474544;
  color: #474544;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  transition: all 0.3s;
}

#academy-contact-form #form_button:hover {
  background: #115D74;
  color: #F2F3EB;
  border: solid 2px #115D74;
}

@media screen and (max-width: 768px) {
  #container {
    margin: 20px auto;
    width: 95%;
  }
}

@media screen and (max-width: 480px) {
  #academy-contact-form #form_button {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 420px) {
  #academy-contact-form input[type=text],
  #academy-contact-form input[type=email],
  #academy-contact-form select,
  #academy-contact-form textarea {
    font-size: 0.875em;
  }
}

#studentSay.testimonial-bg {
  background-color: #fff;
  border: 5px solid #035c73;
  padding: 35px 70px 0 70px;
  text-align: center;
  position: relative;
}

#studentSay.testimonial-bg:before {
  content: "\F118";
  font-family: "fontawesome";
  width: 75px;
  height: 75px;
  border: 5px solid #fff;
  line-height: 75px;
  background: #fff;
  text-align: center;
  font-size: 50px;
  color: #fff;
  background: #035c73;
  position: absolute;
  top: -40px;
  left: 2%;
}

#studentSay {
  padding: 0 15px;
}

#studentSay .description {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #848484;
  line-height: 30px;
  padding-bottom: 25px;
  margin-bottom: 15px;
  position: relative;
}

#studentSay .description:before {
  content: "";
  width: 75%;
  border-top: 1px solid #035c73;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#studentSay .description:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  border-bottom: 1px solid #035c73;
  border-right: 1px solid #035c73;
  transform: translateX(-50%) rotate(45deg);
}

#studentSay .pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 25px auto;
  overflow: hidden;
}

#studentSay .pic img {
  width: 100%;
  height: auto;
}

#studentSay .title {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #035c73;
  text-transform: capitalize;
  margin: 0;
}

#studentSay .post {
  display: inline-block;
  font-size: 20px;
  color: #848484;
}

#studentSay-slider.owl-theme .owl-nav {
  margin-top: 10px;
  position: absolute;
  bottom: -19.5%;
  right: 0;
}

#studentSay-slider.owl-theme .owl-nav .owl-prev,
#studentSay-slider.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #34363b;
  opacity: 1;
  padding: 0;
  display: inline-block;
  margin: 0 10px;
}

#studentSay-slider .owl-prev:before {
  content: "\F104";
  font-family: "FontAwesome";
  font-size: 23px;
  font-weight: 700;
  color: #fff;
}

#studentSay-slider .owl-next:before {
  content: "\F104";
  font-family: "FontAwesome";
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  content: "\F105";
}

@media only screen and (max-width: 767px) {
  #studentSay.testimonial-bg {
    padding: 50px 40px;
  }

  #studentSay-slider.owl-theme .owl-controls {
    bottom: -22%;
  }
}

@media only screen and (max-width: 480px) {
  #studentSay.testimonial-bg {
    padding: 30px 10px;
  }

  #studentSay.testimonial-bg:before {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 40px;
  }

  #studentSay-slider.owl-theme .owl-nav {
    bottom: -9%;
  }
}

@media only screen and (max-width: 360px) {
  #studentSay.testimonial .title {
    font-size: 16px;
  }

  #studentSay.testimonial .post {
    font-size: 16px;
  }

  #studentSay-slider.owl-theme .owl-nav {
    bottom: -8%;
  }
}

.testimonial-area {
  background: #035c73;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.testimonial-area .owl-carousel {
  overflow: hidden;
  padding: 0 20px;
  padding-right: 40px;
}

.testimonial-area .owl-stage-outer {
  padding: 30px 50px;
  margin-left: -34px;
  width: calc(100% + 100px);
}

.single-testimonial {
  border: 7px solid #fff;
  text-align: center;
  border-radius: 45px;
  position: relative;
  z-index: 2;
}

.single-testimonial p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  padding: 50px;
  padding-bottom: 10px;
  position: relative;
  z-index: 3;
}

.single-testimonial::before {
  content: "\F10D";
  font-family: "fontawesome";
  position: absolute;
  left: -35px;
  top: -35px;
  color: #000;
  background: #035c73;
  width: 11rem;
  height: 10rem;
  color: #fff;
  font-size: 6rem;
  text-align: center;
}

.single-testimonial::after {
  content: "\F10E";
  font-family: "fontawesome";
  color: #fff;
  position: absolute;
  right: -35px;
  bottom: -34px;
  background: #035c73;
  background-size: 60%;
  width: 11rem;
  height: 10rem;
  color: #fff;
  font-size: 6rem;
  text-align: center;
}

.round {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.round-1::before {
  content: "";
  position: absolute;
  left: 88px;
  top: -7px;
  width: 50px;
  height: 7px;
  background: #fff;
  border-radius: 30px;
}

.round-1::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 62px;
  width: 7px;
  height: 50px;
  background: #fff;
  border-radius: 30px;
}

.round-2::before {
  content: "";
  position: absolute;
  right: 87px;
  bottom: -7px;
  width: 50px;
  height: 7px;
  background: #fff;
  border-radius: 30px;
  z-index: 1;
}

.round-2::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 62px;
  width: 7px;
  height: 50px;
  background: #fff;
  border-radius: 30px;
  z-index: 1;
}

.clientImage {
  padding-right: 15px;
}

.client-info {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-bottom: 30px;
}

.client-info img {
  width: 100px !important;
  height: 100px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  font-size: 22px;
}

.client-info h6 {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.client-info span {
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.sec-title.white-title h2 {
  color: #fff;
}

.owl-dots {
  text-align: center;
  margin-top: 50px;
}

.owl-dots button {
  background: #fff !important;
  width: 10px;
  height: 10px;
  border-radius: 26px;
  margin: 0 5px;
  transition: 0.3s;
}

.owl-dots button.active {
  width: 30px;
}

/* ============= October 21================ */
.gridBenefits{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-auto-rows: 1fr;
    gap:3rem;
}
.benefit{
    padding: 1rem 2rem;
    background: #f6f6f6;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    text-align:center;
    filter:drop-shadow(1px 1px 0.2rem #2b5d75);
    -webkit-filter:drop-shadow(1px 1px 0.2rem #2b5d75);
    display:flex;
    align-items: center;
    justify-content: center;
}
.benefit:hover{
    filter:drop-shadow(0 0 0.5rem #2b5d75);
    -webkit-filter:drop-shadow(0 0 0.5rem #2b5d75);
}
/* ======November 22======= */
.numbered-list,.unordered-list{
    padding:2em 1em 1em
}
.numbered-list li {
    list-style:decimal;
}
.numbered-list li, .numbered-list li h3{
    font-size:2.2rem;
    font-weight:600;
    color:#222
}
.numbered-list li p{
    font-weight:normal;
}
.numbered-list li h4,.blog-single .inner-box .lower-content h4{
    font-size:1.8rem;
    font-weight:bold;
    color:#222
}
.unordered-list li{
    list-style:disc;
    font-weight:normal;
    font-size:18px;
}
.navigation li a{
    white-space:nowrap
}
.blog-list img{
    width:100%;
    height:15em;
    object-fit:cover;
}

