@charset "UTF-8";/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */@-webkit-keyframes bounce {
  20%,53%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%,43% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-15px,0);
    transform: translate3d(0,-15px,0);
  }

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

@keyframes bounce {
  20%,53%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%,43% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-15px,0);
    transform: translate3d(0,-15px,0);
  }

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

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

@-webkit-keyframes flash {
  50%,from,to {
    opacity: 1;
  }

  25%,75% {
    opacity: 0;
  }
}

@keyframes flash {
  50%,from,to {
    opacity: 1;
  }

  25%,75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

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

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

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

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

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

  30% {
    -webkit-transform: scale3d(1.25,.75,1);
    transform: scale3d(1.25,.75,1);
  }

  40% {
    -webkit-transform: scale3d(.75,1.25,1);
    transform: scale3d(.75,1.25,1);
  }

  50% {
    -webkit-transform: scale3d(1.15,.85,1);
    transform: scale3d(1.15,.85,1);
  }

  65% {
    -webkit-transform: scale3d(.95,1.05,1);
    transform: scale3d(.95,1.05,1);
  }

  75% {
    -webkit-transform: scale3d(1.05,.95,1);
    transform: scale3d(1.05,.95,1);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

  30% {
    -webkit-transform: scale3d(1.25,.75,1);
    transform: scale3d(1.25,.75,1);
  }

  40% {
    -webkit-transform: scale3d(.75,1.25,1);
    transform: scale3d(.75,1.25,1);
  }

  50% {
    -webkit-transform: scale3d(1.15,.85,1);
    transform: scale3d(1.15,.85,1);
  }

  65% {
    -webkit-transform: scale3d(.95,1.05,1);
    transform: scale3d(.95,1.05,1);
  }

  75% {
    -webkit-transform: scale3d(1.05,.95,1);
    transform: scale3d(1.05,.95,1);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

@-webkit-keyframes shake {
  from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

@keyframes shake {
  from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

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

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

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

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

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

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

  to {
    -webkit-transform: rotate3d(0,0,1,0deg);
    transform: rotate3d(0,0,1,0deg);
  }
}

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

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

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

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

  to {
    -webkit-transform: rotate3d(0,0,1,0deg);
    transform: rotate3d(0,0,1,0deg);
  }
}

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

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

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

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

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes jello {
  11.1%,from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg);
  }
}

@keyframes jello {
  11.1%,from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg);
  }
}

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  20%,40%,60%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

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

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

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

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes bounceIn {
  20%,40%,60%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

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

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

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

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInDown {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInLeft {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceInRight {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInRight {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceInUp {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInUp {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
}

.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    opacity: 0;
  }
}

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
    transform: perspective(400px) rotate3d(0,1,0,90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
    transform: perspective(400px) rotate3d(0,1,0,90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%,0,0) skewX(30deg);
    transform: translate3d(100%,0,0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%,0,0) skewX(30deg);
    transform: translate3d(100%,0,0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0,700px,0);
    transform: translate3d(0,700px,0);
    opacity: 0;
  }
}

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

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

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

  to {
    -webkit-transform: translate3d(0,700px,0);
    transform: translate3d(0,700px,0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px,0,0);
    transform: scale(.1) translate3d(-2000px,0,0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px,0,0);
    transform: scale(.1) translate3d(-2000px,0,0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px,0,0);
    transform: scale(.1) translate3d(2000px,0,0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px,0,0);
    transform: scale(.1) translate3d(2000px,0,0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print),(prefers-reduced-motion:reduce) {
  .animated {
    -webkit-animation-duration: 1ms!important;
    animation-duration: 1ms!important;
    -webkit-transition-duration: 1ms!important;
    transition-duration: 1ms!important;
    -webkit-animation-iteration-count: 1!important;
    animation-iteration-count: 1!important;
  }
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.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;
  -webkit-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item,.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
}

.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 {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

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

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

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

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

.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(../images/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

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

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

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

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

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

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family:boxicons;font-weight:400;font-style:normal;src:url(../fonts/boxicons.eot);src:url(../fonts/boxicons.eot) format('embedded-opentype'),url(../fonts/boxicons.woff2) format('woff2'),url(../fonts/boxicons.woff) format('woff'),url(../fonts/boxicons.ttf) format('truetype'),url(../fonts/boxicons.svg?#boxicons) format('svg');
}

.bx {
  font-family: boxicons!important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bx-ul {
  margin-left: 2em;
  padding-left: 0;
  list-style: none;
}

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

.bx-ul .bx {
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  left: -2em;
  width: 2em;
  text-align: center;
}

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

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

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

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

@-webkit-keyframes burst {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes burst {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

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

  45% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }
}

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

  45% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  10%,20% {
    -webkit-transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);
    transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);
  }

  30%,50%,70%,90% {
    -webkit-transform: scale3d(1,1,1) rotate3d(0,0,1,10deg);
    transform: scale3d(1,1,1) rotate3d(0,0,1,10deg);
  }

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

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

  10%,20% {
    -webkit-transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);
    transform: scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);
  }

  30%,50%,70%,90% {
    -webkit-transform: scale3d(1,1,1) rotate3d(0,0,1,10deg);
    transform: scale3d(1,1,1) rotate3d(0,0,1,10deg);
  }

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

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

.bx-spin {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.bx-spin-hover:hover {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.bx-tada {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}

.bx-tada-hover:hover {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}

.bx-flashing {
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 1.5s infinite linear;
}

.bx-flashing-hover:hover {
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 1.5s infinite linear;
}

.bx-burst {
  -webkit-animation: burst 1.5s infinite linear;
  animation: burst 1.5s infinite linear;
}

.bx-burst-hover:hover {
  -webkit-animation: burst 1.5s infinite linear;
  animation: burst 1.5s infinite linear;
}

.bx-fade-up {
  -webkit-animation: fade-up 1.5s infinite linear;
  animation: fade-up 1.5s infinite linear;
}

.bx-fade-up-hover:hover {
  -webkit-animation: fade-up 1.5s infinite linear;
  animation: fade-up 1.5s infinite linear;
}

.bx-fade-down {
  -webkit-animation: fade-down 1.5s infinite linear;
  animation: fade-down 1.5s infinite linear;
}

.bx-fade-down-hover:hover {
  -webkit-animation: fade-down 1.5s infinite linear;
  animation: fade-down 1.5s infinite linear;
}

.bx-fade-left {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}

.bx-fade-left-hover:hover {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}

.bx-fade-right {
  -webkit-animation: fade-right 1.5s infinite linear;
  animation: fade-right 1.5s infinite linear;
}

.bx-fade-right-hover:hover {
  -webkit-animation: fade-right 1.5s infinite linear;
  animation: fade-right 1.5s infinite linear;
}

.bx-xs {
  font-size: 1rem!important;
}

.bx-sm {
  font-size: 1.55rem!important;
}

.bx-md {
  font-size: 2.25rem!important;
}

.bx-fw {
  font-size: 1.2857142857em;
  line-height: .8em;
  width: 1.2857142857em;
  height: .8em;
  margin-top: -.2em!important;
  vertical-align: middle;
}

.bx-lg {
  font-size: 3rem!important;
}

.bx-pull-left {
  float: left;
  margin-right: .3em!important;
}

.bx-pull-right {
  float: right;
  margin-left: .3em!important;
}

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

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

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

.bx-flip-horizontal {
  transform: scaleX(-1);
}

.bx-flip-vertical {
  transform: scaleY(-1);
}

.bx-border {
  padding: .25em;
  border: .07em solid rgba(0,0,0,.1);
  border-radius: .25em;
}

.bx-border-circle {
  padding: .25em;
  border: .07em solid rgba(0,0,0,.1);
  border-radius: 50%;
}

.bxl-500px:before {
  content: "\e900";
}

.bxl-adobe:before {
  content: "\e901";
}

.bxl-airbnb:before {
  content: "\e902";
}

.bxl-algolia:before {
  content: "\e903";
}

.bxl-amazon:before {
  content: "\e904";
}

.bxl-android:before {
  content: "\e905";
}

.bxl-angular:before {
  content: "\e906";
}

.bxl-apple:before {
  content: "\e907";
}

.bxl-audible:before {
  content: "\e908";
}

.bxl-baidu:before {
  content: "\e909";
}

.bxl-behance:before {
  content: "\e90a";
}

.bxl-bing:before {
  content: "\e90b";
}

.bxl-bitcoin:before {
  content: "\e90c";
}

.bxl-blogger:before {
  content: "\e90d";
}

.bxl-bootstrap:before {
  content: "\e90e";
}

.bxl-chrome:before {
  content: "\e90f";
}

.bxl-codepen:before {
  content: "\e910";
}

.bxl-creative-commons:before {
  content: "\e911";
}

.bxl-css3:before {
  content: "\e912";
}

.bxl-dailymotion:before {
  content: "\e913";
}

.bxl-deviantart:before {
  content: "\e914";
}

.bxl-digg:before {
  content: "\e915";
}

.bxl-digitalocean:before {
  content: "\e916";
}

.bxl-discord:before {
  content: "\e917";
}

.bxl-discourse:before {
  content: "\e918";
}

.bxl-dribbble:before {
  content: "\e919";
}

.bxl-dropbox:before {
  content: "\e91a";
}

.bxl-drupal:before {
  content: "\e91b";
}

.bxl-ebay:before {
  content: "\e91c";
}

.bxl-edge:before {
  content: "\e91d";
}

.bxl-etsy:before {
  content: "\e91e";
}

.bxl-facebook:before {
  content: "\e91f";
}

.bxl-facebook-circle:before {
  content: "\e920";
}

.bxl-facebook-square:before {
  content: "\e921";
}

.bxl-figma:before {
  content: "\e922";
}

.bxl-firefox:before {
  content: "\e923";
}

.bxl-flickr:before {
  content: "\e924";
}

.bxl-flickr-square:before {
  content: "\e925";
}

.bxl-foursquare:before {
  content: "\e926";
}

.bxl-git:before {
  content: "\e927";
}

.bxl-github:before {
  content: "\e928";
}

.bxl-gitlab:before {
  content: "\e929";
}

.bxl-google:before {
  content: "\e92a";
}

.bxl-google-plus:before {
  content: "\e92b";
}

.bxl-google-plus-circle:before {
  content: "\e92c";
}

.bxl-html5:before {
  content: "\e92d";
}

.bxl-imdb:before {
  content: "\e92e";
}

.bxl-instagram:before {
  content: "\e92f";
}

.bxl-instagram-alt:before {
  content: "\e930";
}

.bxl-internet-explorer:before {
  content: "\e931";
}

.bxl-invision:before {
  content: "\e932";
}

.bxl-javascript:before {
  content: "\e933";
}

.bxl-joomla:before {
  content: "\e934";
}

.bxl-jquery:before {
  content: "\e935";
}

.bxl-jsfiddle:before {
  content: "\e936";
}

.bxl-kickstarter:before {
  content: "\e937";
}

.bxl-less:before {
  content: "\e938";
}

.bxl-linkedin:before {
  content: "\e939";
}

.bxl-linkedin-square:before {
  content: "\e93a";
}

.bxl-magento:before {
  content: "\e93b";
}

.bxl-mailchimp:before {
  content: "\e93c";
}

.bxl-mastercard:before {
  content: "\e93d";
}

.bxl-medium:before {
  content: "\e93e";
}

.bxl-medium-old:before {
  content: "\e93f";
}

.bxl-medium-square:before {
  content: "\e940";
}

.bxl-messenger:before {
  content: "\e941";
}

.bxl-microsoft:before {
  content: "\e942";
}

.bxl-nodejs:before {
  content: "\e943";
}

.bxl-opera:before {
  content: "\e944";
}

.bxl-patreon:before {
  content: "\e945";
}

.bxl-paypal:before {
  content: "\e946";
}

.bxl-periscope:before {
  content: "\e947";
}

.bxl-pinterest:before {
  content: "\e948";
}

.bxl-pinterest-alt:before {
  content: "\e949";
}

.bxl-play-store:before {
  content: "\e94a";
}

.bxl-pocket:before {
  content: "\e94b";
}

.bxl-product-hunt:before {
  content: "\e94c";
}

.bxl-quora:before {
  content: "\e94d";
}

.bxl-react:before {
  content: "\e94e";
}

.bxl-redbubble:before {
  content: "\e94f";
}

.bxl-reddit:before {
  content: "\e950";
}

.bxl-redux:before {
  content: "\e951";
}

.bxl-sass:before {
  content: "\e952";
}

.bxl-shopify:before {
  content: "\e953";
}

.bxl-skype:before {
  content: "\e954";
}

.bxl-slack:before {
  content: "\e955";
}

.bxl-slack-old:before {
  content: "\e956";
}

.bxl-snapchat:before {
  content: "\e957";
}

.bxl-soundcloud:before {
  content: "\e958";
}

.bxl-spotify:before {
  content: "\e959";
}

.bxl-squarespace:before {
  content: "\e95a";
}

.bxl-stack-overflow:before {
  content: "\e95b";
}

.bxl-stripe:before {
  content: "\e95c";
}

.bxl-telegram:before {
  content: "\e95d";
}

.bxl-trello:before {
  content: "\e95e";
}

.bxl-tumblr:before {
  content: "\e95f";
}

.bxl-twitch:before {
  content: "\e960";
}

.bxl-twitter:before {
  content: "\e961";
}

.bxl-unsplash:before {
  content: "\e962";
}

.bxl-vimeo:before {
  content: "\e963";
}

.bxl-visa:before {
  content: "\e964";
}

.bxl-vk:before {
  content: "\e965";
}

.bxl-vuejs:before {
  content: "\e966";
}

.bxl-whatsapp:before {
  content: "\e967";
}

.bxl-whatsapp-square:before {
  content: "\e968";
}

.bxl-wikipedia:before {
  content: "\e969";
}

.bxl-windows:before {
  content: "\e96a";
}

.bxl-wix:before {
  content: "\e96b";
}

.bxl-wordpress:before {
  content: "\e96c";
}

.bxl-yahoo:before {
  content: "\e96d";
}

.bxl-yelp:before {
  content: "\e96e";
}

.bxl-youtube:before {
  content: "\e96f";
}

.bx-accessibility:before {
  content: "\e970";
}

.bx-add-to-queue:before {
  content: "\e971";
}

.bx-adjust:before {
  content: "\e972";
}

.bx-alarm:before {
  content: "\e973";
}

.bx-alarm-add:before {
  content: "\e974";
}

.bx-alarm-off:before {
  content: "\e975";
}

.bx-album:before {
  content: "\e976";
}

.bx-align-justify:before {
  content: "\e977";
}

.bx-align-left:before {
  content: "\e978";
}

.bx-align-middle:before {
  content: "\e979";
}

.bx-align-right:before {
  content: "\e97a";
}

.bx-analyse:before {
  content: "\e97b";
}

.bx-anchor:before {
  content: "\e97c";
}

.bx-angry:before {
  content: "\e97d";
}

.bx-aperture:before {
  content: "\e97e";
}

.bx-arch:before {
  content: "\e97f";
}

.bx-archive:before {
  content: "\e980";
}

.bx-archive-in:before {
  content: "\e981";
}

.bx-archive-out:before {
  content: "\e982";
}

.bx-area:before {
  content: "\e983";
}

.bx-arrow-back:before {
  content: "\e984";
}

.bx-arrow-from-bottom:before {
  content: "\e985";
}

.bx-arrow-from-left:before {
  content: "\e986";
}

.bx-arrow-from-right:before {
  content: "\e987";
}

.bx-arrow-from-top:before {
  content: "\e988";
}

.bx-arrow-to-bottom:before {
  content: "\e989";
}

.bx-arrow-to-left:before {
  content: "\e98a";
}

.bx-arrow-to-right:before {
  content: "\e98b";
}

.bx-arrow-to-top:before {
  content: "\e98c";
}

.bx-at:before {
  content: "\e98d";
}

.bx-atom:before {
  content: "\e98e";
}

.bx-award:before {
  content: "\e98f";
}

.bx-badge:before {
  content: "\e990";
}

.bx-badge-check:before {
  content: "\e991";
}

.bx-ball:before {
  content: "\e992";
}

.bx-band-aid:before {
  content: "\e993";
}

.bx-bar-chart:before {
  content: "\e994";
}

.bx-bar-chart-alt:before {
  content: "\e995";
}

.bx-bar-chart-alt-2:before {
  content: "\e996";
}

.bx-bar-chart-square:before {
  content: "\e997";
}

.bx-barcode:before {
  content: "\e998";
}

.bx-baseball:before {
  content: "\e999";
}

.bx-basket:before {
  content: "\e99a";
}

.bx-basketball:before {
  content: "\e99b";
}

.bx-bath:before {
  content: "\e99c";
}

.bx-battery:before {
  content: "\e99d";
}

.bx-bed:before {
  content: "\e99e";
}

.bx-been-here:before {
  content: "\e99f";
}

.bx-beer:before {
  content: "\e9a0";
}

.bx-bell:before {
  content: "\e9a1";
}

.bx-bell-minus:before {
  content: "\e9a2";
}

.bx-bell-off:before {
  content: "\e9a3";
}

.bx-bell-plus:before {
  content: "\e9a4";
}

.bx-bible:before {
  content: "\e9a5";
}

.bx-bitcoin:before {
  content: "\e9a6";
}

.bx-block:before {
  content: "\e9a7";
}

.bx-bluetooth:before {
  content: "\e9a8";
}

.bx-body:before {
  content: "\e9a9";
}

.bx-bold:before {
  content: "\e9aa";
}

.bx-bolt-circle:before {
  content: "\e9ab";
}

.bx-bomb:before {
  content: "\e9ac";
}

.bx-book:before {
  content: "\e9ad";
}

.bx-book-bookmark:before {
  content: "\e9ae";
}

.bx-book-content:before {
  content: "\e9af";
}

.bx-bookmark:before {
  content: "\e9b0";
}

.bx-bookmark-minus:before {
  content: "\e9b1";
}

.bx-bookmark-plus:before {
  content: "\e9b2";
}

.bx-bookmarks:before {
  content: "\e9b3";
}

.bx-book-open:before {
  content: "\e9b4";
}

.bx-book-reader:before {
  content: "\e9b5";
}

.bx-border-all:before {
  content: "\e9b6";
}

.bx-border-bottom:before {
  content: "\e9b7";
}

.bx-border-inner:before {
  content: "\e9b8";
}

.bx-border-left:before {
  content: "\e9b9";
}

.bx-border-none:before {
  content: "\e9ba";
}

.bx-border-radius:before {
  content: "\e9bb";
}

.bx-border-right:before {
  content: "\e9bc";
}

.bx-border-top:before {
  content: "\e9bd";
}

.bx-bot:before {
  content: "\e9be";
}

.bx-bowling-ball:before {
  content: "\e9bf";
}

.bx-box:before {
  content: "\e9c0";
}

.bx-briefcase:before {
  content: "\e9c1";
}

.bx-briefcase-alt:before {
  content: "\e9c2";
}

.bx-briefcase-alt-2:before {
  content: "\e9c3";
}

.bx-brightness:before {
  content: "\e9c4";
}

.bx-brightness-half:before {
  content: "\e9c5";
}

.bx-broadcast:before {
  content: "\e9c6";
}

.bx-brush:before {
  content: "\e9c7";
}

.bx-brush-alt:before {
  content: "\e9c8";
}

.bx-bug:before {
  content: "\e9c9";
}

.bx-bug-alt:before {
  content: "\e9ca";
}

.bx-building:before {
  content: "\e9cb";
}

.bx-building-house:before {
  content: "\e9cc";
}

.bx-buildings:before {
  content: "\e9cd";
}

.bx-bulb:before {
  content: "\e9ce";
}

.bx-bullseye:before {
  content: "\e9cf";
}

.bx-buoy:before {
  content: "\e9d0";
}

.bx-bus:before {
  content: "\e9d1";
}

.bx-bus-school:before {
  content: "\e9d2";
}

.bx-cabinet:before {
  content: "\e9d3";
}

.bx-cake:before {
  content: "\e9d4";
}

.bx-calculator:before {
  content: "\e9d5";
}

.bx-calendar:before {
  content: "\e9d6";
}

.bx-calendar-alt:before {
  content: "\e9d7";
}

.bx-calendar-check:before {
  content: "\e9d8";
}

.bx-calendar-edit:before {
  content: "\e9d9";
}

.bx-calendar-event:before {
  content: "\e9da";
}

.bx-calendar-minus:before {
  content: "\e9db";
}

.bx-calendar-plus:before {
  content: "\e9dc";
}

.bx-calendar-week:before {
  content: "\e9dd";
}

.bx-calendar-x:before {
  content: "\e9de";
}

.bx-camera:before {
  content: "\e9df";
}

.bx-camera-off:before {
  content: "\e9e0";
}

.bx-captions:before {
  content: "\e9e1";
}

.bx-car:before {
  content: "\e9e2";
}

.bx-card:before {
  content: "\e9e3";
}

.bx-caret-down:before {
  content: "\e9e4";
}

.bx-caret-left:before {
  content: "\e9e5";
}

.bx-caret-right:before {
  content: "\e9e6";
}

.bx-caret-up:before {
  content: "\e9e7";
}

.bx-carousel:before {
  content: "\e9e8";
}

.bx-cart:before {
  content: "\e9e9";
}

.bx-cart-alt:before {
  content: "\e9ea";
}

.bx-cast:before {
  content: "\e9eb";
}

.bx-certification:before {
  content: "\e9ec";
}

.bx-chalkboard:before {
  content: "\e9ed";
}

.bx-chart:before {
  content: "\e9ee";
}

.bx-chat:before {
  content: "\e9ef";
}

.bx-check:before {
  content: "\e9f0";
}

.bx-checkbox:before {
  content: "\e9f1";
}

.bx-checkbox-checked:before {
  content: "\e9f2";
}

.bx-checkbox-square:before {
  content: "\e9f3";
}

.bx-check-circle:before {
  content: "\e9f4";
}

.bx-check-double:before {
  content: "\e9f5";
}

.bx-check-shield:before {
  content: "\e9f6";
}

.bx-check-square:before {
  content: "\e9f7";
}

.bx-chevron-down:before {
  content: "\e9f8";
}

.bx-chevron-left:before {
  content: "\e9f9";
}

.bx-chevron-right:before {
  content: "\e9fa";
}

.bx-chevrons-down:before {
  content: "\e9fb";
}

.bx-chevrons-left:before {
  content: "\e9fc";
}

.bx-chevrons-right:before {
  content: "\e9fd";
}

.bx-chevrons-up:before {
  content: "\e9fe";
}

.bx-chevron-up:before {
  content: "\e9ff";
}

.bx-chip:before {
  content: "\ea00";
}

.bx-circle:before {
  content: "\ea01";
}

.bx-clinic:before {
  content: "\ea02";
}

.bx-clipboard:before {
  content: "\ea03";
}

.bx-closet:before {
  content: "\ea04";
}

.bx-cloud:before {
  content: "\ea05";
}

.bx-cloud-download:before {
  content: "\ea06";
}

.bx-cloud-drizzle:before {
  content: "\ea07";
}

.bx-cloud-lightning:before {
  content: "\ea08";
}

.bx-cloud-light-rain:before {
  content: "\ea09";
}

.bx-cloud-rain:before {
  content: "\ea0a";
}

.bx-cloud-snow:before {
  content: "\ea0b";
}

.bx-cloud-upload:before {
  content: "\ea0c";
}

.bx-code:before {
  content: "\ea0d";
}

.bx-code-alt:before {
  content: "\ea0e";
}

.bx-code-block:before {
  content: "\ea0f";
}

.bx-code-curly:before {
  content: "\ea10";
}

.bx-coffee:before {
  content: "\ea11";
}

.bx-coffee-togo:before {
  content: "\ea12";
}

.bx-cog:before {
  content: "\ea13";
}

.bx-collapse:before {
  content: "\ea14";
}

.bx-collection:before {
  content: "\ea15";
}

.bx-columns:before {
  content: "\ea16";
}

.bx-command:before {
  content: "\ea17";
}

.bx-comment:before {
  content: "\ea18";
}

.bx-comment-dots:before {
  content: "\ea19";
}

.bx-compass:before {
  content: "\ea1a";
}

.bx-confused:before {
  content: "\ea1b";
}

.bx-conversation:before {
  content: "\ea1c";
}

.bx-cool:before {
  content: "\ea1d";
}

.bx-copy:before {
  content: "\ea1e";
}

.bx-copy-alt:before {
  content: "\ea1f";
}

.bx-copyright:before {
  content: "\ea20";
}

.bx-credit-card:before {
  content: "\ea21";
}

.bx-credit-card-alt:before {
  content: "\ea22";
}

.bx-crop:before {
  content: "\ea23";
}

.bx-crosshair:before {
  content: "\ea24";
}

.bx-crown:before {
  content: "\ea25";
}

.bx-cube:before {
  content: "\ea26";
}

.bx-cube-alt:before {
  content: "\ea27";
}

.bx-cuboid:before {
  content: "\ea28";
}

.bx-current-location:before {
  content: "\ea29";
}

.bx-customize:before {
  content: "\ea2a";
}

.bx-cut:before {
  content: "\ea2b";
}

.bx-cycling:before {
  content: "\ea2c";
}

.bx-cylinder:before {
  content: "\ea2d";
}

.bx-data:before {
  content: "\ea2e";
}

.bx-desktop:before {
  content: "\ea2f";
}

.bx-detail:before {
  content: "\ea30";
}

.bx-devices:before {
  content: "\ea31";
}

.bx-dialpad:before {
  content: "\ea32";
}

.bx-dialpad-alt:before {
  content: "\ea33";
}

.bx-diamond:before {
  content: "\ea34";
}

.bx-dice-1:before {
  content: "\ea35";
}

.bx-dice-2:before {
  content: "\ea36";
}

.bx-dice-3:before {
  content: "\ea37";
}

.bx-dice-4:before {
  content: "\ea38";
}

.bx-dice-5:before {
  content: "\ea39";
}

.bx-dice-6:before {
  content: "\ea3a";
}

.bx-directions:before {
  content: "\ea3b";
}

.bx-disc:before {
  content: "\ea3c";
}

.bx-dish:before {
  content: "\ea3d";
}

.bx-dislike:before {
  content: "\ea3e";
}

.bx-dizzy:before {
  content: "\ea3f";
}

.bx-dna:before {
  content: "\ea40";
}

.bx-dock-bottom:before {
  content: "\ea41";
}

.bx-dock-left:before {
  content: "\ea42";
}

.bx-dock-right:before {
  content: "\ea43";
}

.bx-dock-top:before {
  content: "\ea44";
}

.bx-dollar:before {
  content: "\ea45";
}

.bx-dollar-circle:before {
  content: "\ea46";
}

.bx-dots-horizontal:before {
  content: "\ea47";
}

.bx-dots-horizontal-rounded:before {
  content: "\ea48";
}

.bx-dots-vertical:before {
  content: "\ea49";
}

.bx-dots-vertical-rounded:before {
  content: "\ea4a";
}

.bx-doughnut-chart:before {
  content: "\ea4b";
}

.bx-down-arrow:before {
  content: "\ea4c";
}

.bx-down-arrow-alt:before {
  content: "\ea4d";
}

.bx-down-arrow-circle:before {
  content: "\ea4e";
}

.bx-download:before {
  content: "\ea4f";
}

.bx-downvote:before {
  content: "\ea50";
}

.bx-droplet:before {
  content: "\ea51";
}

.bx-dumbbell:before {
  content: "\ea52";
}

.bx-duplicate:before {
  content: "\ea53";
}

.bx-edit:before {
  content: "\ea54";
}

.bx-edit-alt:before {
  content: "\ea55";
}

.bx-envelope:before {
  content: "\ea56";
}

.bx-equalizer:before {
  content: "\ea57";
}

.bx-error:before {
  content: "\ea58";
}

.bx-error-alt:before {
  content: "\ea59";
}

.bx-error-circle:before {
  content: "\ea5a";
}

.bx-euro:before {
  content: "\ea5b";
}

.bx-exit:before {
  content: "\ea5c";
}

.bx-exit-fullscreen:before {
  content: "\ea5d";
}

.bx-expand:before {
  content: "\ea5e";
}

.bx-export:before {
  content: "\ea5f";
}

.bx-extension:before {
  content: "\ea60";
}

.bx-face:before {
  content: "\ea61";
}

.bx-fast-forward:before {
  content: "\ea62";
}

.bx-fast-forward-circle:before {
  content: "\ea63";
}

.bx-female:before {
  content: "\ea64";
}

.bx-female-sign:before {
  content: "\ea65";
}

.bx-file:before {
  content: "\ea66";
}

.bx-file-blank:before {
  content: "\ea67";
}

.bx-file-find:before {
  content: "\ea68";
}

.bx-film:before {
  content: "\ea69";
}

.bx-filter:before {
  content: "\ea6a";
}

.bx-filter-alt:before {
  content: "\ea6b";
}

.bx-fingerprint:before {
  content: "\ea6c";
}

.bx-first-aid:before {
  content: "\ea6d";
}

.bx-first-page:before {
  content: "\ea6e";
}

.bx-flag:before {
  content: "\ea6f";
}

.bx-folder:before {
  content: "\ea70";
}

.bx-folder-minus:before {
  content: "\ea71";
}

.bx-folder-open:before {
  content: "\ea72";
}

.bx-folder-plus:before {
  content: "\ea73";
}

.bx-font:before {
  content: "\ea74";
}

.bx-font-color:before {
  content: "\ea75";
}

.bx-font-family:before {
  content: "\ea76";
}

.bx-font-size:before {
  content: "\ea77";
}

.bx-food-menu:before {
  content: "\ea78";
}

.bx-food-tag:before {
  content: "\ea79";
}

.bx-football:before {
  content: "\ea7a";
}

.bx-fridge:before {
  content: "\ea7b";
}

.bx-fullscreen:before {
  content: "\ea7c";
}

.bx-gas-pump:before {
  content: "\ea7d";
}

.bx-ghost:before {
  content: "\ea7e";
}

.bx-gift:before {
  content: "\ea7f";
}

.bx-git-branch:before {
  content: "\ea80";
}

.bx-git-commit:before {
  content: "\ea81";
}

.bx-git-compare:before {
  content: "\ea82";
}

.bx-git-merge:before {
  content: "\ea83";
}

.bx-git-pull-request:before {
  content: "\ea84";
}

.bx-git-repo-forked:before {
  content: "\ea85";
}

.bx-glasses:before {
  content: "\ea86";
}

.bx-glasses-alt:before {
  content: "\ea87";
}

.bx-globe:before {
  content: "\ea88";
}

.bx-globe-alt:before {
  content: "\ea89";
}

.bx-grid:before {
  content: "\ea8a";
}

.bx-grid-alt:before {
  content: "\ea8b";
}

.bx-grid-horizontal:before {
  content: "\ea8c";
}

.bx-grid-small:before {
  content: "\ea8d";
}

.bx-grid-vertical:before {
  content: "\ea8e";
}

.bx-group:before {
  content: "\ea8f";
}

.bx-handicap:before {
  content: "\ea90";
}

.bx-happy:before {
  content: "\ea91";
}

.bx-happy-alt:before {
  content: "\ea92";
}

.bx-happy-beaming:before {
  content: "\ea93";
}

.bx-happy-heart-eyes:before {
  content: "\ea94";
}

.bx-hash:before {
  content: "\ea95";
}

.bx-hdd:before {
  content: "\ea96";
}

.bx-heading:before {
  content: "\ea97";
}

.bx-headphone:before {
  content: "\ea98";
}

.bx-health:before {
  content: "\ea99";
}

.bx-heart:before {
  content: "\ea9a";
}

.bx-heart-circle:before {
  content: "\ea9b";
}

.bx-heart-square:before {
  content: "\ea9c";
}

.bx-help-circle:before {
  content: "\ea9d";
}

.bx-hide:before {
  content: "\ea9e";
}

.bx-highlight:before {
  content: "\ea9f";
}

.bx-history:before {
  content: "\eaa0";
}

.bx-hive:before {
  content: "\eaa1";
}

.bx-home:before {
  content: "\eaa2";
}

.bx-home-alt:before {
  content: "\eaa3";
}

.bx-home-circle:before {
  content: "\eaa4";
}

.bx-home-heart:before {
  content: "\eaa5";
}

.bx-horizontal-center:before {
  content: "\eaa6";
}

.bx-hotel:before {
  content: "\eaa7";
}

.bx-hourglass:before {
  content: "\eaa8";
}

.bx-id-card:before {
  content: "\eaa9";
}

.bx-image:before {
  content: "\eaaa";
}

.bx-image-add:before {
  content: "\eaab";
}

.bx-image-alt:before {
  content: "\eaac";
}

.bx-images:before {
  content: "\eaad";
}

.bx-import:before {
  content: "\eaae";
}

.bx-infinite:before {
  content: "\eaaf";
}

.bx-info-circle:before {
  content: "\eab0";
}

.bx-info-square:before {
  content: "\eab1";
}

.bx-italic:before {
  content: "\eab2";
}

.bx-joystick:before {
  content: "\eab3";
}

.bx-joystick-alt:before {
  content: "\eab4";
}

.bx-joystick-button:before {
  content: "\eab5";
}

.bx-key:before {
  content: "\eab6";
}

.bx-label:before {
  content: "\eab7";
}

.bx-landscape:before {
  content: "\eab8";
}

.bx-laptop:before {
  content: "\eab9";
}

.bx-last-page:before {
  content: "\eaba";
}

.bx-laugh:before {
  content: "\eabb";
}

.bx-layer:before {
  content: "\eabc";
}

.bx-layer-minus:before {
  content: "\eabd";
}

.bx-layer-plus:before {
  content: "\eabe";
}

.bx-layout:before {
  content: "\eabf";
}

.bx-left-arrow:before {
  content: "\eac0";
}

.bx-left-arrow-alt:before {
  content: "\eac1";
}

.bx-left-arrow-circle:before {
  content: "\eac2";
}

.bx-left-down-arrow-circle:before {
  content: "\eac3";
}

.bx-left-indent:before {
  content: "\eac4";
}

.bx-left-top-arrow-circle:before {
  content: "\eac5";
}

.bx-like:before {
  content: "\eac6";
}

.bx-line-chart:before {
  content: "\eac7";
}

.bx-link:before {
  content: "\eac8";
}

.bx-link-alt:before {
  content: "\eac9";
}

.bx-link-external:before {
  content: "\eaca";
}

.bx-lira:before {
  content: "\eacb";
}

.bx-list-check:before {
  content: "\eacc";
}

.bx-list-minus:before {
  content: "\eacd";
}

.bx-list-ol:before {
  content: "\eace";
}

.bx-list-plus:before {
  content: "\eacf";
}

.bx-list-ul:before {
  content: "\ead0";
}

.bx-loader:before {
  content: "\ead1";
}

.bx-loader-alt:before {
  content: "\ead2";
}

.bx-loader-circle:before {
  content: "\ead3";
}

.bx-location-plus:before {
  content: "\ead4";
}

.bx-lock:before {
  content: "\ead5";
}

.bx-lock-alt:before {
  content: "\ead6";
}

.bx-lock-open:before {
  content: "\ead7";
}

.bx-lock-open-alt:before {
  content: "\ead8";
}

.bx-log-in:before {
  content: "\ead9";
}

.bx-log-in-circle:before {
  content: "\eada";
}

.bx-log-out:before {
  content: "\eadb";
}

.bx-log-out-circle:before {
  content: "\eadc";
}

.bx-low-vision:before {
  content: "\eadd";
}

.bx-magnet:before {
  content: "\eade";
}

.bx-mail-send:before {
  content: "\eadf";
}

.bx-male:before {
  content: "\eae0";
}

.bx-male-sign:before {
  content: "\eae1";
}

.bx-map:before {
  content: "\eae2";
}

.bx-map-alt:before {
  content: "\eae3";
}

.bx-map-pin:before {
  content: "\eae4";
}

.bx-mask:before {
  content: "\eae5";
}

.bx-meh:before {
  content: "\eae6";
}

.bx-meh-alt:before {
  content: "\eae7";
}

.bx-meh-blank:before {
  content: "\eae8";
}

.bx-memory-card:before {
  content: "\eae9";
}

.bx-menu:before {
  content: "\eaea";
}

.bx-menu-alt-left:before {
  content: "\eaeb";
}

.bx-menu-alt-right:before {
  content: "\eaec";
}

.bx-message:before {
  content: "\eaed";
}

.bx-message-alt:before {
  content: "\eaee";
}

.bx-message-alt-dots:before {
  content: "\eaef";
}

.bx-message-dots:before {
  content: "\eaf0";
}

.bx-message-rounded:before {
  content: "\eaf1";
}

.bx-message-rounded-dots:before {
  content: "\eaf2";
}

.bx-message-square:before {
  content: "\eaf3";
}

.bx-message-square-dots:before {
  content: "\eaf4";
}

.bx-microchip:before {
  content: "\eaf5";
}

.bx-microphone:before {
  content: "\eaf6";
}

.bx-microphone-off:before {
  content: "\eaf7";
}

.bx-minus:before {
  content: "\eaf8";
}

.bx-minus-circle:before {
  content: "\eaf9";
}

.bx-mobile:before {
  content: "\eafa";
}

.bx-mobile-alt:before {
  content: "\eafb";
}

.bx-mobile-landscape:before {
  content: "\eafc";
}

.bx-mobile-vibration:before {
  content: "\eafd";
}

.bx-money:before {
  content: "\eafe";
}

.bx-moon:before {
  content: "\eaff";
}

.bx-mouse:before {
  content: "\eb00";
}

.bx-mouse-alt:before {
  content: "\eb01";
}

.bx-move:before {
  content: "\eb02";
}

.bx-move-horizontal:before {
  content: "\eb03";
}

.bx-move-vertical:before {
  content: "\eb04";
}

.bx-movie:before {
  content: "\eb05";
}

.bx-music:before {
  content: "\eb06";
}

.bx-navigation:before {
  content: "\eb07";
}

.bx-news:before {
  content: "\eb08";
}

.bx-no-entry:before {
  content: "\eb09";
}

.bx-note:before {
  content: "\eb0a";
}

.bx-notepad:before {
  content: "\eb0b";
}

.bx-notification:before {
  content: "\eb0c";
}

.bx-notification-off:before {
  content: "\eb0d";
}

.bx-package:before {
  content: "\eb0e";
}

.bx-paint:before {
  content: "\eb0f";
}

.bx-paint-roll:before {
  content: "\eb10";
}

.bx-palette:before {
  content: "\eb11";
}

.bx-paperclip:before {
  content: "\eb12";
}

.bx-paper-plane:before {
  content: "\eb13";
}

.bx-paragraph:before {
  content: "\eb14";
}

.bx-paste:before {
  content: "\eb15";
}

.bx-pause:before {
  content: "\eb16";
}

.bx-pause-circle:before {
  content: "\eb17";
}

.bx-pen:before {
  content: "\eb18";
}

.bx-pencil:before {
  content: "\eb19";
}

.bx-phone:before {
  content: "\eb1a";
}

.bx-phone-call:before {
  content: "\eb1b";
}

.bx-phone-incoming:before {
  content: "\eb1c";
}

.bx-phone-outgoing:before {
  content: "\eb1d";
}

.bx-photo-album:before {
  content: "\eb1e";
}

.bx-pie-chart:before {
  content: "\eb1f";
}

.bx-pie-chart-alt:before {
  content: "\eb20";
}

.bx-pie-chart-alt-2:before {
  content: "\eb21";
}

.bx-pin:before {
  content: "\eb22";
}

.bx-planet:before {
  content: "\eb23";
}

.bx-play:before {
  content: "\eb24";
}

.bx-play-circle:before {
  content: "\eb25";
}

.bx-plug:before {
  content: "\eb26";
}

.bx-plus:before {
  content: "\eb27";
}

.bx-plus-circle:before {
  content: "\eb28";
}

.bx-plus-medical:before {
  content: "\eb29";
}

.bx-pointer:before {
  content: "\eb2a";
}

.bx-poll:before {
  content: "\eb2b";
}

.bx-polygon:before {
  content: "\eb2c";
}

.bx-pound:before {
  content: "\eb2d";
}

.bx-power-off:before {
  content: "\eb2e";
}

.bx-printer:before {
  content: "\eb2f";
}

.bx-pulse:before {
  content: "\eb30";
}

.bx-purchase-tag:before {
  content: "\eb31";
}

.bx-purchase-tag-alt:before {
  content: "\eb32";
}

.bx-pyramid:before {
  content: "\eb33";
}

.bx-question-mark:before {
  content: "\eb34";
}

.bx-radar:before {
  content: "\eb35";
}

.bx-radio:before {
  content: "\eb36";
}

.bx-radio-circle:before {
  content: "\eb37";
}

.bx-radio-circle-marked:before {
  content: "\eb38";
}

.bx-receipt:before {
  content: "\eb39";
}

.bx-rectangle:before {
  content: "\eb3a";
}

.bx-recycle:before {
  content: "\eb3b";
}

.bx-redo:before {
  content: "\eb3c";
}

.bx-rename:before {
  content: "\eb3d";
}

.bx-repeat:before {
  content: "\eb3e";
}

.bx-reply:before {
  content: "\eb3f";
}

.bx-reply-all:before {
  content: "\eb40";
}

.bx-repost:before {
  content: "\eb41";
}

.bx-reset:before {
  content: "\eb42";
}

.bx-restaurant:before {
  content: "\eb43";
}

.bx-revision:before {
  content: "\eb44";
}

.bx-rewind:before {
  content: "\eb45";
}

.bx-rewind-circle:before {
  content: "\eb46";
}

.bx-right-arrow:before {
  content: "\eb47";
}

.bx-right-arrow-alt:before {
  content: "\eb48";
}

.bx-right-arrow-circle:before {
  content: "\eb49";
}

.bx-right-down-arrow-circle:before {
  content: "\eb4a";
}

.bx-right-indent:before {
  content: "\eb4b";
}

.bx-right-top-arrow-circle:before {
  content: "\eb4c";
}

.bx-rocket:before {
  content: "\eb4d";
}

.bx-rotate-left:before {
  content: "\eb4e";
}

.bx-rotate-right:before {
  content: "\eb4f";
}

.bx-rss:before {
  content: "\eb50";
}

.bx-ruble:before {
  content: "\eb51";
}

.bx-ruler:before {
  content: "\eb52";
}

.bx-run:before {
  content: "\eb53";
}

.bx-rupee:before {
  content: "\eb54";
}

.bx-sad:before {
  content: "\eb55";
}

.bx-save:before {
  content: "\eb56";
}

.bx-scan:before {
  content: "\eb57";
}

.bx-screenshot:before {
  content: "\eb58";
}

.bx-search:before {
  content: "\eb59";
}

.bx-search-alt:before {
  content: "\eb5a";
}

.bx-search-alt-2:before {
  content: "\eb5b";
}

.bx-selection:before {
  content: "\eb5c";
}

.bx-select-multiple:before {
  content: "\eb5d";
}

.bx-send:before {
  content: "\eb5e";
}

.bx-server:before {
  content: "\eb5f";
}

.bx-shape-circle:before {
  content: "\eb60";
}

.bx-shape-square:before {
  content: "\eb61";
}

.bx-shape-triangle:before {
  content: "\eb62";
}

.bx-share:before {
  content: "\eb63";
}

.bx-share-alt:before {
  content: "\eb64";
}

.bx-shekel:before {
  content: "\eb65";
}

.bx-shield:before {
  content: "\eb66";
}

.bx-shield-alt:before {
  content: "\eb67";
}

.bx-shield-alt-2:before {
  content: "\eb68";
}

.bx-shield-quarter:before {
  content: "\eb69";
}

.bx-shocked:before {
  content: "\eb6a";
}

.bx-shopping-bag:before {
  content: "\eb6b";
}

.bx-show:before {
  content: "\eb6c";
}

.bx-show-alt:before {
  content: "\eb6d";
}

.bx-shuffle:before {
  content: "\eb6e";
}

.bx-sidebar:before {
  content: "\eb6f";
}

.bx-sitemap:before {
  content: "\eb70";
}

.bx-skip-next:before {
  content: "\eb71";
}

.bx-skip-next-circle:before {
  content: "\eb72";
}

.bx-skip-previous:before {
  content: "\eb73";
}

.bx-skip-previous-circle:before {
  content: "\eb74";
}

.bx-sleepy:before {
  content: "\eb75";
}

.bx-slider:before {
  content: "\eb76";
}

.bx-slider-alt:before {
  content: "\eb77";
}

.bx-slideshow:before {
  content: "\eb78";
}

.bx-smile:before {
  content: "\eb79";
}

.bx-sort:before {
  content: "\eb7a";
}

.bx-sort-a-z:before {
  content: "\eb7b";
}

.bx-sort-down:before {
  content: "\eb7c";
}

.bx-sort-up:before {
  content: "\eb7d";
}

.bx-sort-z-a:before {
  content: "\eb7e";
}

.bx-spa:before {
  content: "\eb7f";
}

.bx-space-bar:before {
  content: "\eb80";
}

.bx-spray-can:before {
  content: "\eb81";
}

.bx-spreadsheet:before {
  content: "\eb82";
}

.bx-square:before {
  content: "\eb83";
}

.bx-square-rounded:before {
  content: "\eb84";
}

.bx-star:before {
  content: "\eb85";
}

.bx-station:before {
  content: "\eb86";
}

.bx-stats:before {
  content: "\eb87";
}

.bx-sticker:before {
  content: "\eb88";
}

.bx-stop:before {
  content: "\eb89";
}

.bx-stop-circle:before {
  content: "\eb8a";
}

.bx-stopwatch:before {
  content: "\eb8b";
}

.bx-store:before {
  content: "\eb8c";
}

.bx-store-alt:before {
  content: "\eb8d";
}

.bx-street-view:before {
  content: "\eb8e";
}

.bx-strikethrough:before {
  content: "\eb8f";
}

.bx-subdirectory-left:before {
  content: "\eb90";
}

.bx-subdirectory-right:before {
  content: "\eb91";
}

.bx-sun:before {
  content: "\eb92";
}

.bx-support:before {
  content: "\eb93";
}

.bx-swim:before {
  content: "\eb94";
}

.bx-sync:before {
  content: "\eb95";
}

.bx-tab:before {
  content: "\eb96";
}

.bx-table:before {
  content: "\eb97";
}

.bx-tachometer:before {
  content: "\eb98";
}

.bx-tag:before {
  content: "\eb99";
}

.bx-target-lock:before {
  content: "\eb9a";
}

.bx-task:before {
  content: "\eb9b";
}

.bx-taxi:before {
  content: "\eb9c";
}

.bx-tennis-ball:before {
  content: "\eb9d";
}

.bx-terminal:before {
  content: "\eb9e";
}

.bx-test-tube:before {
  content: "\eb9f";
}

.bx-text:before {
  content: "\eba0";
}

.bx-time:before {
  content: "\eba1";
}

.bx-time-five:before {
  content: "\eba2";
}

.bx-timer:before {
  content: "\eba3";
}

.bx-tired:before {
  content: "\eba4";
}

.bx-toggle-left:before {
  content: "\eba5";
}

.bx-toggle-right:before {
  content: "\eba6";
}

.bx-tone:before {
  content: "\eba7";
}

.bx-traffic-cone:before {
  content: "\eba8";
}

.bx-train:before {
  content: "\eba9";
}

.bx-transfer:before {
  content: "\ebaa";
}

.bx-transfer-alt:before {
  content: "\ebab";
}

.bx-trash:before {
  content: "\ebac";
}

.bx-trash-alt:before {
  content: "\ebad";
}

.bx-trending-down:before {
  content: "\ebae";
}

.bx-trending-up:before {
  content: "\ebaf";
}

.bx-trophy:before {
  content: "\ebb0";
}

.bx-tv:before {
  content: "\ebb1";
}

.bx-underline:before {
  content: "\ebb2";
}

.bx-undo:before {
  content: "\ebb3";
}

.bx-unlink:before {
  content: "\ebb4";
}

.bx-up-arrow:before {
  content: "\ebb5";
}

.bx-up-arrow-alt:before {
  content: "\ebb6";
}

.bx-up-arrow-circle:before {
  content: "\ebb7";
}

.bx-upload:before {
  content: "\ebb8";
}

.bx-upside-down:before {
  content: "\ebb9";
}

.bx-upvote:before {
  content: "\ebba";
}

.bx-usb:before {
  content: "\ebbb";
}

.bx-user:before {
  content: "\ebbc";
}

.bx-user-check:before {
  content: "\ebbd";
}

.bx-user-circle:before {
  content: "\ebbe";
}

.bx-user-minus:before {
  content: "\ebbf";
}

.bx-user-pin:before {
  content: "\ebc0";
}

.bx-user-plus:before {
  content: "\ebc1";
}

.bx-user-voice:before {
  content: "\ebc2";
}

.bx-user-x:before {
  content: "\ebc3";
}

.bx-vertical-center:before {
  content: "\ebc4";
}

.bx-video:before {
  content: "\ebc5";
}

.bx-video-off:before {
  content: "\ebc6";
}

.bx-video-plus:before {
  content: "\ebc7";
}

.bx-video-recording:before {
  content: "\ebc8";
}

.bx-voicemail:before {
  content: "\ebc9";
}

.bx-volume:before {
  content: "\ebca";
}

.bx-volume-full:before {
  content: "\ebcb";
}

.bx-volume-low:before {
  content: "\ebcc";
}

.bx-volume-mute:before {
  content: "\ebcd";
}

.bx-walk:before {
  content: "\ebce";
}

.bx-wallet:before {
  content: "\ebcf";
}

.bx-wallet-alt:before {
  content: "\ebd0";
}

.bx-water:before {
  content: "\ebd1";
}

.bx-webcam:before {
  content: "\ebd2";
}

.bx-wifi:before {
  content: "\ebd3";
}

.bx-wifi-0:before {
  content: "\ebd4";
}

.bx-wifi-1:before {
  content: "\ebd5";
}

.bx-wifi-2:before {
  content: "\ebd6";
}

.bx-wifi-off:before {
  content: "\ebd7";
}

.bx-wind:before {
  content: "\ebd8";
}

.bx-window:before {
  content: "\ebd9";
}

.bx-window-close:before {
  content: "\ebda";
}

.bx-window-open:before {
  content: "\ebdb";
}

.bx-windows:before {
  content: "\ebdc";
}

.bx-wink-smile:before {
  content: "\ebdd";
}

.bx-wink-tongue:before {
  content: "\ebde";
}

.bx-won:before {
  content: "\ebdf";
}

.bx-world:before {
  content: "\ebe0";
}

.bx-wrench:before {
  content: "\ebe1";
}

.bx-x:before {
  content: "\ebe2";
}

.bx-x-circle:before {
  content: "\ebe3";
}

.bx-yen:before {
  content: "\ebe4";
}

.bx-zoom-in:before {
  content: "\ebe5";
}

.bx-zoom-out:before {
  content: "\ebe6";
}

.bxs-add-to-queue:before {
  content: "\ebe7";
}

.bxs-adjust:before {
  content: "\ebe8";
}

.bxs-adjust-alt:before {
  content: "\ebe9";
}

.bxs-alarm:before {
  content: "\ebea";
}

.bxs-alarm-add:before {
  content: "\ebeb";
}

.bxs-alarm-off:before {
  content: "\ebec";
}

.bxs-album:before {
  content: "\ebed";
}

.bxs-ambulance:before {
  content: "\ebee";
}

.bxs-analyse:before {
  content: "\ebef";
}

.bxs-angry:before {
  content: "\ebf0";
}

.bxs-arch:before {
  content: "\ebf1";
}

.bxs-archive:before {
  content: "\ebf2";
}

.bxs-archive-in:before {
  content: "\ebf3";
}

.bxs-archive-out:before {
  content: "\ebf4";
}

.bxs-area:before {
  content: "\ebf5";
}

.bxs-arrow-from-bottom:before {
  content: "\ebf6";
}

.bxs-arrow-from-left:before {
  content: "\ebf7";
}

.bxs-arrow-from-right:before {
  content: "\ebf8";
}

.bxs-arrow-from-top:before {
  content: "\ebf9";
}

.bxs-arrow-to-bottom:before {
  content: "\ebfa";
}

.bxs-arrow-to-left:before {
  content: "\ebfb";
}

.bxs-arrow-to-right:before {
  content: "\ebfc";
}

.bxs-arrow-to-top:before {
  content: "\ebfd";
}

.bxs-award:before {
  content: "\ebfe";
}

.bxs-baby-carriage:before {
  content: "\ebff";
}

.bxs-badge:before {
  content: "\ec00";
}

.bxs-badge-check:before {
  content: "\ec01";
}

.bxs-badge-dollar:before {
  content: "\ec02";
}

.bxs-ball:before {
  content: "\ec03";
}

.bxs-band-aid:before {
  content: "\ec04";
}

.bxs-bank:before {
  content: "\ec05";
}

.bxs-bar-chart-alt-2:before {
  content: "\ec06";
}

.bxs-bar-chart-square:before {
  content: "\ec07";
}

.bxs-barcode:before {
  content: "\ec08";
}

.bxs-basket:before {
  content: "\ec09";
}

.bxs-bath:before {
  content: "\ec0a";
}

.bxs-battery:before {
  content: "\ec0b";
}

.bxs-battery-charging:before {
  content: "\ec0c";
}

.bxs-battery-full:before {
  content: "\ec0d";
}

.bxs-battery-low:before {
  content: "\ec0e";
}

.bxs-bed:before {
  content: "\ec0f";
}

.bxs-been-here:before {
  content: "\ec10";
}

.bxs-beer:before {
  content: "\ec11";
}

.bxs-bell:before {
  content: "\ec12";
}

.bxs-bell-minus:before {
  content: "\ec13";
}

.bxs-bell-off:before {
  content: "\ec14";
}

.bxs-bell-plus:before {
  content: "\ec15";
}

.bxs-bell-ring:before {
  content: "\ec16";
}

.bxs-bible:before {
  content: "\ec17";
}

.bxs-bolt:before {
  content: "\ec18";
}

.bxs-bolt-circle:before {
  content: "\ec19";
}

.bxs-bomb:before {
  content: "\ec1a";
}

.bxs-book:before {
  content: "\ec1b";
}

.bxs-book-bookmark:before {
  content: "\ec1c";
}

.bxs-book-content:before {
  content: "\ec1d";
}

.bxs-bookmark:before {
  content: "\ec1e";
}

.bxs-bookmark-minus:before {
  content: "\ec1f";
}

.bxs-bookmark-plus:before {
  content: "\ec20";
}

.bxs-bookmarks:before {
  content: "\ec21";
}

.bxs-bookmark-star:before {
  content: "\ec22";
}

.bxs-book-open:before {
  content: "\ec23";
}

.bxs-book-reader:before {
  content: "\ec24";
}

.bxs-bot:before {
  content: "\ec25";
}

.bxs-bowling-ball:before {
  content: "\ec26";
}

.bxs-box:before {
  content: "\ec27";
}

.bxs-briefcase:before {
  content: "\ec28";
}

.bxs-briefcase-alt:before {
  content: "\ec29";
}

.bxs-briefcase-alt-2:before {
  content: "\ec2a";
}

.bxs-brightness:before {
  content: "\ec2b";
}

.bxs-brightness-half:before {
  content: "\ec2c";
}

.bxs-brush:before {
  content: "\ec2d";
}

.bxs-brush-alt:before {
  content: "\ec2e";
}

.bxs-bug:before {
  content: "\ec2f";
}

.bxs-bug-alt:before {
  content: "\ec30";
}

.bxs-building:before {
  content: "\ec31";
}

.bxs-building-house:before {
  content: "\ec32";
}

.bxs-buildings:before {
  content: "\ec33";
}

.bxs-bulb:before {
  content: "\ec34";
}

.bxs-buoy:before {
  content: "\ec35";
}

.bxs-bus:before {
  content: "\ec36";
}

.bxs-business:before {
  content: "\ec37";
}

.bxs-bus-school:before {
  content: "\ec38";
}

.bxs-cabinet:before {
  content: "\ec39";
}

.bxs-cake:before {
  content: "\ec3a";
}

.bxs-calculator:before {
  content: "\ec3b";
}

.bxs-calendar:before {
  content: "\ec3c";
}

.bxs-calendar-alt:before {
  content: "\ec3d";
}

.bxs-calendar-check:before {
  content: "\ec3e";
}

.bxs-calendar-edit:before {
  content: "\ec3f";
}

.bxs-calendar-event:before {
  content: "\ec40";
}

.bxs-calendar-minus:before {
  content: "\ec41";
}

.bxs-calendar-plus:before {
  content: "\ec42";
}

.bxs-calendar-week:before {
  content: "\ec43";
}

.bxs-calendar-x:before {
  content: "\ec44";
}

.bxs-camera:before {
  content: "\ec45";
}

.bxs-camera-off:before {
  content: "\ec46";
}

.bxs-camera-plus:before {
  content: "\ec47";
}

.bxs-capsule:before {
  content: "\ec48";
}

.bxs-captions:before {
  content: "\ec49";
}

.bxs-car:before {
  content: "\ec4a";
}

.bxs-car-crash:before {
  content: "\ec4b";
}

.bxs-card:before {
  content: "\ec4c";
}

.bxs-caret-down-circle:before {
  content: "\ec4d";
}

.bxs-caret-left-circle:before {
  content: "\ec4e";
}

.bxs-caret-right-circle:before {
  content: "\ec4f";
}

.bxs-caret-up-circle:before {
  content: "\ec50";
}

.bxs-car-garage:before {
  content: "\ec51";
}

.bxs-car-mechanic:before {
  content: "\ec52";
}

.bxs-carousel:before {
  content: "\ec53";
}

.bxs-cart:before {
  content: "\ec54";
}

.bxs-cart-alt:before {
  content: "\ec55";
}

.bxs-car-wash:before {
  content: "\ec56";
}

.bxs-certification:before {
  content: "\ec57";
}

.bxs-chalkboard:before {
  content: "\ec58";
}

.bxs-chart:before {
  content: "\ec59";
}

.bxs-chat:before {
  content: "\ec5a";
}

.bxs-checkbox:before {
  content: "\ec5b";
}

.bxs-checkbox-checked:before {
  content: "\ec5c";
}

.bxs-check-circle:before {
  content: "\ec5d";
}

.bxs-check-shield:before {
  content: "\ec5e";
}

.bxs-check-square:before {
  content: "\ec5f";
}

.bxs-chess:before {
  content: "\ec60";
}

.bxs-chip:before {
  content: "\ec61";
}

.bxs-circle:before {
  content: "\ec62";
}

.bxs-city:before {
  content: "\ec63";
}

.bxs-clinic:before {
  content: "\ec64";
}

.bxs-cloud:before {
  content: "\ec65";
}

.bxs-cloud-download:before {
  content: "\ec66";
}

.bxs-cloud-lightning:before {
  content: "\ec67";
}

.bxs-cloud-rain:before {
  content: "\ec68";
}

.bxs-cloud-upload:before {
  content: "\ec69";
}

.bxs-coffee:before {
  content: "\ec6a";
}

.bxs-coffee-alt:before {
  content: "\ec6b";
}

.bxs-coffee-togo:before {
  content: "\ec6c";
}

.bxs-cog:before {
  content: "\ec6d";
}

.bxs-collection:before {
  content: "\ec6e";
}

.bxs-color-fill:before {
  content: "\ec6f";
}

.bxs-comment:before {
  content: "\ec70";
}

.bxs-comment-add:before {
  content: "\ec71";
}

.bxs-comment-detail:before {
  content: "\ec72";
}

.bxs-comment-dots:before {
  content: "\ec73";
}

.bxs-comment-error:before {
  content: "\ec74";
}

.bxs-compass:before {
  content: "\ec75";
}

.bxs-component:before {
  content: "\ec76";
}

.bxs-confused:before {
  content: "\ec77";
}

.bxs-contact:before {
  content: "\ec78";
}

.bxs-conversation:before {
  content: "\ec79";
}

.bxs-cool:before {
  content: "\ec7a";
}

.bxs-copy:before {
  content: "\ec7b";
}

.bxs-copy-alt:before {
  content: "\ec7c";
}

.bxs-coupon:before {
  content: "\ec7d";
}

.bxs-credit-card:before {
  content: "\ec7e";
}

.bxs-credit-card-alt:before {
  content: "\ec7f";
}

.bxs-crown:before {
  content: "\ec80";
}

.bxs-cube:before {
  content: "\ec81";
}

.bxs-cube-alt:before {
  content: "\ec82";
}

.bxs-cuboid:before {
  content: "\ec83";
}

.bxs-customize:before {
  content: "\ec84";
}

.bxs-cylinder:before {
  content: "\ec85";
}

.bxs-dashboard:before {
  content: "\ec86";
}

.bxs-data:before {
  content: "\ec87";
}

.bxs-detail:before {
  content: "\ec88";
}

.bxs-devices:before {
  content: "\ec89";
}

.bxs-dice-1:before {
  content: "\ec8a";
}

.bxs-dice-2:before {
  content: "\ec8b";
}

.bxs-dice-3:before {
  content: "\ec8c";
}

.bxs-dice-4:before {
  content: "\ec8d";
}

.bxs-dice-5:before {
  content: "\ec8e";
}

.bxs-dice-6:before {
  content: "\ec8f";
}

.bxs-direction-left:before {
  content: "\ec90";
}

.bxs-direction-right:before {
  content: "\ec91";
}

.bxs-directions:before {
  content: "\ec92";
}

.bxs-disc:before {
  content: "\ec93";
}

.bxs-discount:before {
  content: "\ec94";
}

.bxs-dish:before {
  content: "\ec95";
}

.bxs-dislike:before {
  content: "\ec96";
}

.bxs-dizzy:before {
  content: "\ec97";
}

.bxs-dock-bottom:before {
  content: "\ec98";
}

.bxs-dock-left:before {
  content: "\ec99";
}

.bxs-dock-right:before {
  content: "\ec9a";
}

.bxs-dock-top:before {
  content: "\ec9b";
}

.bxs-dollar-circle:before {
  content: "\ec9c";
}

.bxs-doughnut-chart:before {
  content: "\ec9d";
}

.bxs-down-arrow:before {
  content: "\ec9e";
}

.bxs-down-arrow-circle:before {
  content: "\ec9f";
}

.bxs-down-arrow-square:before {
  content: "\eca0";
}

.bxs-download:before {
  content: "\eca1";
}

.bxs-downvote:before {
  content: "\eca2";
}

.bxs-drink:before {
  content: "\eca3";
}

.bxs-droplet:before {
  content: "\eca4";
}

.bxs-droplet-half:before {
  content: "\eca5";
}

.bxs-dryer:before {
  content: "\eca6";
}

.bxs-duplicate:before {
  content: "\eca7";
}

.bxs-edit:before {
  content: "\eca8";
}

.bxs-edit-alt:before {
  content: "\eca9";
}

.bxs-edit-location:before {
  content: "\ecaa";
}

.bxs-eject:before {
  content: "\ecab";
}

.bxs-envelope:before {
  content: "\ecac";
}

.bxs-eraser:before {
  content: "\ecad";
}

.bxs-error:before {
  content: "\ecae";
}

.bxs-error-alt:before {
  content: "\ecaf";
}

.bxs-error-circle:before {
  content: "\ecb0";
}

.bxs-ev-station:before {
  content: "\ecb1";
}

.bxs-exit:before {
  content: "\ecb2";
}

.bxs-extension:before {
  content: "\ecb3";
}

.bxs-eyedropper:before {
  content: "\ecb4";
}

.bxs-face:before {
  content: "\ecb5";
}

.bxs-factory:before {
  content: "\ecb6";
}

.bxs-fast-forward-circle:before {
  content: "\ecb7";
}

.bxs-file:before {
  content: "\ecb8";
}

.bxs-file-archive:before {
  content: "\ecb9";
}

.bxs-file-blank:before {
  content: "\ecba";
}

.bxs-file-css:before {
  content: "\ecbb";
}

.bxs-file-doc:before {
  content: "\ecbc";
}

.bxs-file-export:before {
  content: "\ecbd";
}

.bxs-file-find:before {
  content: "\ecbe";
}

.bxs-file-gif:before {
  content: "\ecbf";
}

.bxs-file-html:before {
  content: "\ecc0";
}

.bxs-file-image:before {
  content: "\ecc1";
}

.bxs-file-import:before {
  content: "\ecc2";
}

.bxs-file-jpg:before {
  content: "\ecc3";
}

.bxs-file-js:before {
  content: "\ecc4";
}

.bxs-file-json:before {
  content: "\ecc5";
}

.bxs-file-md:before {
  content: "\ecc6";
}

.bxs-file-pdf:before {
  content: "\ecc7";
}

.bxs-file-plus:before {
  content: "\ecc8";
}

.bxs-file-png:before {
  content: "\ecc9";
}

.bxs-file-txt:before {
  content: "\ecca";
}

.bxs-film:before {
  content: "\eccb";
}

.bxs-filter-alt:before {
  content: "\eccc";
}

.bxs-first-aid:before {
  content: "\eccd";
}

.bxs-flag:before {
  content: "\ecce";
}

.bxs-flag-alt:before {
  content: "\eccf";
}

.bxs-flag-checkered:before {
  content: "\ecd0";
}

.bxs-flame:before {
  content: "\ecd1";
}

.bxs-flask:before {
  content: "\ecd2";
}

.bxs-florist:before {
  content: "\ecd3";
}

.bxs-folder:before {
  content: "\ecd4";
}

.bxs-folder-minus:before {
  content: "\ecd5";
}

.bxs-folder-open:before {
  content: "\ecd6";
}

.bxs-folder-plus:before {
  content: "\ecd7";
}

.bxs-food-menu:before {
  content: "\ecd8";
}

.bxs-fridge:before {
  content: "\ecd9";
}

.bxs-gas-pump:before {
  content: "\ecda";
}

.bxs-ghost:before {
  content: "\ecdb";
}

.bxs-gift:before {
  content: "\ecdc";
}

.bxs-graduation:before {
  content: "\ecdd";
}

.bxs-grid:before {
  content: "\ecde";
}

.bxs-grid-alt:before {
  content: "\ecdf";
}

.bxs-group:before {
  content: "\ece0";
}

.bxs-hand-down:before {
  content: "\ece1";
}

.bxs-hand-left:before {
  content: "\ece2";
}

.bxs-hand-right:before {
  content: "\ece3";
}

.bxs-hand-up:before {
  content: "\ece4";
}

.bxs-happy:before {
  content: "\ece5";
}

.bxs-happy-alt:before {
  content: "\ece6";
}

.bxs-happy-beaming:before {
  content: "\ece7";
}

.bxs-happy-heart-eyes:before {
  content: "\ece8";
}

.bxs-hdd:before {
  content: "\ece9";
}

.bxs-heart:before {
  content: "\ecea";
}

.bxs-heart-circle:before {
  content: "\eceb";
}

.bxs-heart-square:before {
  content: "\ecec";
}

.bxs-help-circle:before {
  content: "\eced";
}

.bxs-hide:before {
  content: "\ecee";
}

.bxs-home:before {
  content: "\ecef";
}

.bxs-home-circle:before {
  content: "\ecf0";
}

.bxs-home-heart:before {
  content: "\ecf1";
}

.bxs-hot:before {
  content: "\ecf2";
}

.bxs-hotel:before {
  content: "\ecf3";
}

.bxs-hourglass:before {
  content: "\ecf4";
}

.bxs-hourglass-bottom:before {
  content: "\ecf5";
}

.bxs-hourglass-top:before {
  content: "\ecf6";
}

.bxs-id-card:before {
  content: "\ecf7";
}

.bxs-image:before {
  content: "\ecf8";
}

.bxs-image-add:before {
  content: "\ecf9";
}

.bxs-image-alt:before {
  content: "\ecfa";
}

.bxs-inbox:before {
  content: "\ecfb";
}

.bxs-info-circle:before {
  content: "\ecfc";
}

.bxs-info-square:before {
  content: "\ecfd";
}

.bxs-institution:before {
  content: "\ecfe";
}

.bxs-joystick:before {
  content: "\ecff";
}

.bxs-joystick-alt:before {
  content: "\ed00";
}

.bxs-joystick-button:before {
  content: "\ed01";
}

.bxs-key:before {
  content: "\ed02";
}

.bxs-keyboard:before {
  content: "\ed03";
}

.bxs-label:before {
  content: "\ed04";
}

.bxs-landmark:before {
  content: "\ed05";
}

.bxs-landscape:before {
  content: "\ed06";
}

.bxs-laugh:before {
  content: "\ed07";
}

.bxs-layer:before {
  content: "\ed08";
}

.bxs-layer-minus:before {
  content: "\ed09";
}

.bxs-layer-plus:before {
  content: "\ed0a";
}

.bxs-layout:before {
  content: "\ed0b";
}

.bxs-left-arrow:before {
  content: "\ed0c";
}

.bxs-left-arrow-circle:before {
  content: "\ed0d";
}

.bxs-left-arrow-square:before {
  content: "\ed0e";
}

.bxs-left-down-arrow-circle:before {
  content: "\ed0f";
}

.bxs-left-top-arrow-circle:before {
  content: "\ed10";
}

.bxs-like:before {
  content: "\ed11";
}

.bxs-location-plus:before {
  content: "\ed12";
}

.bxs-lock:before {
  content: "\ed13";
}

.bxs-lock-alt:before {
  content: "\ed14";
}

.bxs-lock-open:before {
  content: "\ed15";
}

.bxs-lock-open-alt:before {
  content: "\ed16";
}

.bxs-log-in:before {
  content: "\ed17";
}

.bxs-log-in-circle:before {
  content: "\ed18";
}

.bxs-log-out:before {
  content: "\ed19";
}

.bxs-log-out-circle:before {
  content: "\ed1a";
}

.bxs-low-vision:before {
  content: "\ed1b";
}

.bxs-magic-wand:before {
  content: "\ed1c";
}

.bxs-magnet:before {
  content: "\ed1d";
}

.bxs-map:before {
  content: "\ed1e";
}

.bxs-map-alt:before {
  content: "\ed1f";
}

.bxs-map-pin:before {
  content: "\ed20";
}

.bxs-mask:before {
  content: "\ed21";
}

.bxs-megaphone:before {
  content: "\ed22";
}

.bxs-meh:before {
  content: "\ed23";
}

.bxs-meh-alt:before {
  content: "\ed24";
}

.bxs-meh-blank:before {
  content: "\ed25";
}

.bxs-memory-card:before {
  content: "\ed26";
}

.bxs-message:before {
  content: "\ed27";
}

.bxs-message-alt:before {
  content: "\ed28";
}

.bxs-message-alt-dots:before {
  content: "\ed29";
}

.bxs-message-dots:before {
  content: "\ed2a";
}

.bxs-message-rounded:before {
  content: "\ed2b";
}

.bxs-message-rounded-dots:before {
  content: "\ed2c";
}

.bxs-message-square:before {
  content: "\ed2d";
}

.bxs-message-square-dots:before {
  content: "\ed2e";
}

.bxs-microchip:before {
  content: "\ed2f";
}

.bxs-microphone:before {
  content: "\ed30";
}

.bxs-microphone-alt:before {
  content: "\ed31";
}

.bxs-microphone-off:before {
  content: "\ed32";
}

.bxs-minus-circle:before {
  content: "\ed33";
}

.bxs-minus-square:before {
  content: "\ed34";
}

.bxs-mobile:before {
  content: "\ed35";
}

.bxs-mobile-vibration:before {
  content: "\ed36";
}

.bxs-moon:before {
  content: "\ed37";
}

.bxs-mouse:before {
  content: "\ed38";
}

.bxs-mouse-alt:before {
  content: "\ed39";
}

.bxs-movie:before {
  content: "\ed3a";
}

.bxs-music:before {
  content: "\ed3b";
}

.bxs-navigation:before {
  content: "\ed3c";
}

.bxs-news:before {
  content: "\ed3d";
}

.bxs-no-entry:before {
  content: "\ed3e";
}

.bxs-note:before {
  content: "\ed3f";
}

.bxs-notepad:before {
  content: "\ed40";
}

.bxs-notification:before {
  content: "\ed41";
}

.bxs-notification-off:before {
  content: "\ed42";
}

.bxs-offer:before {
  content: "\ed43";
}

.bxs-package:before {
  content: "\ed44";
}

.bxs-paint:before {
  content: "\ed45";
}

.bxs-paint-roll:before {
  content: "\ed46";
}

.bxs-palette:before {
  content: "\ed47";
}

.bxs-paper-plane:before {
  content: "\ed48";
}

.bxs-parking:before {
  content: "\ed49";
}

.bxs-paste:before {
  content: "\ed4a";
}

.bxs-pen:before {
  content: "\ed4b";
}

.bxs-pencil:before {
  content: "\ed4c";
}

.bxs-phone:before {
  content: "\ed4d";
}

.bxs-phone-call:before {
  content: "\ed4e";
}

.bxs-phone-incoming:before {
  content: "\ed4f";
}

.bxs-phone-outgoing:before {
  content: "\ed50";
}

.bxs-photo-album:before {
  content: "\ed51";
}

.bxs-piano:before {
  content: "\ed52";
}

.bxs-pie-chart:before {
  content: "\ed53";
}

.bxs-pie-chart-alt:before {
  content: "\ed54";
}

.bxs-pie-chart-alt-2:before {
  content: "\ed55";
}

.bxs-pin:before {
  content: "\ed56";
}

.bxs-pizza:before {
  content: "\ed57";
}

.bxs-plane:before {
  content: "\ed58";
}

.bxs-plane-alt:before {
  content: "\ed59";
}

.bxs-plane-land:before {
  content: "\ed5a";
}

.bxs-planet:before {
  content: "\ed5b";
}

.bxs-plane-take-off:before {
  content: "\ed5c";
}

.bxs-playlist:before {
  content: "\ed5d";
}

.bxs-plug:before {
  content: "\ed5e";
}

.bxs-plus-circle:before {
  content: "\ed5f";
}

.bxs-plus-square:before {
  content: "\ed60";
}

.bxs-pointer:before {
  content: "\ed61";
}

.bxs-polygon:before {
  content: "\ed62";
}

.bxs-printer:before {
  content: "\ed63";
}

.bxs-purchase-tag:before {
  content: "\ed64";
}

.bxs-purchase-tag-alt:before {
  content: "\ed65";
}

.bxs-pyramid:before {
  content: "\ed66";
}

.bxs-quote-alt-left:before {
  content: "\ed67";
}

.bxs-quote-alt-right:before {
  content: "\ed68";
}

.bxs-quote-left:before {
  content: "\ed69";
}

.bxs-quote-right:before {
  content: "\ed6a";
}

.bxs-quote-single-left:before {
  content: "\ed6b";
}

.bxs-quote-single-right:before {
  content: "\ed6c";
}

.bxs-radiation:before {
  content: "\ed6d";
}

.bxs-radio:before {
  content: "\ed6e";
}

.bxs-receipt:before {
  content: "\ed6f";
}

.bxs-rectangle:before {
  content: "\ed70";
}

.bxs-rename:before {
  content: "\ed71";
}

.bxs-report:before {
  content: "\ed72";
}

.bxs-rewind-circle:before {
  content: "\ed73";
}

.bxs-right-arrow:before {
  content: "\ed74";
}

.bxs-right-arrow-circle:before {
  content: "\ed75";
}

.bxs-right-arrow-square:before {
  content: "\ed76";
}

.bxs-right-down-arrow-circle:before {
  content: "\ed77";
}

.bxs-right-top-arrow-circle:before {
  content: "\ed78";
}

.bxs-rocket:before {
  content: "\ed79";
}

.bxs-ruler:before {
  content: "\ed7a";
}

.bxs-sad:before {
  content: "\ed7b";
}

.bxs-save:before {
  content: "\ed7c";
}

.bxs-school:before {
  content: "\ed7d";
}

.bxs-search:before {
  content: "\ed7e";
}

.bxs-search-alt-2:before {
  content: "\ed7f";
}

.bxs-select-multiple:before {
  content: "\ed80";
}

.bxs-send:before {
  content: "\ed81";
}

.bxs-server:before {
  content: "\ed82";
}

.bxs-shapes:before {
  content: "\ed83";
}

.bxs-share:before {
  content: "\ed84";
}

.bxs-share-alt:before {
  content: "\ed85";
}

.bxs-shield:before {
  content: "\ed86";
}

.bxs-shield-alt-2:before {
  content: "\ed87";
}

.bxs-ship:before {
  content: "\ed88";
}

.bxs-shocked:before {
  content: "\ed89";
}

.bxs-shopping-bag:before {
  content: "\ed8a";
}

.bxs-shopping-bag-alt:before {
  content: "\ed8b";
}

.bxs-show:before {
  content: "\ed8c";
}

.bxs-skip-next-circle:before {
  content: "\ed8d";
}

.bxs-skip-previous-circle:before {
  content: "\ed8e";
}

.bxs-skull:before {
  content: "\ed8f";
}

.bxs-sleepy:before {
  content: "\ed90";
}

.bxs-slideshow:before {
  content: "\ed91";
}

.bxs-smile:before {
  content: "\ed92";
}

.bxs-sort-alt:before {
  content: "\ed93";
}

.bxs-spa:before {
  content: "\ed94";
}

.bxs-spray-can:before {
  content: "\ed95";
}

.bxs-spreadsheet:before {
  content: "\ed96";
}

.bxs-square:before {
  content: "\ed97";
}

.bxs-square-rounded:before {
  content: "\ed98";
}

.bxs-star:before {
  content: "\ed99";
}

.bxs-star-half:before {
  content: "\ed9a";
}

.bxs-sticker:before {
  content: "\ed9b";
}

.bxs-stopwatch:before {
  content: "\ed9c";
}

.bxs-store:before {
  content: "\ed9d";
}

.bxs-store-alt:before {
  content: "\ed9e";
}

.bxs-sun:before {
  content: "\ed9f";
}

.bxs-tachometer:before {
  content: "\eda0";
}

.bxs-tag:before {
  content: "\eda1";
}

.bxs-tag-x:before {
  content: "\eda2";
}

.bxs-taxi:before {
  content: "\eda3";
}

.bxs-tennis-ball:before {
  content: "\eda4";
}

.bxs-terminal:before {
  content: "\eda5";
}

.bxs-thermometer:before {
  content: "\eda6";
}

.bxs-time:before {
  content: "\eda7";
}

.bxs-time-five:before {
  content: "\eda8";
}

.bxs-timer:before {
  content: "\eda9";
}

.bxs-tired:before {
  content: "\edaa";
}

.bxs-toggle-left:before {
  content: "\edab";
}

.bxs-toggle-right:before {
  content: "\edac";
}

.bxs-tone:before {
  content: "\edad";
}

.bxs-torch:before {
  content: "\edae";
}

.bxs-to-top:before {
  content: "\edaf";
}

.bxs-traffic:before {
  content: "\edb0";
}

.bxs-traffic-barrier:before {
  content: "\edb1";
}

.bxs-traffic-cone:before {
  content: "\edb2";
}

.bxs-train:before {
  content: "\edb3";
}

.bxs-trash:before {
  content: "\edb4";
}

.bxs-trash-alt:before {
  content: "\edb5";
}

.bxs-tree:before {
  content: "\edb6";
}

.bxs-trophy:before {
  content: "\edb7";
}

.bxs-truck:before {
  content: "\edb8";
}

.bxs-t-shirt:before {
  content: "\edb9";
}

.bxs-up-arrow:before {
  content: "\edba";
}

.bxs-up-arrow-circle:before {
  content: "\edbb";
}

.bxs-up-arrow-square:before {
  content: "\edbc";
}

.bxs-upside-down:before {
  content: "\edbd";
}

.bxs-upvote:before {
  content: "\edbe";
}

.bxs-user:before {
  content: "\edbf";
}

.bxs-user-badge:before {
  content: "\edc0";
}

.bxs-user-check:before {
  content: "\edc1";
}

.bxs-user-circle:before {
  content: "\edc2";
}

.bxs-user-detail:before {
  content: "\edc3";
}

.bxs-user-minus:before {
  content: "\edc4";
}

.bxs-user-pin:before {
  content: "\edc5";
}

.bxs-user-plus:before {
  content: "\edc6";
}

.bxs-user-rectangle:before {
  content: "\edc7";
}

.bxs-user-voice:before {
  content: "\edc8";
}

.bxs-user-x:before {
  content: "\edc9";
}

.bxs-vial:before {
  content: "\edca";
}

.bxs-video:before {
  content: "\edcb";
}

.bxs-video-off:before {
  content: "\edcc";
}

.bxs-video-plus:before {
  content: "\edcd";
}

.bxs-video-recording:before {
  content: "\edce";
}

.bxs-videos:before {
  content: "\edcf";
}

.bxs-volume:before {
  content: "\edd0";
}

.bxs-volume-full:before {
  content: "\edd1";
}

.bxs-volume-low:before {
  content: "\edd2";
}

.bxs-volume-mute:before {
  content: "\edd3";
}

.bxs-wallet:before {
  content: "\edd4";
}

.bxs-wallet-alt:before {
  content: "\edd5";
}

.bxs-washer:before {
  content: "\edd6";
}

.bxs-watch:before {
  content: "\edd7";
}

.bxs-watch-alt:before {
  content: "\edd8";
}

.bxs-webcam:before {
  content: "\edd9";
}

.bxs-widget:before {
  content: "\edda";
}

.bxs-wine:before {
  content: "\eddb";
}

.bxs-wink-smile:before {
  content: "\eddc";
}

.bxs-wink-tongue:before {
  content: "\eddd";
}

.bxs-wrench:before {
  content: "\edde";
}

.bxs-x-circle:before {
  content: "\eddf";
}

.bxs-x-square:before {
  content: "\ede0";
}

.bxs-yin-yang:before {
  content: "\ede1";
}

.bxs-zap:before {
  content: "\ede2";
}

.bxs-zoom-in:before {
  content: "\ede3";
}

.bxs-zoom-out:before {
  content: "\ede4";
}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face {
  font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

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

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

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

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

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

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-close:before,.fa-remove: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-cog:before,.fa-gear: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-repeat:before,.fa-rotate-right: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-image:before,.fa-photo: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-exclamation-triangle:before,.fa-warning: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-cogs:before,.fa-gears:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

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

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

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

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

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

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

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

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

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

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

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

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

.fa-group:before,.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-floppy-o:before,.fa-save:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-bars:before,.fa-navicon:before,.fa-reorder: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-sort:before,.fa-unsorted:before {
  content: "\f0dc";
}

.fa-sort-desc:before,.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-asc:before,.fa-sort-up:before {
  content: "\f0de";
}

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

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,.fa-undo:before {
  content: "\f0e2";
}

.fa-gavel:before,.fa-legal:before {
  content: "\f0e3";
}

.fa-dashboard:before,.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-bolt:before,.fa-flash:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-clipboard:before,.fa-paste: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-chain-broken:before,.fa-unlink: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-caret-square-o-down:before,.fa-toggle-down:before {
  content: "\f150";
}

.fa-caret-square-o-up:before,.fa-toggle-up:before {
  content: "\f151";
}

.fa-caret-square-o-right:before,.fa-toggle-right:before {
  content: "\f152";
}

.fa-eur:before,.fa-euro:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,.fa-usd:before {
  content: "\f155";
}

.fa-inr:before,.fa-rupee:before {
  content: "\f156";
}

.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before {
  content: "\f157";
}

.fa-rouble:before,.fa-rub:before,.fa-ruble:before {
  content: "\f158";
}

.fa-krw:before,.fa-won: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-caret-square-o-left:before,.fa-toggle-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-try:before,.fa-turkish-lira: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-bank:before,.fa-institution:before,.fa-university:before {
  content: "\f19c";
}

.fa-graduation-cap:before,.fa-mortar-board: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-pp: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-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before {
  content: "\f1c5";
}

.fa-file-archive-o:before,.fa-file-zip-o:before {
  content: "\f1c6";
}

.fa-file-audio-o:before,.fa-file-sound-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-ring:before,.fa-life-saver:before,.fa-support:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,.fa-rebel:before,.fa-resistance:before {
  content: "\f1d0";
}

.fa-empire:before,.fa-ge:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,.fa-weixin:before {
  content: "\f1d7";
}

.fa-paper-plane:before,.fa-send:before {
  content: "\f1d8";
}

.fa-paper-plane-o:before,.fa-send-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-futbol-o:before,.fa-soccer-ball-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-ils:before,.fa-shekel:before,.fa-sheqel:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

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

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

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

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

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

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

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

.fa-bed:before,.fa-hotel:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-y-combinator:before,.fa-yc:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before {
  content: "\f240";
}

.fa-battery-3:before,.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-paper-o:before,.fa-hand-stop-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-television:before,.fa-tv:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

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

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

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

.fa-pause-circle-o:before {
  content: "\f28c";
}

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

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

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

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-sign-language:before,.fa-signing:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

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

.fa-linode:before {
  content: "\f2b8";
}

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

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-address-card:before,.fa-vcard:before {
  content: "\f2bb";
}

.fa-address-card-o:before,.fa-vcard-o:before {
  content: "\f2bc";
}

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

.fa-user-circle-o:before {
  content: "\f2be";
}

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

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bath:before,.fa-bathtub:before,.fa-s15:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.sr-only-focusable:active,.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: .8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: 0!important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none!important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-arrow,button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: .65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial,Baskerville,monospace;
}

.mfp-close:focus,.mfp-close:hover {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: .65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus,.mfp-arrow:hover {
  opacity: 1;
}

.mfp-arrow:after,.mfp-arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0,0,0,.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0,0,0,.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0,0,0,.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0,0,0,.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width:900px) {
  .mfp-arrow {
    -webkit-transform: scale(.75);
    transform: scale(.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@font-face {
  font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
  transform: translate3d(0,0,0);
}

.swiper-container-multirow>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0,-50%,0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0,0,0,.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html {
  font-size: 16px;
}

body,html {
  margin: 0;
  padding: 0;
  font-family: Poppins,sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-size: 100%;
  color: #707070;
}

body ul,html ul {
  margin-left: 0;
  padding-left: 0;
}

body ul li,html ul li {
  list-style-type: none;
}

body a,html a {
  text-decoration: none;
  outline: 0;
}

body button,body img,body input,body select,body textarea,html button,html img,html input,html select,html textarea {
  outline: 0;
}

body button:active,body button:focus,body button:hover,body img:active,body img:focus,body img:hover,body input:active,body input:focus,body input:hover,body select:active,body select:focus,body select:hover,body textarea:active,body textarea:focus,body textarea:hover,html button:active,html button:focus,html button:hover,html img:active,html img:focus,html img:hover,html input:active,html input:focus,html input:hover,html select:active,html select:focus,html select:hover,html textarea:active,html textarea:focus,html textarea:hover {
  outline: 0;
}

::-moz-selection {
  color: #151515;
  background: rgba(245,179,22,.5);
}

::selection {
  color: #151515;
  background: rgba(245,179,22,.5);
}

body {
  overflow: hidden!important;
  overflow-y: auto!important;
}

img.saturate-animate {
  -webkit-transition: filter .4s ease-in-out;
  -moz-transition: filter .4s ease-in-out;
  -ms-transition: filter .4s ease-in-out;
  -o-transition: filter .4s ease-in-out;
  transition: filter .4s ease-in-out;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

img.saturate-animate:focus,img.saturate-animate:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.accordion .accordion-container .accordion-header [data-toggle=collapse]:after,.breadcrumb .breadcrumb-item+.breadcrumb-item:before,.contact-info .contact-info-item:before,.footer .footer-nav li:before,.icon-font,.navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::after,.plan-item .plan-details .plan-details-list .plan-details-list-item:before,.swiper-container .controls .swiper-button-next::after,.swiper-container .controls .swiper-button-prev::after,.testimonials #testimonialSlider .testimonials-item .what-they-said::before,.testimonials #testimonialSlider .testimonials-item .what-they-said:after, .accordion .footer-nav li:before {
  font-family: FontAwesome;
}

.text-capitalize {
  text-transform: capitalize;
}

.breadcrumb .breadcrumb-item,.breadcrumb .breadcrumb-item a,.btn,.btn.with-animation .hover-text,.footer .socialmedia:before,.pagehead .page-title,.section-title,.text-uppercase,.works-filter .filter-btn,.works-image .overlay .work-item-title,.works-image .overlay .work-item-title~p {
  text-transform: uppercase;
}

.text-italic {
  font-style: italic;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.font-light,.testimonials #testimonialSlider .testimonials-item .what-they-said,p {
  font-weight: 400!important;
}

.counter-flex .counter-box .counter,.counter-flex .counter-box h3,.custom-control .custom-control-label,.font-regular,.footer .footer-title,.footer .socialmedia:before,.form-group label,.plan-item .plan-details .plan-amount small,.plan-item .plan-details .plan-type,.service-card .service-title,.works-image .overlay .work-item-title~p {
  font-weight: 500!important;
}

.about .tab-area .nav-tabs .nav-item,.accordion .accordion-container .accordion-header [data-toggle=collapse],.breadcrumb .breadcrumb-item,.breadcrumb .breadcrumb-item a,.btn,.btn.with-animation .hover-text,.contact-info .contact-info-title,.font-medium,.icon-contact-style li a span,.navbar .navbar-nav .nav-item .nav-link,.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item .dropdown-link,.newsletter h3,.plan-item .plan-details .plan-amount,.plan-item header,.single-section .single-section-title,.swiper-container .swiper-pagination .swiper-pagination-bullet,.tab-area.tabs-with-border .nav-tabs .nav-item,.tab-area.tabs-with-line .nav-tabs .nav-item,.works-filter .filter-btn,.works-image .overlay .work-item-title,select.form-control-custom-select {
  font-weight: 700!important;
}

.font-bold,.pagehead .page-title,.section-inner-title {
  font-weight: 800!important;
}

.bg-primary {
  background-color: #dc3545!important;
}

.bg-primary-hint {
  background-color: #282828!important;
}

.bg-secondary {
  background-color: #838386!important;
}

.bg-dark {
  background-color: #000!important;
}

.footer .footer-nav li:active a,.footer .footer-nav li:before,.footer .footer-nav li:focus a,.footer .footer-nav li:focus-within a,.footer .footer-nav li:hover a,.footer .newsletter input[type=email],.footer .socialmedia .icon-list li a,.footer .socialmedia:before,.testimonials #testimonialSlider .testimonials-item .what-they-said::before,.testimonials #testimonialSlider .testimonials-item .what-they-said:after,.text-primary,.works-filter .filter-btn.filter-active,.works-filter .filter-btn:active,.works-filter .filter-btn:focus,.works-filter .filter-btn:focus-within,.works-filter .filter-btn:hover {
  color: #dc3545!important;
}

.accordion .footer-nav li:active a,.accordion .footer-nav li:before,.accordion .footer-nav li:focus a,.accordion .footer-nav li:focus-within a,.accordion .footer-nav li:hover a {
    color: #dc3545!important;
  }

.footer .socialmedia .icon-list li:active a,.footer .socialmedia .icon-list li:focus a,.footer .socialmedia .icon-list li:focus-within a,.footer .socialmedia .icon-list li:hover a,.text-primary-hint {
  color: #282828!important;
}

.text-secondary,.works-filter .filter-btn.filter-active:active,.works-filter .filter-btn.filter-active:focus,.works-filter .filter-btn.filter-active:focus-within,.works-filter .filter-btn.filter-active:hover {
  color: #838386!important;
}

.text-color {
  color: #151515!important;
}

.clearfix:after,.clearfix:before {
  content: '';
  display: table;
  clear: both;
}

.ml-4,.my-4 {
  margin-left: 30px!important;
}

.mr-4,.my-4 {
  margin-right: 30px!important;
}

.mt-4,.my-4 {
  margin-top: 30px!important;
}

.mb-4,.my-4 {
  margin-bottom: 30px!important;
}

.row.gutters-6 {
  margin-left: -3px;
  margin-right: -3px;
}

.row.gutters-6 [class*=col-] {
  padding-left: 3px;
  padding-right: 3px;
}

.row.gutters-8 {
  margin-left: -4px;
  margin-right: -4px;
}

.row.gutters-8 [class*=col-] {
  padding-left: 4px;
  padding-right: 4px;
}

.breadcrumb .breadcrumb-item {
  font-size: 12px;
  letter-spacing: 1px;
  color: #47505f;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item:before {
  content: '\f105';
  color: #707070;
}

.breadcrumb .breadcrumb-item a {
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item a:focus,.breadcrumb .breadcrumb-item a:hover {
  color: #151515;
  text-decoration: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
}

.preloader.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader .dots .dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px 0 5px;
  background: #dc3545;
  -webkit-animation: dot-dot-dot 1.4s linear infinite;
  animation: dot-dot-dot 1.4s linear infinite;
}

.preloader .dots .dot:nth-child(2) {
  animation-delay: .2s;
}

.preloader .dots .dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dot-dot-dot {
  0%,100%,60% {
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
  }

  30% {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
  }
}

p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 10px;
  color: #707070;
  text-align: justify;
}

p.lead {
  font-size: 20px;
  line-height: 2;
}

@media (max-width:640px) {
  p {
    font-size: 14px;
  }

  p.lead {
    font-size: 17px;
  }
}

a {
  text-decoration: none;
  outline: 0;
  color: #151515;
}

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

.heading-1,h1 {
  color: #151515;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
}

.heading-2,h2 {
  color: #151515;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
}

.heading-3,h3 {
  color: #151515;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
}

.heading-4,h4 {
  color: #151515;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}

.heading-5,h5 {
  color: #151515;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.heading-6,h6 {
  color: #151515;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.btn {
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
  padding: 13px 20px;
  letter-spacing: .1em;
  line-height: initial;
}

@media (max-width:560px) {
  .btn {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}

.btn:active,.btn:focus,.btn:focus-within,.btn:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.btn.with-icon i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: inherit;
  margin-left: 10px;
  transform: translateY(-1px);
}

.btn.btn-sm {
  font-size: 14px;
  padding: 10px 18px;
}

.btn.btn-sm.with-icon i {
  font-size: 16px;
}

.btn.btn-lg {
  font-size: 18px;
  padding: 18px 25px;
}

.btn-primary {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-primary:active,.btn-primary:focus,.btn-primary:focus-within,.btn-primary:hover,.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active {
  background-color: #282828;
  border-color: #282828;
}

.btn-secondary {
  background-color: #838386;
  border-color: #838386;
}

.btn-secondary:active,.btn-secondary:focus,.btn-secondary:focus-within,.btn-secondary:hover,.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active {
  background-color: #505054;
  border-color: #505054;
}

.btn-outline-primary {
  border-color: #dc3545;
  color: #dc3545;
}

.btn-outline-primary:active,.btn-outline-primary:focus,.btn-outline-primary:focus-within,.btn-outline-primary:hover,.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.btn-outline-secondary {
  border-color: #838386;
  color: #838386;
}

.btn-outline-secondary:active,.btn-outline-secondary:focus,.btn-outline-secondary:focus-within,.btn-outline-secondary:hover,.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active {
  background-color: #838386;
  border-color: #838386;
  color: #fff;
}

.btn.btn-with-icon-image img {
  width: 20px;
}

.btn.btn-with-icon-image .fa,.btn.btn-with-icon-image span {
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 5px;
}

.btn.with-animation {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.btn.with-animation i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: inherit;
  margin-left: 10px;
  transform: translateY(-1px);
}

.btn.with-animation .hover-text {
  position: absolute;
  display: block;
  width: 0;
  overflow: hidden;
  height: 100%;
  background-color: transparent;
  font-size: 16px;
  line-height: 52px;
  letter-spacing: .1em;
  color: #fff;
  transform: translateX(-200px);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  left: 0;
  top: 0;
  transform-origin: left;
  opacity: 0;
}

.btn.with-animation .hover-text i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: inherit;
  margin-left: 10px;
  transform: translateY(-1px);
}

.btn.with-animation:focus .hover-text,.btn.with-animation:hover .hover-text {
  width: 100%;
  transform: translateX(0);
  opacity: 1;
}

.btn.with-animation.btn-primary:focus,.btn.with-animation.btn-primary:hover {
  border-color: #282828;
}

.btn.with-animation.btn-primary:focus .hover-text,.btn.with-animation.btn-primary:hover .hover-text {
  background-color: #282828;
}

.btn.with-animation.btn-secondary:focus,.btn.with-animation.btn-secondary:hover {
  border-color: #dc3545;
}

.btn.with-animation.btn-secondary:focus .hover-text,.btn.with-animation.btn-secondary:hover .hover-text {
  background-color: #dc3545;
}

.btn.with-animation.btn-light:focus,.btn.with-animation.btn-light:hover {
  border-color: #dc3545;
}

.btn.with-animation.btn-light:focus .hover-text,.btn.with-animation.btn-light:hover .hover-text {
  background-color: #dc3545;
}

.btn-link {
  color: #dc3545;
}

.btn-link:focus,.btn-link:hover {
  color: #838386;
}

.form-group label {
  display: block;
  font-size: 15px;
  line-height: 25px;
  color: #666;
}

.custom-control-label a {
  text-decoration: underline;
}

.custom-control-label a:active,.custom-control-label a:focus,.custom-control-label a:focus-within,.custom-control-label a:hover {
  color: #dc3545;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
  border-color: #f6bb2e;
  background-color: #f6bb2e;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: #dc3545;
  background-color: #dc3545;
}

.form-control {
  background-color: #fff;
  height: 44px;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
  color: #151515;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 15px;
  border: 1px solid #eee;
}

.form-control::-webkit-input-placeholder {
  color: #151515!important;
  font-size: 15px;
}

.form-control:-moz-placeholder {
  color: #151515!important;
  font-size: 15px;
}

.form-control::-moz-placeholder {
  color: #151515!important;
  font-size: 15px;
}

.form-control:-ms-input-placeholder {
  color: #151515!important;
  font-size: 15px;
}

.form-control:focus,.form-control:hover {
  box-shadow: 0 0 0 .05rem rgba(245,179,22,.5);
}

.form-control:focus {
  border-color: rgba(245,179,22,.5);
}

.form-control::-webkit-input-placeholder {
  color: #707070!important;
  font-size: 16px;
}

.form-control:-moz-placeholder {
  color: #707070!important;
  font-size: 16px;
}

.form-control::-moz-placeholder {
  color: #707070!important;
  font-size: 16px;
}

.form-control:-ms-input-placeholder {
  color: #707070!important;
  font-size: 16px;
}

.form-control.form-control-lg {
  height: 55px;
}

.form-control.no-border {
  border: 0;
}

select.form-control {
  position: relative;
  display: block;
  padding-right: 35px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url(../img/select-drop-dark.png) right 15px center no-repeat;
  cursor: pointer;
  width: 100%;
  border: 1px solid #eee;
}

select.form-control-custom-select {
  -webkit-border-radius: 0;
  border-radius: 0;
  padding-left: 0;
  background-color: transparent;
  padding-right: 15px;
  background-position: right 0 center;
}

select.form-control-custom-select:focus,select.form-control-custom-select:hover {
  box-shadow: none;
}

.custom-control .custom-control-label {
  cursor: pointer;
  font-size: 16px;
  line-height: 25px;
  color: #151515;
}

.custom-control--lg .custom-control-label::after,.custom-control--lg .custom-control-label::before {
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
}

.team-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.team-card .card-img-top {
  -webkit-border-radius: 0;
  border-radius: 0;
}

.team-card .card-body {
  position: absolute;
  width: calc(100% - 20px);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  padding: 0;
  background-color: rgba(255,255,255,.85);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  transform: translateY(200px);
  opacity: 0;
  overflow: hidden;
}

.team-card .card-body .card-title {
  margin-bottom: .2rem;
  color: #151515;
}

.team-card .card-body .card-text {
  color: #151515;
}

.team-card .card-body .title-block {
  padding: .8rem;
}

.team-card .card-body .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0;
  transform: translateY(100px);
  background-color: #dc3545;
  margin-bottom: -40px;
}

.team-card .card-body .social-icons .social-items {
  color: #fff;
  font-size: 20px;
  padding: 5px 10px;
}

.team-card .card-body .social-icons .social-items:focus,.team-card .card-body .social-icons .social-items:hover {
  color: #000;
}

.team-card:focus .card-body,.team-card:hover .card-body {
  opacity: 1;
  transform: translateY(0);
}

.team-card:focus .card-body .card-title,.team-card:hover .card-body .card-title {
  color: #dc3545;
}

.team-card:focus .card-body:focus .social-icons,.team-card:focus .card-body:hover .social-icons,.team-card:hover .card-body:focus .social-icons,.team-card:hover .card-body:hover .social-icons {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 0;
}

.modal-content {
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.modal-content .modal-header {
  position: relative;
  background-color: #dc3545;
  text-align: center;
  border-bottom: 0;
}

.modal-content .modal-header .modal-title {
  font-size: 20px;
  color: #fff;
  display: inline-block;
}

.modal-content .modal-header .close {
  top: -14px;
  right: -12px;
  opacity: 1!important;
  padding: 0;
  margin: 0;
  position: absolute;
}

.modal-content .modal-header .close span {
  display: inline-block;
  border: 2px solid #fff;
  -webkit-border-radius: 27px;
  border-radius: 27px;
  width: 27px;
  height: 27px;
  background-color: #fff;
}

.modal-content .modal-header .close .fa {
  font-size: 25px;
  line-height: 1;
  color: #333;
  display: block;
  top: -1px;
  position: relative;
  right: -.5px;
}

.modal-content .modal-body {
  padding: 25px;
}

.modal-content .modal-body img {
  width: 100%;
}

.modal-content .modal-body .form-control-lg {
  background-color: transparent;
  border: 1px solid rgba(0,0,0,.2);
  height: 70px;
}

.modal-content .modal-body .btn-with-icon-image img {
  max-width: 22px;
  display: inline-block;
  margin-right: 15px;
}

.modal-content .modal-body .accept-btn {
  display: inline-block;
}

.tab-area.tabs-with-line .nav-tabs {
  border-bottom: 3px solid #c6c6c6;
}

.tab-area.tabs-with-line .nav-tabs .nav-item {
  background-color: transparent;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #151515;
  margin-bottom: -3px;
  padding: 20px 40px;
}

.tab-area.tabs-with-line .nav-tabs .nav-item.active {
  color: #dc3545;
  border-bottom: 3px solid #dc3545;
}

.tab-area.tabs-with-line .nav-tabs.justify-content-between .nav-item {
  padding-right: 0;
  padding-left: 0;
}

.tab-area.tabs-with-line .tab-pane {
  padding: 25px 0;
  text-align: left;
}

.tab-area.tabs-with-border .nav-tabs {
  border-bottom: 1px solid #c6c6c6;
}

.tab-area.tabs-with-border .nav-tabs .nav-item {
  background-color: transparent;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #707070;
  padding: 20px 40px;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.tab-area.tabs-with-border .nav-tabs .nav-item.active {
  color: #151515;
  border: 1px solid #c6c6c6;
  color: #dc3545;
}

.tab-area.tabs-with-border .tab-pane {
  padding: 25px 0;
  text-align: left;
}

.tab-area.tabs-vertical {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}

.tab-area.tabs-vertical .nav-tabs {
  width: auto;
  min-width: 260px;
  border: 0;
  flex-direction: column;
}

.tab-area.tabs-vertical .tab-content .tab-pane {
  text-align: left;
}

@media (min-width:992px) {
  .tab-area.tabs-vertical {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .tab-area.tabs-vertical .tab-content {
    padding: 0 0 0 45px;
  }

  .tab-area.tabs-vertical .tab-content .tab-pane {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width:768px) {
  .tab-area.tabs-vertical .tab-content {
    padding: 0 0 0 30px;
  }
}

@media (min-width:768px) {
  .tab-area.tabs-vertical .tab-content {
    flex-grow: 1;
  }
  .service-card {
    height: auto !important;
  }
}

.table:not(.table-dark) tr td,.table:not(.table-dark) tr th {
  border-color: #f7f7f7;
  background-color: #fff;
}

.table:not(.table-dark) tr td {
  color: #151515;
}

.table:not(.table-dark) tr th {
  color: #272727;
}

.table:not(.table-dark).table-striped tr:nth-of-type(even) td {
  background-color: #f3f3f3;
}

.table tr td,.table tr th {
  padding: 15px;
  font-size: 14px;
  font-family: inherit;
}

.table tr td {
  font-weight: 500;
}

.table tr th {
  font-weight: 700;
}

.table.table-custom-primary tr th {
  background-color: #dc3545;
  border-color: #dc3545;
}

.table.table-custom-secondary tr th {
  background-color: #838386;
  border-color: #838386;
  color: #fff;
}

.counter-bg {
  position: relative;
  background-color: #000;
  background-image: url(../img/counter-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: darken;
}

.counter-bg::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: #000; */
  opacity: .8;
  z-index: 0;
}

.bg-light {
  background-color: #d6f8d1 !important;
}

section {
  position: relative;
}

.section-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-padding--bottom {
  padding-bottom: 80px;
}

.section-padding--top {
  padding-top: 80px;
}

@media (max-width:767.98px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-padding--bottom {
    padding-bottom: 50px;
  }

  .section-padding--top {
    padding-top: 50px;
  }
}

@media (max-width:640px) {
  .section-padding {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .section-padding--bottom {
    padding-bottom: 25px;
  }

  .section-padding--top {
    padding-top: 25px;
  }
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 50px;
  line-height: 1.5;
  /* max-width: 620px; */
  text-align: left;
  letter-spacing: .1em;
}

.section-title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 20%;
  height: 5px;
  background-color: #dc3545;
  display: block;
}

.section-inner-title {
  position: relative;
  display: block;
  font-size: 5em;
  margin-bottom: 50px;
  color: rgba(112,112,112,.5);
  line-height: 1.5;
  text-align: left;
}

.section-inner-title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 10%;
  height: 5px;
  background-color: #dc3545;
  display: block;
}

@media (max-width:767.98px) {
  .section-inner-title {
    font-size: 2.5em;
  }
}

.pagehead-breadcrumb {
  display: block;
  padding: 5px;
  background-color: #c8d0d9;
}

.pagehead-breadcrumb .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.pagehead {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pagehead:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #000; */
  opacity: .4;
  z-index: -1;
}

.pagehead:before {
  position: absolute;
  content: '';
  display: block;
  right: 0;
  top: 0;
  width: calc(100% + 150px);
  height: calc(100% + 150px);
  will-change: transform;
  animation: pageheadAnimate 100s linear infinite;
  transform: translate3d(75px,-75px,0) rotate(.001deg);
  background-position: 50% 50%;
  background-size: cover;
  pointer-events: none;
  zoom: 1;
  z-index: -1;
}

.pagehead .page-title {
  font-size: 25px;
  color: #151515;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width:768px) {
  .pagehead .page-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
  }
}

.pagehead.bg-1:before {
  background-image: url(../img/bg-pagehead.jpg);
}

.pagehead .pagehead-breadcrumb {
  display: block;
  padding: 5px;
  background-color: transparent;
}

.pagehead .pagehead-breadcrumb .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.pagehead .pagehead-breadcrumb .breadcrumb .breadcrumb-item {
  color: #ccc;
  font-size: 18px;
  letter-spacing: 2px;
}

.pagehead .pagehead-breadcrumb .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
  color: #fff;
}

.pagehead .pagehead-breadcrumb .breadcrumb .breadcrumb-item a {
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
}

.pagehead .pagehead-breadcrumb .breadcrumb .breadcrumb-item a:focus,.pagehead .pagehead-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #dc3545;
  text-decoration: none;
}

@media (min-width:576px) {
  .pagehead {
    padding: 70px 0;
  }
  .service-card {
    height: auto !important;
  }
}

@media (min-width:768px) {
  .pagehead {
    padding: 80px 0;
  }
}

@media (min-width:992px) {
  .pagehead {
    padding: 90px 0;
  }
}

@media (min-width:1200px) {
  .pagehead {
    padding: 116px 0;
  }
}

.single-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.single-section:before {
  position: absolute;
  content: '';
  display: block;
  right: 0;
  top: 0;
  width: calc(100% + 150px);
  height: calc(100% + 150px);
  will-change: transform;
  animation: pageheadAnimate 100s linear infinite;
  transform: translate3d(75px,-75px,0) rotate(.001deg);
  background-position: 50% 50%;
  background-size: cover;
  pointer-events: none;
  zoom: 1;
  z-index: -1;
}

.single-section.bg-1:before {
  background-image: url(../img/404-1.jpg);
}

.single-section .brand {
  display: inline-block;
  max-width: 200px;
}

.single-section .single-section-title {
  font-size: 90px;
}

@keyframes pageheadAnimate {
  25% {
    transform: translate3d(150px,-150px,0) rotate(.001deg);
  }

  75% {
    transform: translate3d(0,0,0) rotate(.001deg);
  }
}

.overlay-image {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.overlay-image>div {
  position: relative;
  z-index: 1;
}

.overlay-image::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #000;
  opacity: .65;
  z-index: 0;
  top: 0;
  left: 0;
}

.overlay-image.bg-1 {
  background-image: url(../img/bg-1.jpg);
}

.theme-colors {
  flex-wrap: nowrap;
}

.theme-colors span {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  height: 30px;
}

.primary {
  background-color: #fff;
}

/* .navbar {
  padding-top: 30px;
  padding-bottom: 30px;
} */

@media (max-width:767.98px) {
  .navbar {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar .navbar-toggler {
  padding: 0;
}

.navbar .hamburger {
  padding: 5px 5px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity,filter;
  transition-duration: .15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.navbar .hamburger:hover {
  opacity: .7;
}

.navbar .hamburger.is-active:hover {
  opacity: .7;
}

.navbar .hamburger.is-active .hamburger-inner,.navbar .hamburger.is-active .hamburger-inner::after,.navbar .hamburger.is-active .hamburger-inner::before {
  background-color: #000;
}

.navbar .hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.navbar .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.navbar .hamburger-inner,.navbar .hamburger-inner::after,.navbar .hamburger-inner::before {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.navbar .hamburger-inner::after,.navbar .hamburger-inner::before {
  content: "";
  display: block;
}

.navbar .hamburger-inner::before {
  top: -10px;
}

.navbar .hamburger-inner::after {
  bottom: -10px;
}

.navbar .hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.navbar .hamburger--3dx .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dx .hamburger-inner::after,.navbar .hamburger--3dx .hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent!important;
  transform: rotateY(180deg);
}

.navbar .hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar .hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.navbar .hamburger--3dx-r .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dx-r .hamburger-inner::after,.navbar .hamburger--3dx-r .hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent!important;
  transform: rotateY(-180deg);
}

.navbar .hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar .hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.navbar .hamburger--3dy .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dy .hamburger-inner::after,.navbar .hamburger--3dy .hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent!important;
  transform: rotateX(-180deg);
}

.navbar .hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar .hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.navbar .hamburger--3dy-r .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dy-r .hamburger-inner::after,.navbar .hamburger--3dy-r .hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent!important;
  transform: rotateX(180deg);
}

.navbar .hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar .hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.navbar .hamburger--3dxy .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dxy .hamburger-inner::after,.navbar .hamburger--3dxy .hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent!important;
  transform: rotateX(180deg) rotateY(180deg);
}

.navbar .hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar .hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.navbar .hamburger--3dxy-r .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dxy-r .hamburger-inner::after,.navbar .hamburger--3dxy-r .hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645,.045,.355,1);
}

.navbar .hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent!important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.navbar .hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}

.navbar .hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px,0,0) rotate(-45deg) scale(.7,1);
}

.navbar .hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px,0,0) rotate(45deg) scale(.7,1);
}

.navbar .hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px,0,0) rotate(45deg) scale(.7,1);
}

.navbar .hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px,0,0) rotate(-45deg) scale(.7,1);
}

.navbar .hamburger--arrowalt .hamburger-inner::before {
  transition: top .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1);
}

.navbar .hamburger--arrowalt .hamburger-inner::after {
  transition: bottom .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1);
}

.navbar .hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px,-10px,0) rotate(-45deg) scale(.7,1);
  transition: top .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22);
}

.navbar .hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px,10px,0) rotate(45deg) scale(.7,1);
  transition: bottom .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22);
}

.navbar .hamburger--arrowalt-r .hamburger-inner::before {
  transition: top .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1);
}

.navbar .hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1);
}

.navbar .hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px,-10px,0) rotate(45deg) scale(.7,1);
  transition: top .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22);
}

.navbar .hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px,10px,0) rotate(-45deg) scale(.7,1);
  transition: bottom .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22);
}

.navbar .hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.navbar .hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px,0,0) rotate(45deg) scale(.7,1);
}

.navbar .hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px,0,0) rotate(-45deg) scale(.7,1);
}

.navbar .hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.navbar .hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px,0,0) rotate(-45deg) scale(.7,1);
}

.navbar .hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px,0,0) rotate(45deg) scale(.7,1);
}

.navbar .hamburger--boring .hamburger-inner,.navbar .hamburger--boring .hamburger-inner::after,.navbar .hamburger--boring .hamburger-inner::before {
  transition-property: none;
}

.navbar .hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.navbar .hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.navbar .hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.navbar .hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: .13s;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear;
}

.navbar .hamburger--collapse .hamburger-inner::before {
  transition: top .12s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0,-10px,0) rotate(-45deg);
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .22s linear;
}

.navbar .hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333),transform .13s .25s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: .13s;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear;
}

.navbar .hamburger--collapse-r .hamburger-inner::before {
  transition: top .12s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0,-10px,0) rotate(45deg);
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .22s linear;
}

.navbar .hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333),transform .13s .25s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 275ms;
  transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
}

.navbar .hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 125ms 275ms ease;
}

.navbar .hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 275ms cubic-bezier(.68,-.55,.265,1.55);
}

.navbar .hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(135deg);
  transition-delay: 75ms;
}

.navbar .hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.navbar .hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0,-20px,0) rotate(-270deg);
  transition-delay: 75ms;
}

.navbar .hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 275ms;
  transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
}

.navbar .hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 125ms 275ms ease;
}

.navbar .hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 275ms cubic-bezier(.68,-.55,.265,1.55);
}

.navbar .hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(-135deg);
  transition-delay: 75ms;
}

.navbar .hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.navbar .hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0,-20px,0) rotate(270deg);
  transition-delay: 75ms;
}

.navbar .hamburger--emphatic {
  overflow: hidden;
}

.navbar .hamburger--emphatic .hamburger-inner {
  transition: background-color 125ms 175ms ease-in;
}

.navbar .hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,left 125ms 175ms ease-in;
}

.navbar .hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,right 125ms 175ms ease-in;
}

.navbar .hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent!important;
}

.navbar .hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px,80px,0) rotate(45deg);
  transition: left 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1);
}

.navbar .hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px,80px,0) rotate(-45deg);
  transition: right 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1);
}

.navbar .hamburger--emphatic-r {
  overflow: hidden;
}

.navbar .hamburger--emphatic-r .hamburger-inner {
  transition: background-color 125ms 175ms ease-in;
}

.navbar .hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,left 125ms 175ms ease-in;
}

.navbar .hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,right 125ms 175ms ease-in;
}

.navbar .hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent!important;
}

.navbar .hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px,-80px,0) rotate(-45deg);
  transition: left 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1);
}

.navbar .hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px,-80px,0) rotate(45deg);
  transition: right 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1);
}

.navbar .hamburger--minus .hamburger-inner::after,.navbar .hamburger--minus .hamburger-inner::before {
  transition: bottom 80ms 0s ease-out,top 80ms 0s ease-out,opacity 0s linear;
}

.navbar .hamburger--minus.is-active .hamburger-inner::after,.navbar .hamburger--minus.is-active .hamburger-inner::before {
  opacity: 0;
  transition: bottom 80ms ease-out,top 80ms ease-out,opacity 0s 80ms linear;
}

.navbar .hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.navbar .hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

.navbar .hamburger--slider .hamburger-inner {
  top: 2px;
}

.navbar .hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform,opacity;
  transition-timing-function: ease;
  transition-duration: .15s;
}

.navbar .hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.navbar .hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px,-6px,0);
  opacity: 0;
}

.navbar .hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0,-20px,0) rotate(-90deg);
}

.navbar .hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.navbar .hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform,opacity;
  transition-timing-function: ease;
  transition-duration: .15s;
}

.navbar .hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.navbar .hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(-45deg);
}

.navbar .hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px,-6px,0);
  opacity: 0;
}

.navbar .hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0,-20px,0) rotate(90deg);
}

.navbar .hamburger--spin .hamburger-inner {
  transition-duration: .22s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spin .hamburger-inner::before {
  transition: top .1s .25s ease-in,opacity .1s ease-in;
}

.navbar .hamburger--spin .hamburger-inner::after {
  transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top .1s ease-out,opacity .1s .12s ease-out;
}

.navbar .hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--spin-r .hamburger-inner {
  transition-duration: .22s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spin-r .hamburger-inner::before {
  transition: top .1s .25s ease-in,opacity .1s ease-in;
}

.navbar .hamburger--spin-r .hamburger-inner::after {
  transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top .1s ease-out,opacity .1s .12s ease-out;
}

.navbar .hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s .13s linear;
}

.navbar .hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top .1s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spring.is-active .hamburger-inner {
  transition-delay: .22s;
  background-color: transparent!important;
}

.navbar .hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top .1s .15s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
  transform: translate3d(0,10px,0) rotate(45deg);
}

.navbar .hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
  transform: translate3d(0,10px,0) rotate(-45deg);
}

.navbar .hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: .13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity 0s linear;
}

.navbar .hamburger--spring-r .hamburger-inner::before {
  transition: top .1s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0,-10px,0) rotate(-45deg);
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s .22s linear;
}

.navbar .hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top .1s .15s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--stand .hamburger-inner {
  transition: transform 75ms .15s cubic-bezier(.55,.055,.675,.19),background-color 0s 75ms linear;
}

.navbar .hamburger--stand .hamburger-inner::before {
  transition: top 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--stand .hamburger-inner::after {
  transition: bottom 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent!important;
  transition: transform 75ms 0s cubic-bezier(.215,.61,.355,1),background-color 0s .15s linear;
}

.navbar .hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--stand-r .hamburger-inner {
  transition: transform 75ms .15s cubic-bezier(.55,.055,.675,.19),background-color 0s 75ms linear;
}

.navbar .hamburger--stand-r .hamburger-inner::before {
  transition: top 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--stand-r .hamburger-inner::after {
  transition: bottom 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent!important;
  transition: transform 75ms 0s cubic-bezier(.215,.61,.355,1),background-color 0s .15s linear;
}

.navbar .hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--squeeze .hamburger-inner {
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--squeeze .hamburger-inner::before {
  transition: top 75ms .12s ease,opacity 75ms ease;
}

.navbar .hamburger--squeeze .hamburger-inner::after {
  transition: bottom 75ms .12s ease,transform 75ms cubic-bezier(.55,.055,.675,.19);
}

.navbar .hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 75ms ease,opacity 75ms .12s ease;
}

.navbar .hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 75ms ease,transform 75ms .12s cubic-bezier(.215,.61,.355,1);
}

.navbar .hamburger--vortex .hamburger-inner {
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.19,1,.22,1);
}

.navbar .hamburger--vortex .hamburger-inner::after,.navbar .hamburger--vortex .hamburger-inner::before {
  transition-duration: 0s;
  transition-delay: .1s;
  transition-timing-function: linear;
}

.navbar .hamburger--vortex .hamburger-inner::before {
  transition-property: top,opacity;
}

.navbar .hamburger--vortex .hamburger-inner::after {
  transition-property: bottom,transform;
}

.navbar .hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(.19,1,.22,1);
}

.navbar .hamburger--vortex.is-active .hamburger-inner::after,.navbar .hamburger--vortex.is-active .hamburger-inner::before {
  transition-delay: 0s;
}

.navbar .hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.navbar .hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.navbar .hamburger--vortex-r .hamburger-inner {
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.19,1,.22,1);
}

.navbar .hamburger--vortex-r .hamburger-inner::after,.navbar .hamburger--vortex-r .hamburger-inner::before {
  transition-duration: 0s;
  transition-delay: .1s;
  transition-timing-function: linear;
}

.navbar .hamburger--vortex-r .hamburger-inner::before {
  transition-property: top,opacity;
}

.navbar .hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom,transform;
}

.navbar .hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(.19,1,.22,1);
}

.navbar .hamburger--vortex-r.is-active .hamburger-inner::after,.navbar .hamburger--vortex-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
}

.navbar .hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.navbar .hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.navbar .navbar-brand img {
  width: 100px;
}

@media (max-width:991.98px) {
  .navbar .navbar-brand {
    margin-left: 15px;
  }

  .navbar .navbar-brand img {
    width: 100px;
  }
}

@media (max-width:420px) {
  .navbar .navbar-brand {
    margin-left: 10px;
  }

  .navbar .navbar-brand img {
    width: 100px;
  }
  .service-card {
    height: auto !important;
  }
}

@media (max-width:576px) {
  .navbar .navbar-brand {
    margin-left: 0;
  }
  .service-card {
    height: auto !important;
  }
}

.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width:991.98px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 0;
    margin-right: 0;
  }
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #151515;
  font-size: 13px;
  line-height: 1.72;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.navbar .navbar-nav .nav-item .nav-link span {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-size: inherit;
}

.navbar .navbar-nav .nav-item .nav-link span:after {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #dc3545;
  content: '';
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.navbar .navbar-nav .nav-item.active .nav-link span:after,.navbar .navbar-nav .nav-item:active .nav-link span:after,.navbar .navbar-nav .nav-item:focus .nav-link span:after,.navbar .navbar-nav .nav-item:focus-within .nav-link span:after,.navbar .navbar-nav .nav-item:hover .nav-link span:after {
  width: 100%;
}

@media (min-width:992px) and (max-width:1372px) {
  .navbar .navbar-nav .nav-item .nav-item {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  content: '\f107';
  font-size: 16px;
  border: 0;
  color: #838386;
  margin-left: .5em;
  vertical-align: baseline;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.navbar .navbar-nav .nav-item.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  box-shadow: none;
  -webkit-box-shadow: none;
  border: 0;
  padding: 0;
  margin-top: 30px;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}

@media (min-width:992px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.animate {
    animation-duration: .6s;
    -webkit-animation-duration: .6s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

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

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

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

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

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

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul {
  margin: 0;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item {
  border-bottom: 1px solid #dbdada;
  color: #151515;
  -webkit-transform: translate(0,100px);
  transform: translate(0,100px);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item .dropdown-link {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .065em;
  color: inherit;
  padding: 10px 25px;
  text-align: left;
  text-decoration: none;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item.active,.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item:active,.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item:focus,.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item:focus-within,.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item:hover {
  color: #dc3545;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu ul .dropdown-item:last-child {
  border-bottom: 0;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: dropup;
  animation-name: dropup;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(1) {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(2) {
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(3) {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(4) {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(5) {
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(6) {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(7) {
  -webkit-animation-duration: .9s;
  animation-duration: .9s;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item:nth-child(8) {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@keyframes dropup {
  0% {
    opacity: 0;
    transform: translate(0,100px);
  }

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

@-webkit-keyframes dropup {
  0% {
    opacity: 0;
    transform: translate(0,100px);
  }

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

.swiper-container {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 31.51042vw;
}

@media (max-width:520px) {
  .swiper-container {
    height: 60vh;
    min-height: 31.51042vw;
  }
}

.swiper-container .swiper-slide {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
}

.swiper-container .swiper-slide .swiper-slide-label {
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-direction: column;
  left: 5vw;
  top: 50%;
  width: 100%;
  max-width: 600px;
  height: auto;
  overflow: hidden;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  transform: translateY(100%);
  opacity: 0;
  background-color: rgba(255,255,255,.85);
  transform-origin: bottom;
  transition-delay: 1s;
  padding: 100px;
  z-index: 1;
  white-space: normal;
  text-align: left;
}

.swiper-container .swiper-slide .swiper-slide-label .slide-label-title {
  font-size: 40px;
  color: #151515;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.swiper-container .swiper-slide .swiper-slide-label .slider-lable-subtitle {
  line-height: 1.67;
  letter-spacing: .075em;
  font-size: 18px;
  margin-bottom: 25px;
}

.swiper-container .swiper-slide .swiper-slide-label .animated {
  transition-delay: .5s;
}

@media (max-width:991.98px) {
  .swiper-container .swiper-slide .swiper-slide-label {
    left: 10px;
    padding: 25px;
    max-width: 400px;
  }

  .swiper-container .swiper-slide .swiper-slide-label .slide-label-title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .swiper-container .swiper-slide .swiper-slide-label .slider-lable-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .swiper-container .swiper-slide .swiper-slide-label .btn-lg {
    font-size: 14px;
    padding: .5rem 1.3rem;
  }
}

@media (max-width:520px) {
  .swiper-container .swiper-slide .swiper-slide-label {
    position: relative;
    max-width: 100%;
    left: 0;
    top: 100%;
  }

  .swiper-container .swiper-slide .swiper-slide-label .slider-lable-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .swiper-container .swiper-slide .swiper-slide-label .slide-label-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.swiper-container .swiper-slide.swiper-slide-active .swiper-slide-label {
  opacity: 1;
  transform: translateY(-50%);
}

@media (max-width:520px) {
  .swiper-container .swiper-slide.swiper-slide-active .swiper-slide-label {
    transform: translateY(-100%);
  }
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  padding: 5px 0 5px 15px;
  background: 0 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  outline: 0;
  opacity: 1;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  transform-origin: right;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
  width: 100%;
}

.swiper-container .controls {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  background-color: #fff;
  height: 100px;
  width: 250px;
  z-index: 1;
  text-align: right;
  padding: 25px;
}

.swiper-container .controls:before {
  position: absolute;
  left: -20px;
  top: 0;
  width: 40px;
  height: 100px;
  content: '';
  display: block;
  background-color: #fff;
  transform: skew(-20deg);
}

.swiper-container .controls .swiper-button-next,.swiper-container .controls .swiper-button-prev {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  left: auto;
  right: auto;
  line-height: 48px;
  color: #151515;
  border: 2px solid #707070;
  -webkit-border-radius: 48px;
  border-radius: 48px;
  text-align: center;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.swiper-container .controls .swiper-button-next::after,.swiper-container .controls .swiper-button-prev::after {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  font-size: 35px;
  color: #151515;
  display: inline-block;
  vertical-align: sub;
}

.swiper-container .controls .swiper-button-next:focus,.swiper-container .controls .swiper-button-next:hover,.swiper-container .controls .swiper-button-prev:focus,.swiper-container .controls .swiper-button-prev:hover {
  border-color: #dc3545;
}

.swiper-container .controls .swiper-button-next:focus::after,.swiper-container .controls .swiper-button-next:hover::after,.swiper-container .controls .swiper-button-prev:focus::after,.swiper-container .controls .swiper-button-prev:hover::after {
  color: #dc3545;
}

.swiper-container .controls .swiper-button-prev {
  margin-right: 15px;
}

.swiper-container .controls .swiper-button-prev::after {
  content: '\f104';
}

.swiper-container .controls .swiper-button-next::after {
  content: '\f105';
}

.owl-theme .owl-nav {
  margin-top: 0;
}

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

.owl-theme .owl-nav .owl-next,.owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 10px;
  background-color: #fff;
  color: #707070;
  font-size: 20px!important;
}

.owl-theme .owl-nav .owl-prev {
  left: 0;
}

.owl-theme .owl-nav [class*=owl-] {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.owl-theme .owl-nav [class*=owl-]:focus,.owl-theme .owl-nav [class*=owl-]:hover {
  color: #dc3545;
  background-color: transparent;
}

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background-color: #838386;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #dc3545;
}

.about {
  position: relative;
}

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

@media (max-width:991.98px) {
  .about::before {
    display: none;
  }
}

.about::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  content: '';
  display: block;
  background: transparent url(../img/1.jpg) center center/contain no-repeat;
}

@media (max-width:991.98px) {
  .about::after {
    display: none;
  }
}

@media (max-width:991.98px) {
  .about img {
    width: 100%;
  }
}

.about .tab-area .nav-tabs {
  border-bottom: 3px solid #c6c6c6;
}

.about .tab-area .nav-tabs .nav-item {
  background-color: transparent;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #151515;
  margin-bottom: -3px;
  padding: 20px;
}

.about .tab-area .nav-tabs .nav-item.active {
  color: #dc3545;
  border-bottom: 3px solid #dc3545;
}

@media (max-width:460px) {
  .about .tab-area .nav-tabs {
    flex-flow: column;
    flex-wrap: wrap;
  }

  .about .tab-area .nav-tabs .nav-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 12px 0;
    color: #707070;
  }

  .about .tab-area .nav-tabs .nav-item.active {
    order: 3;
  }
}

.about .tab-area .tab-pane {
  padding: 25px 0;
}

.service-card {
  display: block;
  text-align: center;
  padding: 25px;
  -webkit-transition: all .4s ease-in;
  -moz-transition: all .4s ease-in;
  -ms-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
  border: 1px solid #f1f1f1;
  height: 230px;
}

.service-card .img-block {
  position: relative;
  display: block;
  margin: auto auto 40px;
  width: 60px;
}

.service-card .img-block img {
  position: relative;
  display: block;
  width: auto;
  height: 55px;
  margin: 0 auto 0;
  transform: translateY(-5px);
}

.service-card .img-block:after {
  position: absolute;
  content: '';
  width: 63px;
  height: 64px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  display: block;
  background: url(../img/serive-icon-bg.png) center center/contain no-repeat;
  -webkit-transition: all .4s ease-in;
  -moz-transition: all .4s ease-in;
  -ms-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
  z-index: -1;
}

.service-card .service-title {
  position: relative;
  padding-bottom: 30px;
  -webkit-transition: all .4s ease-in;
  -moz-transition: all .4s ease-in;
  -ms-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
  display: inline-block;
  width: auto;
}

.service-card .service-title:after {
  position: absolute;
  content: '';
  width: 50%;
  height: 2px;
  background-color: #c6c6c6;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0 auto;
  -webkit-transition: all .4s ease-in;
  -moz-transition: all .4s ease-in;
  -ms-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  transition: all .4s ease-in;
}

.service-card:focus,.service-card:hover {
  box-shadow: 0 0 20px 0 rgba(0,0,0,.03);
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.03);
  border-color: transparent;
}

.service-card:focus .img-block:after,.service-card:hover .img-block:after {
  transform: rotate(40deg);
}

.service-card:focus .service-title,.service-card:hover .service-title {
  color: #dc3545;
}

.service-card:focus .service-title:after,.service-card:hover .service-title:after {
  width: 80%;
}

.works {
  position: relative;
}

.works .works-items:nth-child(even) {
  margin-bottom: 8px;
}

.works-filter .filter-btn {
  color: #151515;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 1px;
  padding: .75rem 2rem;
  border: 0;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}

.works-image {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.works-image .overlay {
  position: absolute;
  display: block;
  width: calc(100% - 30px);
  padding: 20px;
  height: auto;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px;
  background-color: #fff;
  transform: translateY(200px);
  transform-origin: bottom;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
}

.works-image .overlay .work-item-title {
  position: relative;
  display: block;
  font-size: 18px;
  color: #151515;
  margin-bottom: 15px;
  padding-bottom: 15px;
  cursor: pointer;
}

.works-image .overlay .work-item-title a {
  color: #151515;
}

.works-image .overlay .work-item-title:focus,.works-image .overlay .work-item-title:hover {
  color: #dc3545;
}

.works-image .overlay .work-item-title::after {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 80px;
  background-color: #dc3545;
  bottom: -3px;
  content: '';
}

.works-image .overlay .work-item-title~p {
  font-size: 14px;
  color: #151515;
  margin: 0;
}

.works-image .overlay .zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 30px;
  display: inline-block;
  cursor: pointer;
}

.works-image .overlay .zoom-icon a {
  font-size: 30px;
  color: #151515;
}

.works-image .overlay .zoom-icon:focus a,.works-image .overlay .zoom-icon:hover a {
  color: #dc3545;
}

.works-image:focus .overlay,.works-image:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.poject-card {
  position: relative;
  overflow: hidden;
}

.poject-card a {
  display: block;
}

.poject-card .project-dteails {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  background-color: #fff;
  margin: 20px;
  width: calc(100% - 40px);
  padding: 8px;
  text-align: center;
  z-index: 1;
  transform: translateY(200px);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.poject-card .project-details-subheading {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: #707070;
  padding-bottom: 10px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.poject-card .project-details-subheading::before {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #dc3545;
  width: 50%;
  margin: 0 auto;
}

.poject-card:focus .project-dteails,.poject-card:hover .project-dteails {
  transform: translateY(0);
}

@media (max-width:991.98px) {
  .works-filter {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: 10px;
  }

  .works-filter .filter-btn {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 10px;
  }

  .works .works-items {
    margin-bottom: 30px;
  }
}

.counter-flex {
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.counter-flex .d-flex-item {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

@media (min-width:992px) {
  .counter-flex .d-flex-item {
    /* flex: 1 1 calc(100% / 3);
    max-width: calc(100% / 3); */
    width: calc(100% / 3);
    border-right: 1px solid rgba(255,255,255,.5);
    border-bottom: 0;
  }
}

.counter-flex .d-flex-item:last-child {
  border: 0;
}

.counter-flex .counter-box {
  position: relative;
  z-index: 2;
}

.counter-flex .counter-box h3 {
  display: block;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.5;
  color: #fff;
}

.counter-flex .counter-box .counter {
  display: block;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 5px;
  color: #fff;
}

.counter-flex .counter-box .counter-icon {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin: 0 auto 5px;
  padding: 0 20px 20px;
}

.counter-flex .counter-box .counter-icon:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 5px;
  width: 100%;
  content: '';
  bottom: 0;
  background-color: #dc3545;
}

.counter-flex .counter-box .counter-icon img,.counter-flex .counter-box .counter-icon svg {
  display: block;
  width: auto;
  height: 50px;
  margin: 0 auto;
  fill: #fff;
}

.counter-flex .counter-box .counter-icon i {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.accordion {
  position: relative;
}

.accordion .accordion-container {
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.03);
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.03);
}

.accordion .accordion-container .accordion-header [data-toggle=collapse] {
  position: relative;
  display: block;
  background-color: #fff;
  color: #151515;
  padding: 20px 50px 20px 20px;
  font-size: 16px;
  width: 100%;
  border: 0;
  text-align: left;
}

.accordion .accordion-container .accordion-header [data-toggle=collapse]:after {
  position: absolute;
  right: 18px;
  top: 15px;
  content: '\f107';
  font-size: 22px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 28px;
  border: 4px solid #dc3545;
  color: #151515;
  -webkit-border-radius: 35px;
  border-radius: 35px;
  text-align: center;
}

.accordion .accordion-container .accordion-header [data-toggle=collapse][aria-expanded=true]:after {
  transform: rotate(-180deg);
}

.accordion .accordion-container .accordion-body .content {
  border-top: 1px solid #d8d8d8;
  background-color: #fff;
  display: block;
  padding: 20px 10px;
}

.accordion .accordion-container:last-child {
  margin-bottom: 0;
}

.testimonials .title {
  margin-bottom: 30px;
}

.testimonials #testimonialSlider {
  position: relative;
  position: relative;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);
  z-index: auto;
}

.testimonials #testimonialSlider .testimonials-item {
  padding: 50px;
  text-align: center;
  z-index: 1;
}

.testimonials #testimonialSlider .testimonials-item figure {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  -webkit-border-radius: 150px;
  border-radius: 150px;
  overflow: hidden;
  margin: 0 auto 30px;
}

.testimonials #testimonialSlider .testimonials-item .what-they-said {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 10px 50px;
  font-size: 16px;
  line-height: 2;
  color: #707070;
}

@media (max-width:640px) {
  .testimonials #testimonialSlider .testimonials-item .what-they-said {
    font-size: 14px;
  }
}

.testimonials #testimonialSlider .testimonials-item .what-they-said::before,.testimonials #testimonialSlider .testimonials-item .what-they-said:after {
  position: absolute;
  font-size: 16px;
  content: '\f10d';
}

.testimonials #testimonialSlider .testimonials-item .what-they-said:before {
  left: 0;
  top: 0;
}

.testimonials #testimonialSlider .testimonials-item .what-they-said:after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.testimonials #testimonialSlider .testimonials-item .auther-title {
  font-size: 18px;
  color: #151515;
  margin-bottom: 0;
}

.testimonials #testimonialSlider .testimonials-item .auther-designation {
  color: #838386;
  font-size: 13px;
}

@media (max-width:767.98px) {
  .testimonials #testimonialSlider .testimonials-item {
    padding: 20px;
  }
}

@media (max-width:640px) {
  .testimonials #testimonialSlider .testimonials-item {
    padding: 10px;
  }
}

.testimonials #testimonialSlider.owl-theme {
  position: relative;
  margin-top: 50px;
  margin-bottom: 70px;
}

.testimonials #testimonialSlider.owl-theme::before,.testimonials #testimonialSlider.owl-theme:after {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100px;
}

.testimonials #testimonialSlider.owl-theme:before {
  top: -10px;
  background-color: #f3f3f3;
  max-width: 90%;
  z-index: -1;
}

.testimonials #testimonialSlider.owl-theme:after {
  top: -20px;
  background-color: #e8e8e8;
  max-width: 85%;
  z-index: -2;
}

.testimonials #testimonialSlider.owl-theme .owl-dots {
  margin-top: 0;
  transform: translateY(50px);
}

.testimonials #testimonialSlider.owl-theme .owl-dots .owl-dot span {
  background-color: #838386;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonials #testimonialSlider.owl-theme .owl-dots .owl-dot.active span,.testimonials #testimonialSlider.owl-theme .owl-dots .owl-dot:focus span,.testimonials #testimonialSlider.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #dc3545;
}

.contact-info {
  position: relative;
  display: block;
}

@media (min-width:992px) {
 .contact .contact-info {
    padding-left: 50px;
    margin-left: 50px;
    border-left: 1px solid #eee;
  }
}

.contact .contact-info .contact-info-item {
  position: relative;
  display: block;
  margin-bottom: 25px;
  padding-bottom: 25px;
  padding-left: 40px;
  border-bottom: 1px solid #eee;
}

.footer .contact-info .contact-info-item {
    position: relative;
    display: block;
    /* padding-left: 40px; */
}

.contact-info .contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-info .contact-info-item:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #dc3545;
  /* line-height: 1; */
}

.contact-info .contact-info-item.phone:before {
  content: '\f095';
}

.contact-info .contact-info-item.email:before {
  content: '\f0e0';
}

.contact-info .contact-info-item.address:before {
  content: '\f041';
  font-size: 25px;
}

.contact .contact-info .contact-info-title {
  font-size: 14px;
  color: #151515;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: .1em;
}
.footer .contact-info-item a, .footer .contact-info-item p {
    color: #fff;
}

.footer .contact-info .contact-info-title {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    letter-spacing: .1em;
}

.map {
  position: relative;
  display: block;
  height: 500px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.plans {
  padding: 50px 0;
}

.plan-item {
  position: relative;
  display: block;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  margin: 0 auto;
  max-width: 370px;
}

.plan-item header {
  padding: 20px 40px;
  font-size: 20px;
  color: #151515;
  text-align: center;
  background-color: #f3f3f3;
}

.plan-item .plan-details {
  padding: 40px;
  border: 2px solid #f3f3f3;
  border-top: 0;
}

.plan-item .plan-details .plan-type {
  color: #151515;
  font-size: 16px;
  margin-bottom: 10px;
}

.plan-item .plan-details .plan-amount {
  color: #dc3545;
  font-size: 40px;
  margin-bottom: 10px;
}

.plan-item .plan-details .plan-amount sup {
  font-size: 25px;
  top: 7px;
  vertical-align: super;
}

.plan-item .plan-details .plan-amount small {
  font-size: 20px;
}

.plan-item .plan-details .plan-details-list {
  display: block;
  padding: 0;
  margin: 30px 0 35px;
}

.plan-item .plan-details .plan-details-list .plan-details-list-item {
  position: relative;
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
  color: #707070;
  padding-left: 30px;
}

.plan-item .plan-details .plan-details-list .plan-details-list-item:last-child {
  margin-bottom: 0;
}

.plan-item .plan-details .plan-details-list .plan-details-list-item:before {
  position: absolute;
  display: block;
  content: '\f00c';
  color: #dc3545;
  left: 0;
  top: 0;
  font-size: 14px;
}

.plan-item .plan-details .plan-details-list .plan-details-list-item.exclude:before {
  content: '\f00d';
  color: #ff5166;
}

.plan-item .plan-details .btn {
  margin-bottom: 10px;
}

.plan-item.popular {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.plan-item.popular header {
  background-color: #dc3545;
  color: #fff;
}

.plan-item.popular .plan-details {
  border: 1px solid #dc3545;
  border-top: 0;
}

.plan-item:focus,.plan-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}

.plan-item:focus .plan-details,.plan-item:hover .plan-details {
  border-color: #fff;
}

.footer {
  background-color: #333;
}

.footer .footer-logo {
  display: block;
  max-width: 200px;
}

.accordion .footer-title {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 2;
    margin-bottom: 10px;
    color: #0b0b0b
}

.footer .footer-title {
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
  }

.footer .footer-nav, .accordion .footer-nav {
  padding-left: 0;
}

.footer .footer-nav li, .accordion .footer-nav li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 20px;
}

.footer .footer-nav li:last-child, .accordion .footer-nav li:last-child {
  margin-bottom: 0;
}

.footer .footer-nav li a, .accordion .footer-nav li a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  letter-spacing: .056em;
}
.accordion .footer-nav li a {
    color: #707070;
}

.footer .footer-nav li:before, .accordion .footer-nav li:before {
  position: absolute;
  display: block;
  content: '\f105';
  font-size: 14px;
  left: 0;
  top: 3px;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}

.footer .footer-nav li:active:before,.footer .footer-nav li:focus-within:before,.footer .footer-nav li:focus:before,.footer .footer-nav li:hover:before {
  transform: translateX(8px);
}
.accordion .footer-nav li:active:before,.accordion .footer-nav li:focus-within:before,.accordion .footer-nav li:focus:before,.accordion .footer-nav li:hover:before {
    transform: translateX(8px);
}
.footer .newsletter {
  background-color: #c8d0d9;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 5px;
  flex-wrap: nowrap;
}

.footer .newsletter input[type=email] {
  background: 0 0;
  border: 0;
  padding: 5px 15px;
  height: auto;
  font-size: 14px;
  flex: 1 1 0%;
}

.footer .newsletter input[type=email]::-webkit-input-placeholder {
  color: #86919d!important;
  font-size: 16px;
}

.footer .newsletter input[type=email]:-moz-placeholder {
  color: #86919d!important;
  font-size: 16px;
}

.footer .newsletter input[type=email]::-moz-placeholder {
  color: #86919d!important;
  font-size: 16px;
}

.footer .newsletter input[type=email]:-ms-input-placeholder {
  color: #86919d!important;
  font-size: 16px;
}

.footer .newsletter .input-group-prepend .btn {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  line-height: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer .newsletter .input-group-prepend .btn .bx {
  font-size: 25px;
}

.footer .socialmedia {
  position: relative;
  display: flex;
  margin-top: 30px;
  align-items: center;
}

.footer .socialmedia:before {
  display: inline-block;
  content: attr(data-title);
  font-size: 14px;
  letter-spacing: 1px;
}

.footer .socialmedia .icon-list {
  padding-left: 0;
  margin: 0 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.footer .socialmedia .icon-list li {
  padding: 10px;
}

.footer .socialmedia .icon-list li a {
  font-size: 35px;
  display: block;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  display: block;
}

.footer .socialmedia .icon-list li:active a,.footer .socialmedia .icon-list li:focus a,.footer .socialmedia .icon-list li:focus-within a,.footer .socialmedia .icon-list li:hover a {
  transform: translateY(-10px);
}

.copyright {
  background-color: #272727;
  padding: 20px 0;
}

#goTop {
  position: fixed;
  bottom: 0;
  right: 50px;
  display: none;
  font-size: 30px;
  width: 60px;
  height: 60px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
}

#goTop i,#goTop span {
  line-height: 1;
  display: inline-block;
  vertical-align: text-top;
  width: 11px;
}

@media (max-width:991.98px) {
  #goTop {
    opacity: 0;
    display: none!important;
  }
}

.icon-contact-style {
  display: block;
}

.icon-contact-style li {
  display: inline-block;
  width: auto;
  margin-bottom: 10px;
}

.icon-contact-style li:last-child {
  margin-bottom: 0;
}

.icon-contact-style li a {
  position: relative;
  display: block;
  width: auto;
  max-width: 60px;
  height: 60px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  font-size: 15px;
  color: #151515;
  text-decoration: none;
  border: 3px solid #c6c6c6;
  padding: 10px;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: #fff;
  padding-left: 42px;
  box-shadow: none;
  -webkit-box-shadow: none;
  overflow: hidden;
}

.icon-contact-style li a::before {
  position: absolute;
  display: block;
  content: '';
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-position: top center;
  background-size: 22px auto;
  background-repeat: no-repeat;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.icon-contact-style li a span {
  display: block;
  opacity: 0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  font-size: inherit;
  color: inherit;
  margin-left: 15px;
  line-height: 35px;
  transform: translateX(-200px);
  animation-delay: .5s;
  white-space: nowrap;
}

.icon-contact-style li.phone a::before {
  background-image: url(../img/contact-icon.svg);
}

.icon-contact-style li:hover a {
  box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);
  border-color: #fff;
  color: #dc3545;
  max-width: 100%;
}

.icon-contact-style li:hover a span {
  opacity: 1;
  transform: translateX(0);
}

.icon-contact-style li:hover a::before {
  background-position: bottom center;
}

.icon-contact-style.rounded--style li a {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

.social-icons {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.social-icons li {
  display: block;
  flex: 0 0 50px;
  max-width: 50px;
  height: 50px;
  background-color: #838386;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  margin: 0 7.5px;
}

.social-icons li a {
  display: block;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.social-icons li:focus,.social-icons li:hover {
  background-color: #dc3545;
}

.social-icons.rounded--style li {
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.newsletter {
  background-color: #47505f;
  padding: 50px 0;
}

.newsletter h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}

.newsletter p {
  color: #fff;
}

.newsletter .form-control {
  text-align: center;
}
iframe {
  width: 100%;
}
a h6 {
	font-weight: bold !important;
}
.service-page .service-card {
  border: 1px solid #63c294;
}
a.download-link:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}
a.download-link:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
.table-problem td{
  background-color: #d6f8d1 !important;
}