@charset "UTF-8";
/* Do not edit main.css edit styles.css or main.scss insted */
* {
  line-height: inherit !important;
}

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

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

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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 {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-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);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-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(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

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

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

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

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

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

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

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

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

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

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

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

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

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

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

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

/*!
 *  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 PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../libs/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../libs/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../libs/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../libs/font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../libs/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../libs/font-awesome-4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

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

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

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

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

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

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

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

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

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

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  -webkit-border-radius: .1em;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

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

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

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

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

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

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

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

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

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

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

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

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

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

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

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

.fa-th:before {
  content: "";
}

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

.fa-check:before {
  content: "";
}

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

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

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

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

.fa-signal:before {
  content: "";
}

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

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

.fa-home:before {
  content: "";
}

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

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

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

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

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

.fa-inbox:before {
  content: "";
}

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

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

.fa-refresh:before {
  content: "";
}

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

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

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

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

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

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

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

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

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

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

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

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

.fa-list:before {
  content: "";
}

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

.fa-indent:before {
  content: "";
}

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

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

.fa-pencil:before {
  content: "";
}

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

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

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

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

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

.fa-arrows:before {
  content: "";
}

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

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

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

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

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

.fa-eject:before {
  content: "";
}

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

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

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

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

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

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

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

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

.fa-crosshairs:before {
  content: "";
}

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

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

.fa-ban:before {
  content: "";
}

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

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

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

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

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

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

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

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

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

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

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.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;
}

/*
*  Licensing: http://www.pixeden.com/icon-fonts/stroke-7-icon-font-set
*/
@font-face {
  font-family: 'Pe-icon-7-stroke';
  src: url("../libs/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot?d7yf1v");
  src: url("../libs/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v") format("embedded-opentype"), url("../libs/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff?d7yf1v") format("woff"), url("../libs/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf?d7yf1v") format("truetype"), url("../libs/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pe-7s-album:before {
  content: "";
}

.pe-7s-arc:before {
  content: "";
}

.pe-7s-back-2:before {
  content: "";
}

.pe-7s-bandaid:before {
  content: "";
}

.pe-7s-car:before {
  content: "";
}

.pe-7s-diamond:before {
  content: "";
}

.pe-7s-door-lock:before {
  content: "";
}

.pe-7s-eyedropper:before {
  content: "";
}

.pe-7s-female:before {
  content: "";
}

.pe-7s-gym:before {
  content: "";
}

.pe-7s-hammer:before {
  content: "";
}

.pe-7s-headphones:before {
  content: "";
}

.pe-7s-helm:before {
  content: "";
}

.pe-7s-hourglass:before {
  content: "";
}

.pe-7s-leaf:before {
  content: "";
}

.pe-7s-magic-wand:before {
  content: "";
}

.pe-7s-male:before {
  content: "";
}

.pe-7s-map-2:before {
  content: "";
}

.pe-7s-next-2:before {
  content: "";
}

.pe-7s-paint-bucket:before {
  content: "";
}

.pe-7s-pendrive:before {
  content: "";
}

.pe-7s-photo:before {
  content: "";
}

.pe-7s-piggy:before {
  content: "";
}

.pe-7s-plugin:before {
  content: "";
}

.pe-7s-refresh-2:before {
  content: "";
}

.pe-7s-rocket:before {
  content: "";
}

.pe-7s-settings:before {
  content: "";
}

.pe-7s-shield:before {
  content: "";
}

.pe-7s-smile:before {
  content: "";
}

.pe-7s-usb:before {
  content: "";
}

.pe-7s-vector:before {
  content: "";
}

.pe-7s-wine:before {
  content: "";
}

.pe-7s-cloud-upload:before {
  content: "";
}

.pe-7s-cash:before {
  content: "";
}

.pe-7s-close:before {
  content: "";
}

.pe-7s-bluetooth:before {
  content: "";
}

.pe-7s-cloud-download:before {
  content: "";
}

.pe-7s-way:before {
  content: "";
}

.pe-7s-close-circle:before {
  content: "";
}

.pe-7s-id:before {
  content: "";
}

.pe-7s-angle-up:before {
  content: "";
}

.pe-7s-wristwatch:before {
  content: "";
}

.pe-7s-angle-up-circle:before {
  content: "";
}

.pe-7s-world:before {
  content: "";
}

.pe-7s-angle-right:before {
  content: "";
}

.pe-7s-volume:before {
  content: "";
}

.pe-7s-angle-right-circle:before {
  content: "";
}

.pe-7s-users:before {
  content: "";
}

.pe-7s-angle-left:before {
  content: "";
}

.pe-7s-user-female:before {
  content: "";
}

.pe-7s-angle-left-circle:before {
  content: "";
}

.pe-7s-up-arrow:before {
  content: "";
}

.pe-7s-angle-down:before {
  content: "";
}

.pe-7s-switch:before {
  content: "";
}

.pe-7s-angle-down-circle:before {
  content: "";
}

.pe-7s-scissors:before {
  content: "";
}

.pe-7s-wallet:before {
  content: "";
}

.pe-7s-safe:before {
  content: "";
}

.pe-7s-volume2:before {
  content: "";
}

.pe-7s-volume1:before {
  content: "";
}

.pe-7s-voicemail:before {
  content: "";
}

.pe-7s-video:before {
  content: "";
}

.pe-7s-user:before {
  content: "";
}

.pe-7s-upload:before {
  content: "";
}

.pe-7s-unlock:before {
  content: "";
}

.pe-7s-umbrella:before {
  content: "";
}

.pe-7s-trash:before {
  content: "";
}

.pe-7s-tools:before {
  content: "";
}

.pe-7s-timer:before {
  content: "";
}

.pe-7s-ticket:before {
  content: "";
}

.pe-7s-target:before {
  content: "";
}

.pe-7s-sun:before {
  content: "";
}

.pe-7s-study:before {
  content: "";
}

.pe-7s-stopwatch:before {
  content: "";
}

.pe-7s-star:before {
  content: "";
}

.pe-7s-speaker:before {
  content: "";
}

.pe-7s-signal:before {
  content: "";
}

.pe-7s-shuffle:before {
  content: "";
}

.pe-7s-shopbag:before {
  content: "";
}

.pe-7s-share:before {
  content: "";
}

.pe-7s-server:before {
  content: "";
}

.pe-7s-search:before {
  content: "";
}

.pe-7s-film:before {
  content: "";
}

.pe-7s-science:before {
  content: "";
}

.pe-7s-disk:before {
  content: "";
}

.pe-7s-ribbon:before {
  content: "";
}

.pe-7s-repeat:before {
  content: "";
}

.pe-7s-refresh:before {
  content: "";
}

.pe-7s-add-user:before {
  content: "";
}

.pe-7s-refresh-cloud:before {
  content: "";
}

.pe-7s-paperclip:before {
  content: "";
}

.pe-7s-radio:before {
  content: "";
}

.pe-7s-note2:before {
  content: "";
}

.pe-7s-print:before {
  content: "";
}

.pe-7s-network:before {
  content: "";
}

.pe-7s-prev:before {
  content: "";
}

.pe-7s-mute:before {
  content: "";
}

.pe-7s-power:before {
  content: "";
}

.pe-7s-medal:before {
  content: "";
}

.pe-7s-portfolio:before {
  content: "";
}

.pe-7s-like2:before {
  content: "";
}

.pe-7s-plus:before {
  content: "";
}

.pe-7s-left-arrow:before {
  content: "";
}

.pe-7s-play:before {
  content: "";
}

.pe-7s-key:before {
  content: "";
}

.pe-7s-plane:before {
  content: "";
}

.pe-7s-joy:before {
  content: "";
}

.pe-7s-photo-gallery:before {
  content: "";
}

.pe-7s-pin:before {
  content: "";
}

.pe-7s-phone:before {
  content: "";
}

.pe-7s-plug:before {
  content: "";
}

.pe-7s-pen:before {
  content: "";
}

.pe-7s-right-arrow:before {
  content: "";
}

.pe-7s-paper-plane:before {
  content: "";
}

.pe-7s-delete-user:before {
  content: "";
}

.pe-7s-paint:before {
  content: "";
}

.pe-7s-bottom-arrow:before {
  content: "";
}

.pe-7s-notebook:before {
  content: "";
}

.pe-7s-note:before {
  content: "";
}

.pe-7s-next:before {
  content: "";
}

.pe-7s-news-paper:before {
  content: "";
}

.pe-7s-musiclist:before {
  content: "";
}

.pe-7s-music:before {
  content: "";
}

.pe-7s-mouse:before {
  content: "";
}

.pe-7s-more:before {
  content: "";
}

.pe-7s-moon:before {
  content: "";
}

.pe-7s-monitor:before {
  content: "";
}

.pe-7s-micro:before {
  content: "";
}

.pe-7s-menu:before {
  content: "";
}

.pe-7s-map:before {
  content: "";
}

.pe-7s-map-marker:before {
  content: "";
}

.pe-7s-mail:before {
  content: "";
}

.pe-7s-mail-open:before {
  content: "";
}

.pe-7s-mail-open-file:before {
  content: "";
}

.pe-7s-magnet:before {
  content: "";
}

.pe-7s-loop:before {
  content: "";
}

.pe-7s-look:before {
  content: "";
}

.pe-7s-lock:before {
  content: "";
}

.pe-7s-lintern:before {
  content: "";
}

.pe-7s-link:before {
  content: "";
}

.pe-7s-like:before {
  content: "";
}

.pe-7s-light:before {
  content: "";
}

.pe-7s-less:before {
  content: "";
}

.pe-7s-keypad:before {
  content: "";
}

.pe-7s-junk:before {
  content: "";
}

.pe-7s-info:before {
  content: "";
}

.pe-7s-home:before {
  content: "";
}

.pe-7s-help2:before {
  content: "";
}

.pe-7s-help1:before {
  content: "";
}

.pe-7s-graph3:before {
  content: "";
}

.pe-7s-graph2:before {
  content: "";
}

.pe-7s-graph1:before {
  content: "";
}

.pe-7s-graph:before {
  content: "";
}

.pe-7s-global:before {
  content: "";
}

.pe-7s-gleam:before {
  content: "";
}

.pe-7s-glasses:before {
  content: "";
}

.pe-7s-gift:before {
  content: "";
}

.pe-7s-folder:before {
  content: "";
}

.pe-7s-flag:before {
  content: "";
}

.pe-7s-filter:before {
  content: "";
}

.pe-7s-file:before {
  content: "";
}

.pe-7s-expand1:before {
  content: "";
}

.pe-7s-exapnd2:before {
  content: "";
}

.pe-7s-edit:before {
  content: "";
}

.pe-7s-drop:before {
  content: "";
}

.pe-7s-drawer:before {
  content: "";
}

.pe-7s-download:before {
  content: "";
}

.pe-7s-display2:before {
  content: "";
}

.pe-7s-display1:before {
  content: "";
}

.pe-7s-diskette:before {
  content: "";
}

.pe-7s-date:before {
  content: "";
}

.pe-7s-cup:before {
  content: "";
}

.pe-7s-culture:before {
  content: "";
}

.pe-7s-crop:before {
  content: "";
}

.pe-7s-credit:before {
  content: "";
}

.pe-7s-copy-file:before {
  content: "";
}

.pe-7s-config:before {
  content: "";
}

.pe-7s-compass:before {
  content: "";
}

.pe-7s-comment:before {
  content: "";
}

.pe-7s-coffee:before {
  content: "";
}

.pe-7s-cloud:before {
  content: "";
}

.pe-7s-clock:before {
  content: "";
}

.pe-7s-check:before {
  content: "";
}

.pe-7s-chat:before {
  content: "";
}

.pe-7s-cart:before {
  content: "";
}

.pe-7s-camera:before {
  content: "";
}

.pe-7s-call:before {
  content: "";
}

.pe-7s-calculator:before {
  content: "";
}

.pe-7s-browser:before {
  content: "";
}

.pe-7s-box2:before {
  content: "";
}

.pe-7s-box1:before {
  content: "";
}

.pe-7s-bookmarks:before {
  content: "";
}

.pe-7s-bicycle:before {
  content: "";
}

.pe-7s-bell:before {
  content: "";
}

.pe-7s-battery:before {
  content: "";
}

.pe-7s-ball:before {
  content: "";
}

.pe-7s-back:before {
  content: "";
}

.pe-7s-attention:before {
  content: "";
}

.pe-7s-anchor:before {
  content: "";
}

.pe-7s-albums:before {
  content: "";
}

.pe-7s-alarm:before {
  content: "";
}

.pe-7s-airplay:before {
  content: "";
}

/**
 * selectize.css (v0.12.1)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
  box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  -webkit-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

.selectize-input.full {
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  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-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader, .mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  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: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-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: 0.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:hover, .mfp-arrow:focus {
  opacity: 1;
}

.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 {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.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%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.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;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 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) {
  /**
   *   * Remove all paddings around the image on small screen */
  .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, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    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, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-tabs {
  position: relative;
  padding: .2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@media (min-width: 993px) {
  /*** ESSENTIAL STYLES ***/
  .sf-menu, .sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sf-menu li {
    position: relative;
  }
  .sf-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
  }
  .sf-menu > li {
    float: left;
  }
  .sf-menu li:hover > ul,
  .sf-menu li.sfHover > ul {
    display: block;
  }
  .sf-menu a {
    display: block;
    position: relative;
  }
  .sf-menu ul ul {
    top: 0;
    left: 100%;
  }
  /*** DEMO SKIN ***/
  .sf-menu {
    float: left;
    margin-bottom: 1em;
  }
  .sf-menu ul {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    min-width: 12em;
    /* allow long menu items to determine submenu width */
    *width: 12em;
    /* no auto sub width for IE7, see white-space comment below */
  }
  .sf-menu a {
    border-left: 1px solid #fff;
    border-top: 1px solid #dFeEFF;
    /* fallback colour must use full shorthand */
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: .75em 1em;
    text-decoration: none;
    zoom: 1;
    /* IE7 */
  }
  .sf-menu a {
    color: #13a;
  }
  .sf-menu li {
    background: #BDD2FF;
    white-space: nowrap;
    /* no need for Supersubs plugin */
    *white-space: normal;
    /* ...unless you support IE7 (let it wrap) */
    -webkit-transition: background .2s;
    transition: background .2s;
  }
  .sf-menu ul li {
    background: #AABDE6;
  }
  .sf-menu ul ul li {
    background: #9AAEDB;
  }
  .sf-menu li:hover,
  .sf-menu li.sfHover {
    background: #CFDEFF;
    /* only transition out, not in */
    -webkit-transition: none;
    transition: none;
  }
  /*** arrows (for all except IE7) **/
  .sf-arrows .menu-item-has-children > a {
    padding-right: 2.5em;
    *padding-right: 1em;
    /* no CSS arrows for IE7 (lack pseudo-elements) */
  }
  /* styling for both css and generated arrows */
  .sf-arrows .menu-item-has-children > a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -3px;
    height: 0;
    width: 0;
    /* order of following 3 rules important for fallbacks to work */
    border: 5px solid transparent;
    border-top-color: #dFeEFF;
    /* edit this to suit design (no rgba in IE8) */
    border-top-color: rgba(255, 255, 255, 0.5);
  }
  .sf-arrows > li > .menu-item-has-children > a:focus:after,
  .sf-arrows > li:hover > .menu-item-has-children > a:after,
  .sf-arrows > .sfHover > .menu-item-has-children > a:after {
    border-top-color: white;
    /* IE8 fallback colour */
  }
  /* styling for right-facing arrows */
  .sf-arrows ul .menu-item-has-children > a:after {
    margin-top: -5px;
    margin-right: -3px;
    border-color: transparent;
    border-left-color: #dFeEFF;
    /* edit this to suit design (no rgba in IE8) */
    border-left-color: rgba(255, 255, 255, 0.5);
  }
  .sf-arrows ul li > .menu-item-has-children > a:focus:after,
  .sf-arrows ul li:hover > .menu-item-has-children > a:after,
  .sf-arrows ul .sfHover > .menu-item-has-children > a:after {
    border-left-color: white;
  }
}

body {
  font-size: 16px;
  min-width: 320px;
  font-weight: 300;
  position: relative;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: #c69c6d;
}

.mfp-wrap::-webkit-scrollbar-track {
  background-color: #fff;
}

.mfp-wrap::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

.mfp-wrap::-webkit-scrollbar-thumb {
  background-color: #c69c6d;
}

html {
  font-size: inherit;
  margin-right: 0 !important;
}

iframe {
  border: none;
  display: block;
}

/*Page loader*/
.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #c69c6d;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px #c69c6d, 0 0 5px #c69c6d;
  box-shadow: 0 0 10px #c69c6d, 0 0 5px #c69c6d;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #c69c6d;
  border-left-color: #c69c6d;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

i {
  line-height: inherit !important;
}

p {
  margin-top: 20px;
  margin-bottom: 0;
}

/* Preloader */
#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #fff;
  z-index: 5;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#status {
  position: absolute;
  left: 47%;
  top: 50%;
  margin: auto;
  width: 49px;
  height: 49px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background: #c69c6d;
  animation: 1.15s infinite ease-in-out;
  -webkit-animation: 1.15s infinite ease-in-out;
  -moz-animation: 1.15s infinite ease-in-out;
  animation-name: loader;
  -webkit-animation-name: loader;
  -moz-animation-name: loader;
}

#status:before, #status:after {
  animation: 1.15s infinite ease-in-out;
  -webkit-animation: 1.15s infinite ease-in-out;
  -moz-animation: 1.15s infinite ease-in-out;
}

#status:before, #status:after {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes loader {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}

@-webkit-keyframes loader {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 0.5;
  }
}

/*Background image*/
.background-image {
  background-size: cover;
  background-repeat: no-repeat;
}

/*Sections*/
section, .section {
  padding-top: 85px;
  padding-bottom: 85px;
}

/*padding 0*/
.padding-0 {
  padding: 0;
}

.pad-t-0 {
  padding-top: 0;
}

.video-iframe iframe {
  width: 100%;
}

.canvas-background {
  position: absolute;
  width: 100%;
  z-index: 2;
  height: 100%;
  top: 0;
  left: 0;
}

.pad-b-0 {
  padding-bottom: 0;
}

.mar-t-0 {
  margin-top: 0;
}

.left-text * {
  text-align: left;
}

.left-text h2:after {
  margin-left: 0 !important;
}

/*Vertical align*/
.table {
  position: relative;
  display: table;
  height: 100%;
  width: 100%;
}

.table .table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*notify*/
.notify {
  display: block;
  background-color: #775e41;
  color: #fff;
  text-align: center;
  padding: 3px;
}

.hidden {
  display: none;
}

/*Social links*/
ul.social-links {
  padding-left: 0;
  margin: 0;
}

.team-socials .team-socials_item {
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  margin-left: 20px;
}

.team-socials .team-socials_item:first-child {
  margin-left: 0;
}

.team-socials .team-socials_item a {
  -webkit-transform: rotate(45deg) translate(0px, 0px);
  -ms-transform: rotate(45deg) translate(0px, 0px);
  transform: rotate(45deg) translate(0px, 0px);
  list-style: none;
  background-color: #c69c6d;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}

.team-socials .team-socials_item a:hover {
  background-color: #504645;
}

.team-socials .team-socials_item a i {
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
  -ms-transform: rotate(-45deg) translate(0px, 0px);
  transform: rotate(-45deg) translate(0px, 0px);
}

ul.minimal li a {
  background-color: #333232;
}

/*Tabs services*/
.services-tabs {
  padding: 0;
}

.services-tabs .ui-tabs-nav {
  padding: 0;
}

.services-tabs .ui-tabs-nav li {
  width: 25%;
  white-space: initial;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0;
  outline: none;
}

.services-tabs .ui-tabs-nav li .ui-tabs-anchor {
  text-align: center;
  outline: none;
  background-color: #212121;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 18px;
  width: 100%;
}

.services-tabs .ui-tabs-nav li .ui-tabs-anchor i {
  color: #ababab;
  font-size: 65px;
}

.services-tabs .ui-tabs-nav li .ui-tabs-anchor p {
  color: #c5c5c5;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.9px;
}

.services-tabs .ui-tabs-nav li .ui-tabs-anchor h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
}

.services-tabs .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor {
  background-color: #1b1b1b;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.services-tabs .ui-tabs-panel {
  padding: 0;
}

/*Start PREV & NEXT CONTROL SLIDER*/
.prev-next-block-rotate {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.prev-next-block-rotate .slick-arrow {
  color: #fff;
}

.prev-next-block-rotate .wrap-prev, .prev-next-block-rotate .wrap-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #fff;
  position: absolute;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all ease .6s;
  transition: all ease .6s;
  text-align: center;
  top: 50%;
}

.prev-next-block-rotate .wrap-prev i, .prev-next-block-rotate .wrap-next i {
  color: #808080;
}

.prev-next-block-rotate .wrap-prev {
  -webkit-box-shadow: 1px 0px 2px #4e4e4e;
  box-shadow: 1px 0px 2px #4e4e4e;
  left: -25px;
}

.prev-next-block-rotate .wrap-prev i {
  position: relative;
}

.prev-next-block-rotate .wrap-prev:hover {
  left: 0;
}

.prev-next-block-rotate .wrap-next {
  -webkit-box-shadow: 0px 0px 2px #4e4e4e;
  box-shadow: 0px 0px 2px #4e4e4e;
  right: -25px;
}

.prev-next-block-rotate .wrap-next i {
  position: relative;
}

.prev-next-block-rotate .wrap-next:hover {
  right: 0;
}

.opacity-control .wrap-prev, .opacity-control .wrap-next {
  opacity: 0.2;
}

.opacity-control .wrap-prev:hover, .opacity-control .wrap-next:hover {
  opacity: 1;
}

/*F&R&C*/
.left {
  text-align: left;
}

.left span.after {
  margin: inherit;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.center .icon-play {
  margin: 0 auto;
}

.center .img-slide img {
  margin: 0 auto;
}

.center h1:after {
  margin: auto;
  margin-top: 8px;
  margin-bottom: 15px;
}

/*Left & right*/
.text-left, .text-left.small-heading {
  text-align: left;
}

.text-left h2:after, .text-left.small-heading h2:after {
  margin: 13px 0 18px;
}

/*Buttons*/
.btn {
  background-color: #c69c6d;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 30px 15px 31px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  letter-spacing: 0.7px;
  display: block;
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background-color: #b28c62;
  color: #fff;
  text-decoration: none;
}

.btn:focus {
  text-decoration: none;
  color: #fff;
}

/*Heading title*/
.heading-title {
  margin-bottom: 70px;
}

.heading-title h2 {
  color: #424242;
  font-size: 41px;
  text-transform: uppercase;
  line-height: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.heading-title h2 span {
  color: #c69c6d;
}

.heading-title .small-desd {
  font-size: 14px;
  text-transform: uppercase;
  color: #c69c6d;
  font-weight: 500;
  letter-spacing: 1px;
}

.heading-title .small-desd span {
  color: #424242;
}

.heading-title p {
  font-size: 14px;
  color: #585858;
  margin-bottom: 0;
}

.small-heading h2 {
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 700;
}

.small-heading h2:after {
  content: "";
  display: block;
  height: 2px;
  width: 55px;
  background-color: #c69c6d;
  margin: 0 auto;
  margin-top: 13px;
  margin-bottom: 18px;
}

.head-service h2 {
  color: #fff;
}

/*Accordion*/
.accordion .ui-accordion-header {
  margin: 10px 0 0 0;
  background-color: #504645;
  color: #fff;
  border: 1px solid #403837;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  padding: 11px 10px 10px 5px;
  letter-spacing: 1px;
  position: relative;
  text-align: left;
}

.accordion .ui-accordion-header .ui-icon {
  display: none;
}

.accordion .ui-accordion-header i {
  margin-left: 10px;
  margin-right: 10px;
}

.accordion .ui-accordion-header:first-child {
  margin-top: 0;
}

.accordion .ui-accordion-header:after {
  font-family: 'Pe-icon-7-stroke';
  content: "\e688";
  color: #b3b3b3;
  font-size: 1.6875rem;
  height: 8px;
  width: 8px;
  display: block;
  position: absolute;
  right: 26px;
  top: 2px;
}

.accordion .ui-state-active {
  background-color: #c69c6d;
  color: #fff;
  -webkit-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  border: none;
}

.accordion .ui-state-active:after {
  content: "\e682";
  color: #fff;
}

.accordion .ui-accordion-content {
  background-color: #f8f8f8;
  border: 1px solid #dfdfdf;
  border-top: none;
  padding: 15px 20px 15px 20px;
}

.accordion .ui-accordion-content p {
  color: #5c5c5c;
  margin-top: 0;
  font-size: 14px;
  line-height: 23px;
}

/*Buttont*/
.buttons-section .large-btn {
  margin-right: 25px;
  border: 2px solid #c69c6d;
}

.buttons-section .large-btn:last-child {
  margin-right: 0;
}

.buttons-section .white-btn {
  background-color: #fff;
  color: #555;
}

.buttons-section .white-btn:hover {
  background-color: #c69c6d;
  color: #fff;
}

.buttons-section .white-btn-all {
  background-color: #fff;
  color: #111;
  border-color: #fff;
}

.buttons-section .white-btn-all:hover {
  background-color: #c69c6d;
  border-color: #c69c6d;
  color: #fff;
}

.buttons-section .accent-btn {
  background-color: #c69c6d;
  color: #fff;
}

.buttons-section .accent-btn:hover {
  background-color: #b28c62;
  color: #fff;
  border-color: #b28c62;
}

.buttons-section .dark-btn {
  background-color: transparent;
}

.buttons-section .dark-btn:hover {
  background-color: #c69c6d;
  color: #fff;
}

.buttons-section .dark-full-btn {
  background-color: #504645;
  border-color: #504645;
}

.buttons-section .dark-full-btn:hover {
  background-color: #c69c6d;
  color: #fff;
  border-color: #504645;
}

.buttons-section .accent-br-btn {
  border-color: #c69c6d;
  background-color: transparent;
  color: #555;
}

.buttons-section .accent-br-btn:hover {
  background-color: #c69c6d;
  color: #fff;
}

.buttons-section .white-tr-btn {
  background-color: transparent;
  border: 2px solid #fff;
}

.buttons-section .white-tr-btn:hover {
  background-color: #c69c6d;
  border-color: #c69c6d;
  color: #fff;
}

.btn-down {
  position: absolute;
  display: block;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  width: 25px;
  height: 35px;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  line-height: 35px;
  vertical-align: middle;
  border: 2px solid rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}

.btn-down:hover {
  border-color: #fff;
}

.btn-down i {
  color: #fff;
  font-size: 13px;
}

/*Form*/
form input[type=text], form input[type=email] {
  padding-bottom: 7px;
}

form textarea {
  resize: vertical;
}

form input[type=text], form input[type=email], form textarea, form select, form .selectize-input, form .selectize-input.full {
  border: none;
  border-bottom: 2px solid rgba(96, 96, 96, 0.7);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #504645;
  display: block;
  width: 100%;
  padding-top: 9px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
  color: #eeeeee;
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
  font-family: "Poppins", sans-serif;
}
.wpcf7-form .wpcf7-submit {
  margin-left: auto;
  background-color: #fff;
  color: #555;
  border: 2px solid #c69c6d !important;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 10px 35px;
}
.wpcf7-form .wpcf7-submit:hover {
  background-color: #504645;
  color: #fff;
  border-color: #fff !important;
}

form input[type=text]:focus, form input[type=email]:focus, form textarea:focus, form select:focus, form .selectize-input:focus, form .selectize-input.full:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border-color: #c69c6d;
}

form input[type=text]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form textarea::-webkit-input-placeholder, form select::-webkit-input-placeholder, form .selectize-input::-webkit-input-placeholder, form .selectize-input.full::-webkit-input-placeholder {
  font-size: 14px;
  color: #fff;
  opacity: 1 !important;
}

form input[type=text]::-moz-placeholder, form input[type=email]::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder, form .selectize-input::-moz-placeholder, form .selectize-input.full::-moz-placeholder {
  font-size: 14px;
  color: #fff;
  opacity: 1 !important;
}

form input[type=text]:-moz-placeholder, form input[type=email]:-moz-placeholder, form textarea:-moz-placeholder, form select:-moz-placeholder, form .selectize-input:-moz-placeholder, form .selectize-input.full:-moz-placeholder {
  font-size: 14px;
  color: #fff;
  opacity: 1 !important;
}

form input[type=text]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form textarea:-ms-input-placeholder, form select:-ms-input-placeholder, form .selectize-input:-ms-input-placeholder, form .selectize-input.full:-ms-input-placeholder {
  font-size: 14px;
  color: #fff;
  opacity: 1 !important;
}

form input[type=submit] {
  outline: none;
}

form .selectize-dropdown, form .selectize-input, form .selectize-input input {
  color: #fff;
  font-size: 14px;
}

form .selectize-input {
  padding-top: 11px;
  padding-bottom: 10px;
}

form .selectize-control:focus {
  outline: none;
}

form .selectize-control.single .selectize-input:after {
  border-color: #fff transparent transparent transparent;
}

form .selectize-control.single .selectize-input.dropdown-active:after {
  border-color: transparent transparent #fff transparent;
}

form .input-active:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
  z-index: 9999;
}

form .selectize-dropdown {
  background-color: #fff;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  top: 44px !important;
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
}

form .selectize-dropdown .selectize-dropdown-content .option {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-bottom: 1px dashed #ccc;
  color: #504645;
}

form .selectize-dropdown .selectize-dropdown-content .option:last-child {
  border-bottom: none;
}

.selectize-input, .selectize-control.single .selectize-input.input-active {
  background: transparent;
  border-color: #c69c6d;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selectize-input:before, .selectize-control.single .selectize-input.input-active:before {
  display: none;
}

/*Icon play*/
.icon-play {
  color: #fff;
  font-size: 60px;
  text-align: center;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: block;
  outline: none !important;
  -webkit-transition: all ease 0.75s;
  transition: all ease 0.75s;
}

.icon-play i {
  position: relative;
  left: 4px;
}

.icon-play:hover {
  color: #c69c6d;
  border-color: #c69c6d;
}

.icon-play:focus {
  color: #c69c6d;
  border-color: #c69c6d;
}

/*Start Custom superfish top menu*/
header {
  border-bottom: 1px solid transparent;
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
}

@media (min-width: 993px) {
  .sf-menu {
    margin-bottom: 0;
  }
  .sf-menu a {
    padding: 0;
    padding: 0 6px;
    border: none;
    color: #fff;
    text-decoration: none;
  }
  .sf-menu > li {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    -webkit-transition: all ease 0.50s;
    transition: all ease 0.50s;
    background-color: transparent;
    padding: 40px 0px 40px 0;
    letter-spacing: 0.7px;
  }
  .sf-menu > li:last-child a {
    padding-right: 0;
  }
  .sf-menu > li:hover {
    background-color: transparent;
  }
  .sf-menu > li.sfHover {
    background: none;
  }
  .sf-menu > li.sfHover > a {
    color: #c69c6d;
  }
  .sf-menu > li > a {
    border-bottom: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    color: #fff;
  }
  .sf-menu > li > a:hover {
    color: #c69c6d;
  }
  .sf-menu > li > a + * a {
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
  }
  .sf-menu > li > a + * a:hover {
    color: #fff;
  }
  .sf-menu .buy-now-li a {
    color: #a6e454;
  }
  .sf-menu ul {
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    min-width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    min-width: 230px;
    background-color: rgba(30, 30, 30, 0.97);
  }
  .sf-menu ul li {
    background: none;
  }
  .sf-menu ul li:first-child {
    padding-top: 2px;
  }
  .sf-menu ul li:last-child {
    border-bottom: none;
  }
  .sf-menu ul li:hover {
    background-color: #313131;
  }
  .sf-menu ul li a {
    padding: 12px 25px 12px;
    color: #fff;
    font-weight: 300;
    text-transform: none;
  }
  .sf-arrows .menu-item-has-children > a {
    padding: 0 16px 0 16px;
    position: relative;
    top: 0px;
  }
  .sf-arrows .menu-item-has-children > a a {
    outline: none;
    padding: 0;
  }
  .sf-arrows .menu-item-has-children > a:after {
    content: "";
    font-family: "FontAwesome";
    display: inline-block;
    top: 0;
    font-size: 12px;
    color: #fff;
    position: relative;
    left: 6px;
    border-top-color: transparent;
  }
  .sf-arrows li .menu-item-has-children > a:focus:after, .sf-arrows li:hover > .menu-item-has-children > a:after {
    color: #c69c6d;
    border-top-color: transparent;
  }
  .sf-arrows .sfHover .menu-item-has-children > a:after {
    color: #c69c6d;
    border-top-color: transparent;
  }
  .sf-menu li .sfHover {
    background: rgba(0, 0, 0, 0.3);
  }
  .sf-menu ul ul li {
    background-color: rgba(30, 30, 30, 0.97);
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  .sf-arrows ul .menu-item-has-children > a {
    padding: 12px 25px 12px;
  }
  .sf-arrows ul .menu-item-has-children > a:after {
    border-left-color: transparent;
    content: "";
    font-family: "FontAwesome";
    display: inline-block;
    font-size: 12px;
    color: #fff !important;
    position: relative;
    left: 2px;
    float: right;
    right: 0;
    top: 5px;
    margin-top: 0;
    border: none;
    border-top-color: transparent;
  }
  .sf-arrows ul .menu-item-has-children > a li {
    display: none !important;
  }
  .sf-arrows ul li > .menu-item-has-children > a:focus:after, .sf-arrows ul li:hover > .menu-item-has-children > a:after, .sf-arrows ul .sfHover > .menu-item-has-children > a:after {
    border-left-color: transparent;
  }
}

header.is-sticky {
  background-color: #1d1d1d;
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header.is-sticky .logo {
  padding: 12px 0 9px 0;
}

header.is-sticky .logo img {
  height: 43px;
}

header.is-sticky .show-full-screen {
  opacity: 1;
  visibility: visible;
}

header.is-sticky .toggle-top {
  top: 23px;
}

@media (min-width: 993px) {
  header.is-sticky .sf-menu > li {
    padding: 24px 0px 24px 0;
  }
}

.off-canvas-menu {
  top: -100px;
}

header.is-sticky.fixed-tp-menu {
  top: 0;
}

.content-wrap-lfm {
  margin-left: 300px;
  float: none;
  width: inherit;
  display: block;
}

.sidenav .container {
  width: 90%;
}

.header-type-1 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  height: 100%;
  width: 300px;
}

.header-type-1:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.header-type-1 .top-menu {
  float: none;
}

.header-type-1 .logo {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.header-type-1 .logo .logo-white {
  display: none;
  margin: 0 auto;
}

.header-type-1 .logo .logo-dark {
  display: block;
  margin: 0 auto;
}

.header-type-1 .sf-menu li {
  padding: 15px 0px 15px 0;
}

.header-type-1 .sf-menu li:last-child a {
  padding-right: 12px;
}

.header-type-1 .sf-menu li a {
  color: #111;
}

.header-type-1 ul.social-links {
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 50px;
  left: 0;
  text-align: center;
  margin-top: 50px;
}

.header-type-1 .sf-vertical {
  width: 100%;
  text-align: center;
}

.header-type-1 .sf-vertical ul {
  left: 100%;
  top: 0;
  -webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

.header-type-1 .sf-vertical > li {
  float: none;
}

.header-type-1 .sf-vertical li {
  width: 100%;
}

.header-type-1 .sf-vertical li:hover a {
  color: #c69c6d;
}

.header-type-1 .sf-vertical li:hover ul li a {
  color: #111;
}

.header-type-1 .sf-vertical li:hover ul li:hover {
  background-color: #313131;
}

.header-type-1 .sf-vertical li:hover ul li:hover a {
  color: #fff;
}

.header-type-1 .sf-vertical li:hover ul li:hover ul li a {
  color: #111;
}

.header-type-1 .sf-vertical li:hover ul li ul li:hover a {
  color: #fff;
}

.header-type-1 .sf-vertical .menu-item-has-children > a {
  padding: 0 16px 0 16px;
  position: relative;
  top: -2px;
}

.header-type-1 .sf-vertical .menu-item-has-children > a a {
  outline: none;
  padding: 0;
}

.header-type-1 .sf-vertical .menu-item-has-children > a:after {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  font-size: 12px;
  color: #505050;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  left: 6px;
  width: 0;
  height: 0;
  border-top-color: transparent;
}

.header-type-1 .sf-vertical li .menu-item-has-children > a:focus:after, .header-type-1 .sf-vertical li:hover > .menu-item-has-children > a:after {
  color: #c69c6d;
  border-top-color: transparent;
}

.header-type-1 .sf-vertical .sfHover .menu-item-has-children > a:after {
  color: #fff;
  border-top-color: transparent;
}

.header-type-1 .sf-vertical a.menu-item-has-children > a {
  padding-left: 25px;
}

.header-type-1 .sf-vertical ul {
  background-color: #fff;
  text-align: left;
  -webkit-box-shadow: 4px 0 19px rgba(80, 70, 69, 0.35);
  box-shadow: 4px 0 19px rgba(80, 70, 69, 0.35);
}

.header-type-1 .sf-vertical ul li {
  padding-top: 0;
  padding-bottom: 0;
}

.header-type-1 .sf-vertical ul li:first-child {
  padding-top: 0;
}

.header-type-1 .sf-vertical ul li:hover a {
  color: #000;
}

.header-type-1 .sf-vertical ul li:hover a:after {
  color: #fff !important;
}

.header-type-1 .sf-vertical ul li a {
  padding-top: 14px;
  padding-bottom: 11px;
  font-weight: 500;
}

.header-type-1 .sf-vertical ul li .menu-item-has-children > a {
  padding-top: 14px;
  padding-bottom: 10px;
}

.header-type-1 .sf-vertical ul ul {
  -webkit-box-shadow: 4px 0 19px rgba(80, 70, 69, 0.35);
  box-shadow: 4px 0 19px rgba(80, 70, 69, 0.35);
}

.header-type-1 .sf-vertical ul ul li {
  background-color: #fff;
}

.header-type-1 .sf-arrows ul .menu-item-has-children > a:after {
  color: #000 !important;
  left: -4px;
}

@media (max-width: 992px) {
  .mobile-menu .nav_menu {
    display: block;
  }
  .mobile-menu.active .nav_menu li {
    opacity: 1;
    -webkit-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
    -webkit-transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .mobile-menu.active .nav_menu li:nth-of-type(1) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(2) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(3) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(4) {
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(5) {
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(6) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(7) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(8) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(9) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
  }
  .mobile-menu.active .nav_menu li:nth-of-type(10) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
  }
  .mobile-menu .nav_menu li {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  /*Start Mobile full screen menu*/
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 444;
    background-color: #fff;
  }
  .mobile-menu > .inner-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    text-align: center;
    padding: 50px 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .mobile-menu > .inner-wrap::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .mobile-menu > .inner-wrap::-webkit-scrollbar {
    width: 5px;
    background-color: #fff;
  }
  .mobile-menu > .inner-wrap::-webkit-scrollbar-thumb {
    background-color: #c69c6d;
  }
  .mobile-menu > .inner-wrap > .nav_menu {
    margin: 0;
    padding: 0 0 5px 0;
    list-style-type: none;
  }
  .mobile-menu > .inner-wrap > ul {
    margin: 0;
    padding: 0 0 5px 0;
    list-style-type: none;
  }
  #primary.nav_menu a {
    display: inline-block;
    padding: 8px 0;
    text-decoration: none;
    font-size: 29px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    -webkit-transition: all ease 0.50s;
    transition: all ease 0.50s;
  }
  #primary.nav_menu a:hover {
    color: #c69c6d;
  }
  #primary.nav_menu .sub-menu {
    display: none;
  }
  #primary.nav_menu .sub-menu a {
    text-transform: capitalize;
    padding: 2px 0;
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
  #primary.nav_menu li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 4px;
    position: relative;
    right: -5px;
  }
  #primary.nav_menu li.menu-item-has-children > a.sub-active {
    color: #000;
    margin-bottom: 20px;
  }
  #primary.nav_menu li.menu-item-has-children > a.sub-active::after {
    content: '\f106';
  }
  #primary.nav_menu .buy-now-li a {
    color: #a6e454;
  }
  #primary li.current-menu-item > a, #primary li.current-page-item > a {
    color: #555555;
  }
}

/*Portfolio pop up*/
.modal-box {
  max-width: 620px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  left: 0;
  overflow: hidden;
}

.modal-box .img-responsive {
  width: 100%;
}

.modal-box .modal-box-content {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.modal-box .modal-box-content h2, .modal-box .modal-box-content h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 0;
}

.modal-box .modal-box-content h2 span, .modal-box .modal-box-content h3 span {
  color: #c69c6d;
}

.modal-box .modal-box-content h3 {
  font-size: 20px;
}

.modal-box .modal-box-content h3:after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #c69c6d;
  margin-top: 8px;
  margin-bottom: 15px;
}

.modal-box .modal-box-content p {
  margin-top: 5px;
  font-size: 14px;
}

.modal-box .list-project {
  padding-left: 0;
}

.modal-box .list-project li {
  list-style: none;
  font-size: 14px;
}

.modal-box .list-project li b {
  font-weight: 600;
}

.modal-box .list-project li a {
  color: #c69c6d;
}

.modal-box .list-project li a i {
  margin-left: 6px;
  position: relative;
  top: 1px;
}

.modal-box .slider-wrap {
  position: relative;
}

.modal-box iframe {
  border: none;
}

/*Start Toggle menu - button*/
.toggle-mnu {
  float: right;
  display: none;
  width: 28px;
  height: 28px;
  top: 39px;
  right: 16px;
  position: relative;
  cursor: pointer;
}

.toggle-mnu span:after, .toggle-mnu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
}

.toggle-mnu span:after {
  top: 16px;
}

.toggle-mnu span {
  position: relative;
  display: block;
}

.toggle-mnu span, .toggle-mnu span:after, .toggle-mnu span:before {
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.toggle-mnu.on span {
  background-color: transparent;
}

.toggle-mnu.on span:before {
  -webkit-transform: rotate(45deg) translate(-1px, 0px);
  -ms-transform: rotate(45deg) translate(-1px, 0px);
  transform: rotate(45deg) translate(-1px, 0px);
  background-color: #000;
}

.toggle-mnu.on span:after {
  background-color: #000;
  -webkit-transform: rotate(-45deg) translate(6px, -7px);
  -ms-transform: rotate(-45deg) translate(6px, -7px);
  transform: rotate(-45deg) translate(6px, -7px);
}

body:not(.header-fixed) .logo, .toggle-mnu {
  z-index: 1001;
}

.toggle-top {
  float: right;
  position: absolute;
  right: 40px;
  top: 37px;
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
}

.toggle-top span {
  width: 24px;
  height: 3px;
  background-color: #fff;
  display: block;
  position: relative;
  margin-bottom: 1px;
  -webkit-transition: 0.20s all ease;
  transition: 0.20s all ease;
}

.toggle-top span:last-child {
  margin-bottom: 0;
}

.toggle-top span:nth-of-type(1) {
  width: 12px;
}

.toggle-top span:nth-of-type(2) {
  width: 19px;
}

.toggle-top span:nth-of-type(4) {
  width: 19px;
}

.toggle-top span:nth-of-type(5) {
  width: 12px;
}

.toggle-top:hover span:nth-of-type(1) {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  width: 24px;
}

.toggle-top:hover span:nth-of-type(2) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  width: 24px;
}

.toggle-top:hover span:nth-of-type(4) {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
  width: 24px;
}

.toggle-top:hover span:nth-of-type(5) {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  width: 24px;
}

.on-top span:nth-of-type(1) {
  background-color: transparent;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.on-top span:nth-of-type(2) {
  width: 25px;
  -webkit-transform: rotate(-45deg) translate(-6px, 0px);
  -ms-transform: rotate(-45deg) translate(-6px, 0px);
  transform: rotate(-45deg) translate(-6px, 0px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background-color: #fff;
}

.on-top span:nth-of-type(3) {
  background-color: transparent;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.on-top span:nth-of-type(4) {
  width: 25px;
  -webkit-transform: rotate(45deg) translate(-5px, 0px);
  -ms-transform: rotate(45deg) translate(-5px, 0px);
  transform: rotate(45deg) translate(-5px, 0px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background-color: #fff;
}

.on-top span:nth-of-type(5) {
  background-color: transparent;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.active-fullscreen-topnav {
  overflow: hidden;
}

.active-fullscreen-topnav header {
  border-bottom: 1px solid #505050;
  background-color: #1d1d1d;
  position: fixed;
  width: 100%;
  z-index: 5;
}

.active-fullscreen-topnav header .logo {
  padding: 12px 0 9px 0;
}

.active-fullscreen-topnav header .logo img {
  height: 43px;
}

.active-fullscreen-topnav .show-full-screen {
  opacity: 1;
  visibility: visible;
}

.active-fullscreen-topnav .toggle-top {
  top: 23px;
}

.active-fullscreen-topnav .sf-menu > li {
  padding: 24px 0px 24px 0;
}

.height-half {
  height: 40%;
}

.height-half-60 {
  height: 60%;
}

.height-full {
  height: 100%;
}

.height-auto {
  height: 100%;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.fullscreen-topnav {
  background-color: #c69c6d;
  position: fixed;
  z-index: 4;
  bottom: 0;
  width: 100%;
  top: 65px;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  -webkit-transition: all ease-in-out 0.7s;
  transition: all ease-in-out 0.7s;
}

.fullscreen-topnav::-webkit-scrollbar-track {
  background-color: #fff;
}

.fullscreen-topnav::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

.fullscreen-topnav::-webkit-scrollbar-thumb {
  background-color: #c69c6d;
}

.fullscreen-topnav .items .link {
  -webkit-transition: all ease 0.60s;
  transition: all ease 0.60s;
  text-align: center;
  background-color: #1b1b1b;
  border: 3px solid transparent;
  text-decoration: none;
}

.fullscreen-topnav .items .link:hover {
  text-decoration: none;
  background-color: rgba(33, 33, 33, 0.85);
  border-color: #585858;
}

.fullscreen-topnav .items .link:hover h2 {
  color: #fff;
}

.fullscreen-topnav .items .link:hover p {
  color: #c69c6d;
}

.fullscreen-topnav .content-nav p, .fullscreen-topnav .content-nav h2 {
  color: #fff;
  -webkit-transition: all ease 0.60s;
  transition: all ease 0.60s;
}

.fullscreen-topnav .content-nav h2 {
  font-weight: 600;
  margin-top: 4px;
}

.fullscreen-topnav .content-nav p {
  margin-bottom: 0;
}

.fullscreen-topnav h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 15px;
  line-height: 22px;
  margin-top: 0;
  border-bottom: 1px solid #625958;
}

.fullscreen-topnav .text-item {
  background-color: #212121;
  padding-left: 40px;
  padding-right: 40px;
}

.fullscreen-topnav .text-item p {
  border-left: 3px solid #c69c6d;
  padding-left: 20px;
  font-weight: 400;
}

.fullscreen-topnav .form-full-screen {
  background-color: rgba(33, 33, 33, 0.9);
  padding-right: 45px;
  padding-left: 45px;
}

.fullscreen-topnav .video-play {
  text-align: center;
  color: #fff;
  background-color: rgba(27, 27, 27, 0.9);
}

.fullscreen-topnav .video-play .icon-play {
  margin: 0 auto;
}

/*Back to top link*/
.top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: none;
}

.top a {
  color: #fff;
  background-color: #c69c6d;
  display: block;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  opacity: 0.7;
  -webkit-transition: all ease .6s;
  transition: all ease .6s;
}

.top a i {
  font-size: 25px;
  vertical-align: middle;
}

.top a:hover {
  opacity: 1;
  color: #fff;
}

.bg-dark-section {
  position: relative;
}

.bg-dark-section:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.bg-dark-section .container, .bg-dark-section .container-fluid {
  position: relative;
  z-index: 3;
}

.bg-dark-section .heading-title h2 {
  color: #fff;
}

.bg-dark-section .heading-title p {
  color: #fff;
}

.bg-dark-section .heading-title .small-desd span {
  color: #fff;
}

.bg-dark-section p {
  color: #eee;
}

.bg-dark-section ul.list li {
  color: #fff;
}

.bg-dark-section .icon-progress i {
  color: #fff;
}

.bg-white-section {
  position: relative;
}

.bg-white-section:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.bg-white-section .container, .bg-white-section .container-fluid {
  position: relative;
  z-index: 3;
}

.white-70:after {
  background-color: rgba(255, 255, 255, 0.7);
}

.white-80:after {
  background-color: rgba(255, 255, 255, 0.8);
}

.white-90:after {
  background-color: rgba(255, 255, 255, 0.9);
}

/*Background mask*/
.bg-mask {
  position: relative;
}

.bg-mask:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.bg-mask .container, .bg-mask .container-fluid {
  position: relative;
  z-index: 3;
}

.bg-mask-small {
  position: relative;
}

.bg-mask-small:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.bg-mask-small .container, .bg-mask-small .container-fluid {
  position: relative;
  z-index: 3;
}

.bg-mask-blue:after {
  background-color: rgba(48, 71, 211, 0.9);
}

.bg-mask-white:after {
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-mask-black:after {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-mask-yellow:after {
  background-color: rgba(211, 132, 38, 0.9);
}

.bg-mask-red:after {
  background-color: rgba(211, 71, 48, 0.9);
}

.bg-mask-darkness:after {
  background-color: rgba(35, 50, 57, 0.9);
}

.bg-mask-darkmilness:after {
  background-color: rgba(66, 78, 92, 0.9);
}

/*Small heading*/
.small-head h2 {
  text-transform: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.small-head h2:after {
  content: "";
  display: block;
  height: 2px;
  width: 60px;
  background-color: #c69c6d;
  margin-top: 13px;
  margin-bottom: 18px;
}

/*100 hv*/
.full-vh {
  height: -webkit-calc(100vh);
  height: calc(100vh);
}

/*Full slider opacity*/
.opacity-none {
  opacity: 0;
}

/*heading title big*/
.heading-title-big {
  font-size: 4.6875rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 5px;
  line-height: initial;
  margin-bottom: 15px;
}

.heading-title-big span {
  color: #c69c6d;
}

.slide-title {
  margin-top: 30px;
  font-size: 1.625rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}

.slide-title span {
  color: #c69c6d;
}

.description-slide {
  margin-top: 20px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.description-slide span {
  color: #c69c6d;
}

/*vertical-align*/
.vertical-align {
  display: table;
  position: relative;
  height: 100%;
  margin: 0 auto;
}

.vertical-align .container {
  display: table-cell;
  vertical-align: middle;
}

span.after {
  width: 110px;
  height: 19px;
  display: block;
  position: relative;
  margin: 0 auto;
  background: url(../img/after.png) no-repeat;
}

ul.list {
  margin: 0;
  padding: 0;
}

ul.list li {
  list-style: none;
  font-size: 16px;
  letter-spacing: 0.9px;
}

ul.list li:before {
  font-family: FontAwesome;
  content: "\f192";
  font-size: 11px;
  color: #c69c6d;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  margin-right: 10px;
}

/*Portfolio controls*/
.controls-portfolio ul {
  padding-left: 0;
  margin-bottom: 50px;
  margin-top: 0;
}

.controls-portfolio ul li {
  display: inline-block;
  font-size: 14px;
  color: #606060;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-right: 30px;
  cursor: pointer;
}

.controls-portfolio ul li:last-child {
  margin-right: 0;
}

.controls-portfolio ul .active {
  color: #c69c6d;
}

/*Circle*/
.tizer-circle {
  position: relative;
  color: #fff;
  width: 40px;
  height: 40px;
  background-color: #c69c6d;
  text-align: center;
  font-size: 13px;
  line-height: 40px;
  vertical-align: middle;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/*Triangle*/
.tizer-triangle {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 17px;
  height: 0;
  width: 0;
  border-top: 65px solid #c69c6d;
  border-left: 65px solid transparent;
}

.tizer-triangle i {
  position: absolute;
  top: -60px;
  right: 10px;
}

/*Portfolio masonry*/
.container-full {
  width: 100%;
  height: inherit;
  position: relative;
}

.masonry-portfolio {
  background-attachment: fixed;
}

.masonry-portfolio .masonry-item-pr {
  padding: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.masonry-portfolio .wrap-ms-pr {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}

.masonry-portfolio .wrap-ms-pr .bg-mask-pr {
  background-color: rgba(17, 17, 17, 0.4);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
}

.masonry-portfolio .wrap-ms-pr .bg-mask-pr .icon {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  width: 50px;
  font-size: 17px;
  height: 50px;
  background-color: #111;
  color: #fff;
  text-align: center;
  line-height: 50px;
  vertical-align: middle;
}

.masonry-portfolio .wrap-ms-pr img {
  width: 100%;
  vertical-align: middle;
}

/*linx full*/
.link-full {
  text-align: center;
}

.link-full a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.link-full a:hover {
  text-decoration: none;
  color: #c69c6d;
}

.link-full a i {
  margin-left: 5px;
}

/*No padding*/
.items-nopadding > div {
  padding: 0;
}

/*Tabs default*/
.tabs-default ul {
  border-bottom: 3px solid #c69c6d;
}

.tabs-default ul li {
  background-color: #f4f3f3;
  -webkit-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tabs-default ul li a {
  font-size: 16px;
  text-transform: uppercase;
  color: #606060;
  outline: none;
}

.tabs-default ul li.ui-tabs-active {
  background-color: #c69c6d;
}

.tabs-default ul li.ui-tabs-active a {
  color: #fff;
}

.tabs-default .ui-tabs-panel, .tabs-default .ui-tabs-nav {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.tabs-default p {
  color: #606060;
  font-size: 14px;
}

.skillbar {
  position: relative;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  background: #c69c6d;
  height: 24px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  transition-property: width, background-color;
}

.skillbar:last-child {
  margin-bottom: 0;
}

.skillbar:nth-child(2n) .skillbar-title {
  background: #594f4e;
}

.skillbar:nth-child(2n) .skillbar-bar {
  background: #736b6a;
}

.skillbar-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  font-weight: 500;
  overflow: hidden;
  font-size: 12px;
  color: #ffffff;
  background: #736b6a;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.skillbar-title span {
  display: block;
  color: #fff;
  padding: 0 20px;
  height: 24px;
  line-height: 26px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.skillbar-bar {
  height: 24px;
  width: 0px;
  background: #504645;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.skill-bar-percent {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 27px;
  color: #fff;
}

/*Triggers*/
.item-triggel-carousel .icon {
  color: #fff;
  font-size: 79px;
  line-height: 79px;
  display: inline-block;
}

.item-triggel-carousel .icon i {
  line-height: initial !important;
}

.item-triggel-carousel h2 {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.item-triggel-carousel p {
  margin-top: 0;
  font-size: 15px;
  color: #d7d7d7;
  font-weight: 300;
}

#trigger-carousel .slick-slide {
  outline: none !important;
}

/*Start Custom dots Slick slider*/
.dots-control-carousel {
  margin: auto;
  margin-top: 40px;
  height: 16px;
  text-align: center;
}

.dots {
  display: inline-block !important;
  text-align: center;
}

.dots-control, .dots {
  margin: 0;
  padding: 0;
}

.dots-control li, .dots li {
  float: left;
  list-style: none;
  margin-right: 12px;
}

.dots-control li:last-child, .dots li:last-child {
  margin-right: 0;
}

.dots-control li button, .dots li button {
  font-size: 0px;
  padding: 0;
  height: 8px;
  width: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  background-color: #fff;
  border: none;
  display: block;
}

.dots-control .slick-active button, .dots .slick-active button {
  position: relative;
  top: -1px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  background: none;
}

/*Contact information wrap*/
.contact-wrap {
  text-align: right;
}

.contact-wrap p, .contact-wrap a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  text-decoration: none;
}

.contact-wrap ul.social-links li a {
  text-decoration: none;
}

.contact-wrap p i, .contact-wrap a i {
  color: #c69c6d;
  margin-right: 10px;
  line-height: 25px !important;
}

.contact-wrap p {
  margin-top: 15px;
  margin-bottom: 15px;
}

.contact-wrap p:first-child {
  margin-top: 0;
}

.contact-wrap .street {
  font-weight: 400;
  font-size: 14px;
}

.contact-wrap ul.social-links {
  margin-top: 40px;
}

.contact-wrap ul.social-links i {
  color: #fff;
  margin-right: auto;
}

/*Contact form BG*/
form.contact-form-bg input[type='text'], form.contact-form-bg input[type='email'], form.contact-form-bg textarea {
  background-color: #504645;
  border: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 2px solid rgba(96, 96, 96, 0.7);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

form.contact-form-bg input[type='text']:hover, form.contact-form-bg input[type='text']:active, form.contact-form-bg input[type='text']:focus, form.contact-form-bg input[type='email']:hover, form.contact-form-bg input[type='email']:active, form.contact-form-bg input[type='email']:focus, form.contact-form-bg textarea:hover, form.contact-form-bg textarea:active, form.contact-form-bg textarea:focus {
  border-color: #c69c6d;
}

form.contact-form-bg input[type='submit'] {
  float: right;
  background-color: #fff;
  color: #555;
  border: 2px solid #c69c6d;
  font-weight: 600;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 15px;
}

form.contact-form-bg input[type='submit']:hover {
  background-color: #504645;
  color: #fff;
  border-color: #fff;
}

/*Contact form */
.contact-form-white input[type=text], .contact-form-white input[type=email], .contact-form-white textarea {
  border-color: #e1e1e1;
  color: #505050;
  font-size: 14px;
}

.contact-form-white input[type=text]:focus, .contact-form-white input[type=email]:focus, .contact-form-white textarea:focus {
  border-color: #c69c6d;
}

.contact-form-white input[type=text]:active, .contact-form-white input[type=email]:active, .contact-form-white textarea:active {
  border-color: #c69c6d;
}

.contact-form-white input[type=text]::-webkit-input-placeholder, .contact-form-white input[type=email]::-webkit-input-placeholder, .contact-form-white textarea::-webkit-input-placeholder {
  color: #7c7c7c;
}

.contact-form-white input[type=text]::-moz-placeholder, .contact-form-white input[type=email]::-moz-placeholder, .contact-form-white textarea::-moz-placeholder {
  color: #7c7c7c;
}

.contact-form-white input[type=text]:-moz-placeholder, .contact-form-white input[type=email]:-moz-placeholder, .contact-form-white textarea:-moz-placeholder {
  color: #7c7c7c;
}

.contact-form-white input[type=text]:-ms-input-placeholder, .contact-form-white input[type=email]:-ms-input-placeholder, .contact-form-white textarea:-ms-input-placeholder {
  color: #7c7c7c;
}

.contact-form-white input[type=submit] {
  color: #fff;
  margin-top: 18px;
  float: right;
}

.form-transperent input[type=text], .form-transperent input[type=email], .form-transperent textarea {
  color: #fff;
}

.form-transperent input[type=text]::-webkit-input-placeholder, .form-transperent input[type=email]::-webkit-input-placeholder, .form-transperent textarea::-webkit-input-placeholder {
  color: #ccc;
}

.form-transperent input[type=text]::-moz-placeholder, .form-transperent input[type=email]::-moz-placeholder, .form-transperent textarea::-moz-placeholder {
  color: #ccc;
}

.form-transperent input[type=text]:-moz-placeholder, .form-transperent input[type=email]:-moz-placeholder, .form-transperent textarea:-moz-placeholder {
  color: #ccc;
}

.form-transperent input[type=text]:-ms-input-placeholder, .form-transperent input[type=email]:-ms-input-placeholder, .form-transperent textarea:-ms-input-placeholder {
  color: #ccc;
}

/*Links footer*/
.links h5 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.links ul.list li {
  font-size: 14px;
  margin-bottom: 5px;
}

.links ul.list li:before {
  font-size: 9px;
  position: relative;
  top: -1px;
}

.links ul.list li:last-child {
  margin-bottom: 0;
}

.links ul.list li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.links ul.list li a:hover {
  color: #c69c6d;
}

/*Gallery slide*/
.gallery-slide .dots-control-carousel {
  position: absolute;
  margin-top: 0;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*slider opacity control*/
.gallery-slide .prev-next-block-rotate .wrap-prev, .section-testimonials .prev-next-block-rotate .wrap-prev, .our-clients .prev-next-block-rotate .wrap-prev {
  left: -120px;
}

.gallery-slide .prev-next-block-rotate .wrap-next, .section-testimonials .prev-next-block-rotate .wrap-next, .our-clients .prev-next-block-rotate .wrap-next {
  right: -120px;
}

.gallery-slide .prev-next-block-rotate .wrap-prev, .gallery-slide .prev-next-block-rotate .wrap-next, .section-testimonials .prev-next-block-rotate .wrap-prev, .section-testimonials .prev-next-block-rotate .wrap-next, .our-clients .prev-next-block-rotate .wrap-prev, .our-clients .prev-next-block-rotate .wrap-next {
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.4;
}

.gallery-slide .prev-next-block-rotate .wrap-prev:hover, .gallery-slide .prev-next-block-rotate .wrap-next:hover, .section-testimonials .prev-next-block-rotate .wrap-prev:hover, .section-testimonials .prev-next-block-rotate .wrap-next:hover, .our-clients .prev-next-block-rotate .wrap-prev:hover, .our-clients .prev-next-block-rotate .wrap-next:hover {
  opacity: 1;
}

.gallery-slide:hover .prev-next-block-rotate .wrap-prev, .section-testimonials:hover .prev-next-block-rotate .wrap-prev, .our-clients:hover .prev-next-block-rotate .wrap-prev {
  left: 0px;
}

.gallery-slide:hover .prev-next-block-rotate .wrap-next, .section-testimonials:hover .prev-next-block-rotate .wrap-next, .our-clients:hover .prev-next-block-rotate .wrap-next {
  right: 0px;
}

.share-post-links li {
  background-color: #ececec;
  display: inline-block;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.share-post-links li:last-child {
  margin-left: 0;
}

.share-post-links li:hover {
  background-color: #c69c6d;
}

.share-post-links li:hover a {
  color: #fff;
}

.share-post-links li a {
  width: 40px;
  height: 40px;
  color: #797979;
  display: block;
  vertical-align: middle;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 40px;
}

.share-post-links li a i {
  vertical-align: middle;
}

.avatar-80 {
  width: 80px;
  height: 80px;
}

/*Services*/
.item-service {
  margin-bottom: 30px;
  display: inline-block;
}

.item-service:hover .icon-service:after {
  background-color: rgba(0, 0, 0, 0.9);
}

.item-service:hover .small-i {
  display: none;
}

.item-service:hover .large-i {
  font-size: 150px;
  position: relative;
  line-height: 150px;
  color: #fff;
  height: 100%;
  width: 100%;
  text-align: center;
}

.item-service:hover .large-i i {
  position: relative;
  top: 50%;
  right: 0;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-service {
  background-color: #504645;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.icon-service .small-i {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  font-size: 99px;
  line-height: 99px;
  color: #fff;
  height: 100%;
  text-align: center;
}

.icon-service .small-i i {
  z-index: 4;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-service .large-i {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  font-size: 150px;
  line-height: 150px;
  color: #fff;
  display: inline-block;
  height: 100%;
}

.icon-service .large-i i {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  z-index: 4;
  position: absolute;
  opacity: 0.10;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.content-service {
  background-color: #f5f5f5;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 25px;
}

.content-service h2 {
  font-size: 20px;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.content-service h2 span {
  color: #c69c6d;
}

.content-service p {
  font-size: 14px;
  margin-top: 15px;
  color: #606060;
}

.two-col .item-service .icon-service {
  height: 280px !important;
}

.two-col .item-service .icon-service .large-i {
  font-size: 350px;
  -webkit-transition: font-size 0.01s;
  transition: font-size 0.01s;
}

.two-col .item-service .icon-service .large-i i {
  opacity: 0.02;
}

.two-col .item-service:hover .large-i {
  font-size: 150px;
}

.two-col .item-service:hover .large-i i {
  opacity: 1;
}

/*Price item*/
.item-price-two {
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}

.item-price-two:last-child {
  margin-bottom: 0;
}

.item-price-two h2 {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
}

.item-price-two .price {
  display: inline-block;
  float: right;
  position: relative;
  bottom: 13px;
  border-bottom: 2px solid #000;
}

.item-price-two .price span {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  margin-right: 10px;
}

.item-price-two .price p {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 0;
  display: inline-block;
}

.dark-price {
  border-color: #312e2e;
}

.dark-price h2 {
  color: #fff;
}

.dark-price .price {
  border-color: #fff;
}

.dark-price .price span {
  color: #716d6d;
}

/*services-list*/
.services-list {
  margin: 0;
  padding: 0;
  border: 1px solid #eee;
}

.services-list li {
  list-style: none;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 18px;
  border-bottom: 1px dashed #ccc;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.services-list li:hover a {
  color: #c69c6d;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list li a {
  color: #504645;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.services-list .active {
  background-color: #b28c62;
  border-bottom: none;
}

.services-list .active:hover {
  background-color: #cca67c;
}

.services-list .active:hover a {
  color: #fff;
}

.services-list .active a {
  color: #fff;
}

.dh-overlay {
  top: -100%;
}

.acc-head {
  font-weight: 500;
  font-size: 19px;
}

/*text fade*/
#slider-item .text-fade {
  position: relative;
}

.display-page {
  padding-top: 130px;
  padding-bottom: 90px;
  color: #fff;
}

.display-page h1 {
  font-size: 37px;
  font-weight: 600;
  text-transform: uppercase;
}

.display-page h1:after {
  content: "";
  display: block;
  height: 2px;
  width: 60px;
  background-color: #c69c6d;
  margin-top: 8px;
  margin-bottom: 15px;
}

.display-page h1 span {
  color: #c69c6d;
}

.display-page p {
  font-size: 14px;
}

.unity {
  padding-bottom: 90px;
}

.unity .description {
  margin-bottom: 120px;
}

.head-project {
  padding-top: 80px;
  padding-bottom: 80px;
}

.head-project .title-project {
  margin-top: 0;
}

.content-project p {
  font-size: 14px;
  color: #606060;
}

.content-project h2, .content-project h3 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.content-project h2 span, .content-project h3 span {
  color: #c69c6d;
}

.content-project h2:after, .content-project h3:after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #c69c6d;
  margin-top: 8px;
  margin-bottom: 15px;
}

.content-project .list-project {
  padding-left: 0;
}

.content-project .list-project li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 5px;
  color: #585858;
  letter-spacing: 0.5px;
}

.content-project .list-project li:last-child {
  margin-bottom: 0;
}

.content-project .list-project li b {
  font-weight: 600;
}

.content-project .list-project li a {
  color: #c69c6d;
}

.content-project .list-project li a i {
  margin-left: 6px;
  position: relative;
  top: 1px;
}

.single-project .about-us {
  padding-top: 0;
}

.single-project .full-slider .slide .small-text .heading-title-big {
  font-size: 65px;
}

.gallery-slide {
  overflow: hidden;
  position: relative;
}

/*Service single*/
.content-service-single {
  padding-bottom: 30px;
}

.content-service-single h1, .content-service-single h2, .content-service-single h3, .content-service-single h4, .content-service-single h5 {
  margin-top: 0;
}

.content-service-single h1:after, .content-service-single h2:after, .content-service-single h3:after, .content-service-single h4:after, .content-service-single h5:after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #c69c6d;
  margin-top: 8px;
  margin-bottom: 15px;
}

.content-service-single ul.list {
  margin-top: 30px;
}

.service-about ul.list {
  margin-top: 15px;
}

/*=============== Start blog pages =================*/
.video-post iframe {
  width: 100%;
}

/*.blog-classic*/
.read-post-classic {
  padding-bottom: 88px;
}

hr {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-classic .post-content-classic .post-data {
  padding-top: 0;
}

.blog-classic .post.sticky .post-data, .blog-classic .post.sticky .content {
  padding: 0;
}

.blog-classic .post.sticky .post-data {
  margin-bottom: 20px;
}

.blog-classic > div {
  margin-bottom: 30px;
}

.blog-classic .type-post:hover hr {
  border-color: #c69c6d;
}

.blog-classic .type-post:hover .btn-default {
  background-color: #504645;
}

/* endblog-classic*/
.pagination-btns {
  background: #c69c6d;
  text-align: center;
}

.pagination-btns h2 {
  display: none;
}

.pagination-btns .pagination {
  margin: 0 auto;
}

.pagination-btns .pagination .current {
  background: #504645;
}

.pagination-btns .pagination a {
  text-decoration: none;
  -webkit-transition: all ease 0.76s;
  transition: all ease 0.76s;
  color: #fff;
  padding: 20px;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 400;
}

.pagination-btns .pagination a:hover {
  background: rgba(0, 0, 0, 0.2);
}

.pagination-btns .pagination span {
  padding: 20px;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
}

#sidebar {
  position: relative;
  padding-top: 90px;
}

#sidebar.right:before {
  left: -15%;
}

#sidebar h4 {
  font-size: 18px;
  margin: 60px 0 20px 0;
}

#sidebar h4:first-child {
  margin-top: 0;
}

#sidebar h4:after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #c69c6d;
  margin-top: 9px;
  margin-bottom: 15px;
}

#sidebar h2, #sidebar h3, #sidebar h4, #sidebar h5, #sidebar h6 {
  text-align: left;
}

#sidebar h2:after, #sidebar h3:after, #sidebar h5:after, #sidebar h6:after {
  display: none;
}

#sidebar ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#sidebar ul li {
  list-style: none;
  margin: 0 0 10px 0;
}

#sidebar ul li a {
  color: #5c5c5c;
  text-decoration: none;
  -webkit-transition: all ease 0.57s;
  transition: all ease 0.57s;
}

#sidebar ul li a:hover {
  color: #c69c6d;
}

#sidebar ul li .children li a:hover, #sidebar ul li .sub-menu li a:hover {
  color: #c69c6d;
}

#sidebar ul li.cat-item a:before {
  font-family: FontAwesome;
  content: "\f192";
  font-size: 11px;
  color: #c69c6d;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  margin-right: 10px;
}

#sidebar ul.menu li a:before {
  font-family: FontAwesome;
  content: "\f192";
  font-size: 11px;
  color: #c69c6d;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  margin-right: 10px;
}

#sidebar ul li .children, #sidebar ul li .sub-menu {
  margin: 10px 0 0 25px;
}

#sidebar ul li .children li a, #sidebar ul li .sub-menu li a {
  color: #7e7e7e;
  font-size: 14px;
}

#sidebar label {
  font-size: 14px;
}

#sidebar select {
  background: #fff url("images/arrow-down.png") 95% 50% no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-overflow: '';
  text-indent: 0.01px;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#sidebar .tagcloud {
  overflow: hidden;
}

#sidebar .tagcloud a {
  display: block;
  float: left;
  background: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #5c5c5c;
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 6px 6px 0;
  -webkit-transition: all ease 0.55s;
  transition: all ease 0.55s;
  text-decoration: none;
  font-size: 14px !important;
}

#sidebar .tagcloud a:hover {
  background: #c69c6d;
  color: #fff;
}

#sidebar .search-form label {
  width: 96%;
  margin: 0;
}

#sidebar .search-form label input {
  background: #fff url("../img/search.png") 95% 50% no-repeat;
  width: 95%;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #dadada;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#sidebar .search-form label input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border-color: #c69c6d;
}

#sidebar .search-form label span {
  display: none;
}

#sidebar .search-form .search-submit {
  display: none;
}

#sidebar ul.social-links {
  overflow: visible;
  margin-top: 25px;
  margin-left: 7px;
}

#sidebar .team-socials .team-socials_item {
  margin-right: 17px;
}

#sidebar .team-socials .team-socials_item:last-child {
  margin-right: 0;
}

#sidebar .team-socials .team-socials_item a {
  color: #fff;
}

.blog-page .single-post p {
  margin: 0 0 20px 0;
  color: #5c5c5c;
}

.blog-page .single-post {
  padding-top: 100px;
}

.blog-page .single-post .heading-title {
  margin-top: 30px;
  margin-bottom: 50px;
}

.blog-page .single-post .heading-title h2 {
  font-weight: 500;
}

.blog-page .small-heading h2 {
  font-size: 23px;
  font-weight: 600;
}

.blog-page .post-data {
  padding-top: 30px;
  margin-bottom: 15px;
}

.blog-page .post-data p {
  color: #6b6b6b;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0px;
}

.blog-page .post-data p:after {
  content: "";
  color: #c69c6d;
  display: inline-block;
  position: relative;
  margin-right: 9px;
  margin-left: 14px;
  font-family: "FontAwesome";
}

.blog-page .post-data p:last-child:after {
  display: none;
}

.blog-page .post-data p a {
  color: #6b6b6b;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-page .post-data p a:hover {
  color: #c69c6d;
}

.blog-single-post header {
  position: relative;
  background-color: #504645;
}

.blog-single-post .sf-menu a {
  color: #504645;
}

.blog-single-post .sf-menu > li.sfHover {
  background: none;
}

.blog-single-post .sf-menu > li.sfHover > a {
  color: #c69c6d;
}

.blog-single-post .sf-menu > li > a {
  border-bottom: 5px solid transparent;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  color: #fff;
}

.blog-single-post .sf-menu > li > a:hover {
  color: #c69c6d;
}

.blog-single-post .sf-menu ul {
  border-top: 2px solid #c69c6d;
  background-color: #fff;
}

.blog-single-post .sf-menu ul li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.blog-single-post .sf-menu ul li:last-child {
  border-bottom: none;
}

.blog-single-post .sf-menu ul li:hover a {
  color: #504645;
}

.blog-single-post .sf-arrows li > .menu-item-has-children > a:after {
  border-top-color: #fff;
}

.blog-single-post .sf-arrows li .menu-item-has-children > a:focus:after, .blog-single-post .sf-arrows li:hover > .menu-item-has-children > a:after {
  border-top-color: #c69c6d;
}

.blog-single-post .sf-arrows .sfHover .menu-item-has-children > a:after {
  border-top-color: #c69c6d;
}

.comment-respond .small-heading {
  margin-bottom: 50px;
}

.post {
  margin-bottom: 60px;
}

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

.post.sticky {
  padding-bottom: 0;
  border-bottom: none;
}

.post .post-thumb {
  position: relative;
}

.post.sticky .post-thumb {
  margin-bottom: 0;
}

.post img {
  max-width: 100%;
  vertical-align: bottom;
  -webkit-transition: ease-in-out 0.50s;
  transition: ease-in-out 0.50s;
}

.post .content h3 {
  font-size: 21px;
  margin: 0 0 10px 0;
  color: #393939;
  font-weight: 700;
}

.post .content h3 + p a {
  color: #979797;
}

.post .content p {
  color: #606060;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 25px;
}

.post .content:after {
  display: none;
}

.post .content a {
  color: #383838;
  text-decoration: none;
  -webkit-transition: ease-in-out 0.60s;
  transition: ease-in-out 0.60s;
}

.post .content a:hover {
  color: #c69c6d;
}

.post .content + p {
  font-size: 14px;
  font-weight: 700;
  color: #979797;
}

.post .content .btn-default {
  color: #fff;
  background-color: #c69c6d;
}

.post .content .btn-default:hover {
  color: #fff;
  background: #504645;
}

.post h2 {
  font-size: 22px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.slider-portfolio-single .slide img {
  width: 100%;
}

.post.sticky {
  position: relative;
  background: #f8f8f8;
}

.post.sticky .post-data {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.post.sticky .post-data p {
  margin-bottom: 0;
}

.post.sticky .content {
  padding: 30px;
  padding-top: 15px;
}

.post.sticky:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #c69c6d transparent transparent;
}

.post.sticky:before {
  content: "\f135";
  position: absolute;
  color: #fff;
  z-index: 1;
  top: 7px;
  right: 17px;
  font-size: 14px;
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.post.sticky:after {
  right: 0;
}

.post.sticky:before {
  right: 10px;
}

.post-thumbnail {
  margin-bottom: 20px;
}

.single-post {
  padding-bottom: 50px;
}

.info span {
  margin: 0 5px;
}

.info span:first-child {
  margin-left: 0;
}

.author-bio {
  overflow: hidden;
  background: #504645;
  padding: 30px 0;
}

.author-bio h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}

.author-bio p {
  color: #eee;
  font-size: 14px;
}

.author-bio .profile-img {
  text-align: center;
}

.author-bio .profile-img img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: 10px;
}

.author-bio .author-info {
  padding-left: 25px;
}

.author-bio .author-info .author-description {
  color: #eee;
  margin: 0;
}

.entry-content blockquote {
  margin: 30px 0;
}

.format {
  display: inline-block;
  background: #f8f8f8;
  font-size: 0;
  letter-spacing: 0;
  margin: 10px 0 0 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}

.format:hover {
  background: #f8f8f8;
}

.format:before {
  font-family: FontAwesome;
  display: inherit;
  font-size: 15px;
  vertical-align: middle;
  color: #979797;
}

.format-chat .format:before {
  content: "\f086";
}

.format-quote .format:before {
  content: "\f10d";
}

.format-link .format:before {
  content: "\f0c1";
}

.format-status .format:before {
  content: "\f075";
}

.format-aside .format:before {
  content: "\f10c";
}

.format-video .format:before {
  content: "\f04b";
}

.format-audio .format:before {
  content: "\f025";
}

.format-image .format:before {
  content: "\f03e";
}

.format-gallery .format:before {
  content: "\f030";
}

.gallery-item {
  display: inline-block;
  padding: 1.79104477%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-item figcaption {
  padding: 15px 5px 0 5px;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-item a {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.gallery-item a:hover {
  opacity: 0.6;
}

.format-gallery .post-thumb {
  margin-bottom: 0;
}

.excerpt {
  margin-top: 30px;
}

article.post .nav-links a, .comment-navigation div a {
  display: inline-block;
  background: #f8f8f8;
  padding: 10px;
  width: 49%;
  text-align: center;
  margin-top: 30px;
}

article.post .nav-links a:hover {
  background: #26a1e0;
  color: #fff;
}

.comment-navigation div a:hover {
  background: #26a1e0;
  color: #fff;
}

.comment-navigation h1 {
  display: none;
}

.comment-navigation div a {
  margin-top: 0;
}

#comment-nav-below {
  margin-bottom: 30px;
}

.page-links {
  margin-bottom: 30px;
}

.page-links a {
  display: inline-block;
  color: #fff;
  padding: 10px 15px;
  background: #26a1e0;
}

.page-links span {
  margin-right: 5px;
}

.page-links a span {
  margin: 0;
}

.share-post h4, .share-post ul.share-post-links {
  display: inline-block;
}

.blog-page .comments-area p {
  font-size: 14px;
}

.blog-page .comments-area .info {
  margin-bottom: 10px;
}

.blog-page .comments-area .user {
  font-weight: 600;
}

.blog-page .comment-list {
  padding: 0;
  list-style: none;
}

.blog-page .comment-list > li {
  margin: 15px 0;
  padding: 15px 0 30px 0;
}

.blog-page .comment-list > li ul, .blog-page .comment-list > li ol {
  margin-bottom: 30px;
}

.blog-page .comment-list img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.blog-page .comment-list .user {
  font-size: 18px;
  margin-bottom: 0;
}

.blog-page .comment-list .user span {
  background: #c69c6d;
  font-size: 9px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 5px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-left: 5px;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog-page .comment-list .user span a {
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none;
}

.blog-page .comment-list .user span:hover {
  background: #f8f8f8;
}

.blog-page .comment-list .user span:hover a {
  color: #5c5c5c;
}

.blog-page .comment-list .info {
  font-size: 14px;
  font-weight: 400;
  color: #979797;
  margin-bottom: 10px;
}

.blog-page .comment-list .children {
  list-style: none;
  padding: 0;
  border-top: 1px solid #e7e7e7;
}

.blog-page .comment-list .children li {
  border-bottom: 1px solid #e7e7e7;
  padding-left: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-page .comment-list .children .children {
  border: none;
}

.blog-page .comment-list .children .children li {
  padding-left: 200px;
}

h3#reply-title:after {
  content: '';
  display: block;
  height: 2px;
  width: 70px;
  background: #c69c6d;
  margin: 20px 0 0 0;
  -webkit-animation: title-border .5s ease-in;
  animation: title-border .5s ease-in;
}

.comment-form-email, .comment-form-url {
  float: left;
  width: 34.5%;
}

.comment-form-author {
  float: left;
  width: 31%;
}

.comment-form-email, .comment-form-url {
  padding-left: 30px;
}

.comment-form-comment:before, .comment-form-url:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.comment-notes {
  margin-bottom: 30px;
}

/*Masonry*/
.grid-sizer {
  width: 25%;
}

.masonry-container .masonry-item {
  padding: 0;
  margin-bottom: 40px;
  border-bottom: none;
}

.masonry-container .masonry-item article {
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.masonry-container .masonry-item article:hover {
  -webkit-box-shadow: 0 0 19px 0 rgba(80, 70, 69, 0.35);
  box-shadow: 0 0 19px 0 rgba(80, 70, 69, 0.35);
}

.masonry-container .masonry-item article .post-data {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
}

.masonry-container .masonry-item article .content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
}

.masonry-container .masonry-item article .content p {
  font-size: 13px;
}

.masonry-container .masonry-item article .content h3 {
  font-size: 19px;
}

header {
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: transperent;
  z-index: 4;
  /*Dark logo*/
}

header .top-menu {
  float: right;
}

header .logo {
  display: inline-block;
  padding: 29px 0 19px 0;
  position: relative;
}

header .logo img {
  height: 47px;
  -webkit-transition: all ease 0.50s;
  transition: all ease 0.50s;
}

header .logo .logo-dark {
  display: none;
}

header .dark-logo .logo-white {
  display: none;
}

header .dark-logo .logo-dark {
  display: block;
}

form .btn {
  margin-top: 25px;
}

.slider {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.slider .buttons-section {
  margin-top: 45px;
}

.slider .dots-control-carousel {
  position: absolute;
  z-index: 3;
  margin-top: 0;
  bottom: 30px;
  right: 30px;
}

.slider .dots-control-carousel li {
  margin-right: 12px;
}

.slider .dots-control-carousel li button {
  font-size: 0px;
  padding: 0;
  height: 15px;
  width: 15px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  opacity: 0.5;
  background-color: transparent;
  border: 3px solid #fff;
  display: block;
}

.slider .dots-control-carousel .slick-active button {
  position: relative;
  top: -1px;
  width: 15px;
  height: 15px;
  opacity: 1;
  border: none;
  background: #fff;
}

.tlt span {
  color: #fff;
}

.letter-s-8 {
  letter-spacing: 8px;
}

.full-slider .slide .img-slide {
  margin-bottom: 30px;
}

/*Customize for slids*/
.full-slider .slide, .wrap-header .slide {
  /*small text*/
}

.full-slider .slide .head-desc .description-slide, .wrap-header .slide .head-desc .description-slide {
  margin-top: 0;
}

.full-slider .slide .small-text .description-slide, .wrap-header .slide .small-text .description-slide {
  font-weight: 300;
  font-size: 14px;
}

.full-slider .slide .small-text .heading-title-big, .wrap-header .slide .small-text .heading-title-big {
  font-size: 45px;
}

.full-slider .slide .black-text .description-slide, .full-slider .slide .black-text .heading-title-big, .wrap-header .slide .black-text .description-slide, .wrap-header .slide .black-text .heading-title-big {
  color: #1d1c1c;
}

/*home*/
.dark-load header {
  z-index: 999999;
}

/*About us*/
.about-us {
  background-color: #fff;
  position: relative;
}

/*Into slider*/
.into-slider {
  padding: 0;
  position: relative;
}

.into-slider > div > div {
  padding: 0;
}

.into-slider > div:nth-child(2n) {
  background-color: #494748;
}

.into-slider .item {
  background-color: #0c0c0c;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.into-slider .item i {
  font-size: 4.0625rem;
  color: #fff;
}

.into-slider .item h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.into-slider .item p {
  font-size: 0.875rem;
  color: #fff;
}

.into-slider > div > div > div {
  padding: 0;
}

.into-slider > div > div > div:nth-child(2n) .item {
  background-color: rgba(17, 17, 17, 0.9);
}

.item-about .icon {
  display: inline-block;
  padding-right: 10px;
  float: left;
}

.item-about .icon i {
  font-size: 73px;
  color: #555;
}

.item-about .icon .bg-icon {
  position: absolute;
  top: -60px;
  left: 50px;
}

.item-about .icon .bg-icon i {
  font-size: 152px;
  opacity: 0.05;
}

.item-about .content {
  padding-top: 10px;
  padding-left: 20px;
  overflow: hidden;
}

.item-about h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0;
}

.item-about h3 span {
  color: #c69c6d;
}

.item-about p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
  color: #606060;
}

.light-item .icon i {
  color: #fff;
}

.light-item .content h3 {
  color: #fff;
}

.light-item .content p {
  color: #e2e2e2;
}

/*Services section*/
.services-section .slick-list {
  overflow: visible;
}

.services-section .ui-tabs-panel .heading-title {
  margin-bottom: 0;
}

.services-section .ui-tabs-panel p {
  font-size: 14px;
  line-height: 23px;
}

.services-section .link-full {
  padding-top: 60px;
}

/*  How we work section */

.section-how-we-work .icon-container {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid rgba(66, 66, 66, 0.47);
  height: 195px;
  width: 195px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 35px;
  -webkit-transition: all .26s ease;
  transition: all .26s ease;
}

.section-how-we-work .icon-container:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  border-top: 2px dashed #ccc;
  position: absolute;
  right: -37px;
  top: 28%;
}

.section-how-we-work .icon-container:hover {
  border-color: #c69c6d;
}

.section-how-we-work .icon-container:hover .icon {
  border-color: white;
  background-color: #c69c6d;
}

.section-how-we-work .icon-container .icon {
  width: 90px;
  height: 90px;
  background-color: #424242;
  display: inline-block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all ease 0.75s;
  transition: all ease 0.75s;
}

.section-how-we-work .icon-container .icon i {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
}

.section-how-we-work .item-icon:last-child .icon-container:after {
  display: none;
}

.section-how-we-work .item-icon p {
  color: #606060;
  font-weight: 400;
  margin-top: 14px;
  letter-spacing: 0.4px;
  font-size: 14px;
}

.section-how-we-work h3, .section-how-we-work p {
  text-align: center;
}

.section-how-we-work h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
  text-transform: uppercase;
}

/*  How work progress */
.section-work-progress .heading-title {
  margin-bottom: 0;
}

.icon-progress {
  text-align: center;
}

.icon-progress i {
  font-size: 65px;
  line-height: 65px !important;
}

.icon-progress p {
  font-size: 18px;
  margin-top: 10px;
  
  letter-spacing: 2px;
}

/*Portfolio section */
.section-portfolio {
  padding-bottom: 0;
}

.section-portfolio .heading-title {
  margin-bottom: 40px;
}

.section-portfolio .mix {
  display: none;
}

.section-portfolio .set-tab {
  color: #c69c6d;
}

.section-portfolio .heading-title {
  margin-bottom: 85px;
}

.container-carousel {
  position: relative;
}

.portfolio > div {
  padding: 0;
}

.portfolio-pd > div {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.item-portfolio {
  position: relative;
}

.item-portfolio img {
  display: block;
  width: 100%;
  top: 0;
}

.content-wrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: table;
}

.content-wrap .content-va {
  display: table-cell;
  vertical-align: middle;
}

.item-wrap {
  position: relative;
  overflow: hidden;
}

.item-wrap .tizer-circle {
  position: absolute;
  right: 25px;
  top: 25px;
}

.item-wrap .content-wrap {
  position: relative;
}

.item-wrap img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.item-wrap:hover .content {
  opacity: 1;
}

.item-wrap:hover img {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.item-wrap:hover .content::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.item-wrap:hover h2, .item-wrap:hover p {
  color: #fff;
}

.item-wrap .content {
  padding-left: 40px;
  padding-right: 40px;
  position: absolute;
  text-align: center;
  height: 100%;
  width: 100%;
  top: 0;
}

.item-wrap .content::before {
  display: block;
  top: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 10px;
  bottom: 10px;
  left: 10px;
  position: absolute;
  content: '';
}

.item-wrap h2 {
  font-size: 18px;
  margin-bottom: 0px;
  line-height: 18px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.item-wrap h2:after {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  background-color: #c69c6d;
  margin: 0 auto;
  margin-top: 12px;
  margin-bottom: 5px;
}

.item-wrap p {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

/*Section trigger*/
.section-trigger .heading-title {
  margin-bottom: 35px;
}

.section-trigger .heading-title h2:after {
  display: none;
}

/*Section We are in numbers*/
.section-we-are-numbers .item-number {
  text-align: center;
}

.section-we-are-numbers .item-number .num {
  background-color: #625958;
}

.section-we-are-numbers .item-number .num h2 {
  font-size: 65px;
  line-height: 65px;
  padding-top: 22px;
  padding-bottom: 13px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
  color: #fff;
}

.section-we-are-numbers .item-number .name {
  background-color: rgba(80, 70, 69, 0.5);
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-we-are-numbers .item-number .name p {
  font-size: 18px;
  margin-top: 0;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.section-we-are-numbers div > div:nth-child(2n) .item-number .num {
  background-color: rgba(80, 70, 69, 0.5);
}

.section-we-are-numbers div > div:nth-child(2n) .item-number .name {
  background-color: #625958;
}

/*Team section*/
.team-socials {
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}

.team-socials .team-socials_item {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.item-team:hover .mask-info {
  opacity: 0.6;
}

.item-team:hover .team-socials .team-socials_item {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.item-team:hover .team-socials .team-socials_item:nth-of-type(1) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.item-team:hover .team-socials .team-socials_item:nth-of-type(2) {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.item-team:hover .team-socials .team-socials_item:nth-of-type(3) {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.item-team:hover .team-socials .team-socials_item:nth-of-type(4) {
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

.item-team:hover .team-socials .team-socials_item:nth-of-type(5) {
  -webkit-transition-delay: .7s;
  transition-delay: .7s;
}

.item-team:hover .team-socials .team-socials_item:nth-of-type(6) {
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}

.team-socials_icon.fa {
  line-height: 33px !important;
}

.team-socials_label {
  display: none;
}

.item-team h2 {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin-top: 17px;
  margin-bottom: 4px;
}

.item-team span {
  color: #c69c6d;
}

.item-team p {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 14px;
  color: #606060;
}

.img-wrap {
  position: relative;
}

.img-wrap img {
  width: 100%;
}

.mask-info {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 4px solid #c69c6d;
}

/*==========   Start Testimonials Section  ==========*/
.section-testimonials {
  overflow: hidden;
}

.section-testimonials .dots-control-carousel {
  margin-top: 0;
}

.section-testimonials .prev-next-block-rotate .wrap-prev, .section-testimonials .prev-next-block-rotate .wrap-next {
  z-index: 4;
}

.section-testimonials .dots-control-carousel {
  margin-top: 50px;
}

.testimonials-items * {
  outline: none;
}

.item-testimonials {
  padding: 25px;
  text-align: center;
  background-color: rgba(84, 74, 73, 0.35);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all ease-in-out .6s;
  transition: all ease-in-out .6s;
}

.item-testimonials:hover {
  -webkit-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  transform: translateY(-2%);
}

.item-testimonials:hover img {
  border-color: #c69c6d;
}

.item-testimonials img {
 /* -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 118px;
  margin: 0 auto;
  display: inline-block;
  border: 4px solid #544a49;
  -webkit-transition: all ease .6s;
  transition: all ease .6s;*/
}

.item-testimonials p {
  padding-top: 10px;
  color: #fff;
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: .2px;
  padding-bottom: 22px;
}

.item-testimonials span {
  display: block;
  font-size: 1rem;
}

.item-testimonials .name {
  color: #c69c6d;
  font-weight: 500;
}

.item-testimonials .person {
  color: #a5a5a5;
}

/*==========   Start Choose us  ==========*/
.item-choose {
  position: relative;
  margin-top: 50px;
}

.item-choose .content h3 {
  letter-spacing: 0.2px;
  margin-top: 0;
}

/*==========   Start Our clients  ==========*/
.our-clients {
  overflow: hidden;
  position: relative;
  background-color: #c69c6d;
}

.our-clients .item-carousel img {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.clients-carousel * {
  outline: none;
}

/*========= Start our location ==========*/
.our-locations {
  padding: 0;
}

.our-locations .heading-location {
  background-color: #c69c6d;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

.our-locations .heading-location:hover {
  background-color: #504645;
}

.our-locations .active-map {
  background-color: #504645;
}

/*========= Start Footer ==========*/
footer {
  padding-top: 80px;
  background-color: #212124;
}

footer > div {
  padding-bottom: 80px;
}

footer > div:last-child {
  padding-bottom: 20px;
}

footer p {
  color: #fff;
  font-size: 13px;
  margin-top: 25px;
  line-height: 26px;
}

footer ul.social-links {
  margin-top: 30px;
  margin-left: 5px;
}

footer .down-footer {
  background-color: #272729;
  padding-top: 20px;
}

footer .down-footer p {
  display: inline-block;
  float: left;
  margin-top: 0;
}

footer .down-footer p a {
  color: #c69c6d;
}

footer .down-footer ul {
  padding-left: 0;
  margin: 0;
  float: right;
}

footer .down-footer ul li {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

footer .down-footer ul li:last-child {
  margin-right: 0;
}

footer .down-footer ul li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer .down-footer ul li a:hover {
  color: #c69c6d;
}

footer .links p {
  margin-top: 0;
}

.footer-minimal .down-footer p {
  display: block;
  float: none;
}

/*Who we are*/
.whe-we-are {
  padding-top: 0;
  padding-bottom: 0;
}

.whe-we-are .heading-title {
  margin-bottom: 0;
}

.buttons-section .white-btn {
  background-color: #c69c6d;
  border-color: #fff;
  color: #fff;
}

.buttons-section .white-btn:hover {
  background-color: #9e7d57;
}

.right-full {
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.right-full .center-all {
  width: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.left-full {
  position: relative;
}

.left-full .center-all {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*.section-our-services*/
.section-our-services {
  padding-bottom: 50px;
}

/*==========   Start Price Table Section  ==========*/
.item-price {
  background-color: #fff;
  -webkit-box-shadow: 4px 0 19px rgba(80, 70, 69, 0.35);
  box-shadow: 4px 0 19px rgba(80, 70, 69, 0.35);
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
}

.item-price:hover {
  -webkit-transform: translateY(-3%);
  -ms-transform: translateY(-3%);
  transform: translateY(-3%);
}

.item-price:hover .head .name-wrap:after {
  -webkit-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  transform: translateY(-2%);
}

.item-price .head {
  background-color: #f8f8f8;
}

.item-price .head .name-wrap {
  color: #fff;
  background-color: #2d2c2c;
  position: relative;
  text-align: center;
  padding-top: 15px;
}

.item-price .head .name-wrap h2 {
  font-size: 17px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: .3px;
}

.item-price .head .name-wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  background-image: url("../img/s1_triangle1.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.item-price .head .price-wrap {
  color: #c69c6d;
  text-align: center;
  padding-top: 30px;
}

.item-price .head .price-wrap p {
  font-weight: 300;
  font-size: 55px;
  position: relative;
  top: -5px;
  color: #504645;
}

.item-price .head .price-wrap p span {
  font-weight: 600;
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 4px;
  line-height: 4.3125rem;
}

.item-price .head .price-wrap .per-mn {
  display: block;
  position: relative;
  top: -15px;
}

.item-price .body ul {
  padding-left: 0;
  margin-top: 0;
}

.item-price .body ul li {
  text-align: center;
  color: #5c5757;
  font-size: 0.875rem;
  font-weight: 400;
  list-style: none;
  padding-top: 11px;
  padding-bottom: 11px;
}

.item-price .body ul li:nth-child(2n+1) {
  background-color: #f1f1f1;
}

.item-price .body ul li:last-child {
  padding-top: 19px;
  padding-bottom: 19px;
}

.most-price {
  background-color: #504645;
  position: relative;
}

.most-price .head {
  background-color: #6a6261;
}

.most-price .head .name-wrap {
  background-color: transparent;
}

.most-price .head .name-wrap h2 {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  position: relative;
  top: 20px;
}

.most-price .head .name-wrap:after {
  display: none;
}

.most-price .head .price-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
}

.most-price .head .price-wrap p {
  color: #fff;
}

.most-price .head .price-wrap .per-mn {
  color: #bdbdbd;
}

.most-price .body ul li {
  color: #fafafa;
  background-color: #6a6261;
}

.most-price .body ul li:nth-child(2n+1) {
  background-color: #504645;
}

.most-price:before {
  content: 'Most popular plan';
  display: block;
  background: #c69c6d;
  position: absolute;
  width: 100%;
  left: 0;
  top: -31px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  padding: 8px 5px;
}

/*==========   Start .faq-section ==========*/
.faq-section h2 {
  margin-bottom: 20px;
}

.faq-section .accordion {
  margin-bottom: 50px;
}

.faq-section .accordion:last-child {
  margin-bottom: 0;
}

/*==========   Start .chooce-us-acc  ==========*/
.chooce-us-acc .heading-title {
  margin-bottom: 0;
}

.icon-circle {
  background: rgba(198, 156, 109, 0.1);
  -webkit-transition: background 0.2s, -webkit-transform ease-out 0.1s;
  transition: background 0.2s, -webkit-transform ease-out 0.1s;
  transition: transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s, -webkit-transform ease-out 0.1s;
}

.icon-circle:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  -webkit-box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1);
  box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1);
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all ease 0.90s;
  transition: all ease 0.90s;
}

.icon-circle:hover {
  background: rgba(198, 156, 109, 0.05);
  -webkit-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
  color: #fff;
}

.icon-circle:hover:after {
  -webkit-animation: sonarEffect 1.3s ease-out 75ms;
  animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    -webkit-box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
    box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
    box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    -webkit-box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
    box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
    box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.1), 0 0 10px 10px #c69c6d, 0 0 0 10px rgba(198, 156, 109, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.anim-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.anim-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.anim-shadow:hover, .anim-shadow:focus, .anim-shadow:active {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.anim-shadow:hover:before, .anim-shadow:focus:before, .anim-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.toBottomFromTop:hover i, .btn-down:hover i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
}

@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}

/*Animation full screen menu*/
.rotate {
  opacity: 0;
  -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, transform 0.7s;
  transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.active-fullscreen-topnav .rotate {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.anim-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.anim-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.anim-shadow:hover, .anim-shadow:focus, .anim-shadow:active {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.anim-shadow:hover:before, .anim-shadow:focus:before, .anim-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

/*mfp*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.toTopFromBottom:hover i {
  -webkit-animation: toTopFromBottom 0.5s forwards;
  animation: toTopFromBottom 0.5s forwards;
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

.item-team {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.services-tabs li:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.services-tabs li:nth-child(2) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.services-tabs li:nth-child(3) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.services-tabs li:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.ui-corner-bottom {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.ui-corner-bottom[aria-hidden="false"] {
  opacity: 1;
}

#slider-item .text-fade .in-item {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

#slider-item .text-fade .active {
  z-index: 4;
  opacity: 1;
  position: relative;
  -webkit-transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

/*==========  Desktop First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1300px) {
  .toggle-top {
    position: relative;
    left: 40px;
  }
}

@media only screen and (max-width: 1160px) {
  /*START Left menu style normal*/
  .content-wrap-lfm {
    margin-left: 0;
  }
  .content-wrap-lfm .sidenav .container {
    width: 970px;
  }
  .header-type-1 {
    position: relative;
    left: auto;
    background-color: #1d1d1d;
    background-image: none !important;
    top: auto;
    z-index: 6;
    height: 65px;
    width: 100%;
  }
  .header-type-1:after {
    display: none;
  }
  .header-type-1 ul.social-links {
    display: none;
  }
  .header-type-1 .logo {
    float: left;
    display: inline-block;
    width: auto;
    padding-top: 12px;
    padding-bottom: 0;
    margin-top: 0;
    margin-left: 20px;
  }
  .header-type-1 .logo .logo-dark {
    display: none;
  }
  .header-type-1 .logo .logo-white {
    display: block;
  }
  .header-type-1 .dark-logo .logo-dark {
    display: block;
  }
  .header-type-1 .dark-logo .logo-white {
    display: none;
  }
  .header-type-1 .top-menu {
    display: none;
  }
  .header-type-1 .toggle-mnu {
    display: block;
    top: 23px;
    right: 41px;
  }
  /*END Left menu style normal*/
}

@media only screen and (max-width: 1200px) {
  .fullscreen-topnav .items .link:nth-of-type(2) {
    background-color: rgba(85, 85, 85, 0.9);
  }
  .section-how-we-work .icon-container:after {
    width: 33px;
    right: -17px;
  }
  .avatar-80 {
    width: 50px;
    height: 50px;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  /**/
  header .sf-menu {
    display: none;
  }
  header .logo {
    padding: 12px 0 9px 0;
  }
  header .logo img {
    height: 43px;
  }
  header .toggle-mnu {
    display: block;
    top: 23px;
    right: 41px;
  }
  header .toggle-top {
    top: 23px;
    padding-left: 14px;
    margin-left: 0;
    border-left: 1px solid #ccc;
  }
  .background-image {
    background-position: 50% 50%;
  }
  /**/
  .heading-title-big {
    font-size: 52px;
  }
  .slide-title {
    font-size: 22px;
  }
  .description-slide {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
  }
  .btn {
    padding: 12px 25px 12px 25px;
    font-size: 13px;
    line-height: 13px;
  }
  /*Sections style*/
  .about-us {
    padding-bottom: 55px;
  }
  .about-us .item-about {
    margin-bottom: 30px;
  }
  /*Tabs services*/
  .services-section ul.list {
    margin-top: 30px;
  }
  /*Tabs services*/
  .services-tabs {
    padding: 0;
  }
  .services-tabs .slick-list {
    overflow: hidden;
  }
  .services-tabs .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor {
    background-color: #1b1b1b;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .services-tabs .ui-tabs-panel {
    margin-top: 30px;
  }
  /*How we work*/
  .section-how-we-work {
    padding-bottom: 35px;
  }
  .section-how-we-work .icon-container:after {
    display: none;
  }
  .section-how-we-work .item-icon {
    margin-bottom: 50px;
  }
  /*section-work-progress*/
  .section-work-progress {
    padding-bottom: 45px;
  }
  .section-work-progress .heading-title {
    margin-bottom: 30px;
  }
  .section-work-progress .icon-progress {
    margin-bottom: 40px;
  }
  /*Section We are in numbers*/
  .section-we-are-numbers div > div:nth-child(2n) .item-number .num {
    background-color: #625958;
  }
  .section-we-are-numbers div > div:nth-child(2n) .item-number .name {
    background-color: rgba(80, 70, 69, 0.5);
  }
  /*Team section*/
  .section-team {
    padding-bottom: 35px;
  }
  .section-team .item-team {
    padding-bottom: 50px;
  }
  /*section-testimonials*/
  .section-testimonials .prev-next-block-rotate {
    display: none;
  }
  /*section-choose-us*/
  .section-choose-us {
    padding-bottom: 20px;
  }
  .section-choose-us .item-about {
    margin-bottom: 65px;
  }
  .section-choose-us .item-about .icon {
    line-height: 73px;
  }
  .section-choose-us .item-about .icon .bg-icon {
    top: 0;
  }
  .section-choose-us .item-about .icon .bg-icon i {
    font-size: 130px;
  }
  /*contact form*/
  .contact-wrap {
    text-align: center;
    margin-bottom: 50px;
  }
  /*footer*/
  footer {
    text-align: center;
  }
  footer > div {
    padding-bottom: 30px;
  }
  footer .social-links {
    margin-bottom: 50px;
  }
  footer .links {
    padding-bottom: 30px;
  }
  footer .down-footer p {
    float: inherit;
    display: block;
    text-align: center;
  }
  .contact-2 {
    padding-bottom: 30px;
  }
  section .accordion {
    margin-top: 30px;
  }
  .services-list {
    margin-bottom: 30px;
  }
  .service-single ul.list {
    margin-top: 20px;
  }
  .service-about, .item-about {
    padding-bottom: 40px;
  }
  .service-about:last-child, .item-about:last-child {
    padding-bottom: 0;
  }
  .service-about .icon i, .item-about .icon i {
    width: 70px;
  }
  .service-about .icon .bg-icon, .item-about .icon .bg-icon {
    top: -20px;
    left: 70px;
  }
  .service-about .icon .bg-icon i, .item-about .icon .bg-icon i {
    font-size: 100px;
  }
  .item-price .head .name-wrap:after {
    background-size: 100% 100%;
    height: 30px;
  }
  .most-price:before {
    position: relative;
    top: 0;
  }
  .item-price-two:last-child {
    margin-bottom: 40px;
  }
  .blog-classic .post-content-classic {
    margin-top: 20px;
  }
  .blog-classic .post.sticky:after {
    right: 15px;
  }
  .blog-classic .post.sticky:before {
    right: 8px;
    margin-right: 15px;
  }
  /*Blog*/
  .comment-list .children .children li {
    padding-left: 50px;
  }
  .related-projects .item-portfolio {
    margin-bottom: 30px;
  }
  .related-projects .item-portfolio:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  #sidebar:before {
    display: none;
  }
  .content-project {
    margin-top: 30px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  header .toggle-mnu {
    right: 55px;
  }
  header .toggle-top {
    left: 27px;
  }
  .description-slide {
    font-size: 12px;
  }
  .full-slider .slide .small-text .heading-title-big, .wrap-header .slide .small-text .heading-title-big {
    font-size: 40px;
  }
  .fullscreen-topnav .items .text-item {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .prev-next-block-rotate {
    display: none;
  }
  /*Section We are in numbers*/
  .section-we-are-numbers {
    padding-bottom: 0;
  }
  /*section-testimonials*/
  .section-testimonials .dots-control-carousel {
    margin-top: 30px;
  }
  .display-page h1 {
    font-size: 30px;
  }
  .display-page p {
    font-size: 13px;
  }
  .right-full .center-all {
    width: 100%;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  #sidebar {
    padding-bottom: 30px;
  }
  .profile-img .dark-hex img {
    margin-bottom: 30px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  /**/
  .heading-title-big {
    font-size: 40px;
  }
  .full-slider .embed-responsive-item {
    display: none;
  }
  .full-slider img {
    display: none;
  }
  .heading-title h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .full-slider .slide .small-text .heading-title-big, .wrap-header .slide .small-text .heading-title-big {
    font-size: 30px;
  }
  .small-head h2 {
    font-size: 16px;
  }
  .small-heading h2 {
    font-size: 25px;
  }
  .heading-title p {
    font-size: 13px;
  }
  .slide-title {
    font-size: 18px;
  }
  .description-slide {
    font-size: 12px;
  }
  .controls-portfolio ul li {
    margin-bottom: 10px;
  }
  /*Team*/
  .item-team h2 {
    font-size: 15px;
  }
  .item-team span {
    font-size: 13px;
  }
  .item-team p {
    font-size: 13px;
  }
  .item-team .team-socials .team-socials_item {
    margin-left: 2px;
    font-size: 13px;
    line-height: 13px;
  }
  .item-team .team-socials .team-socials_item a {
    width: 29px;
    height: 29px;
    line-height: 29px;
    -webkit-transform: rotate(0deg) translate(0px, 0px);
    -ms-transform: rotate(0deg) translate(0px, 0px);
    transform: rotate(0deg) translate(0px, 0px);
  }
  .item-team .team-socials .team-socials_item a i {
    -webkit-transform: rotate(0deg) translate(0px, 0px);
    -ms-transform: rotate(0deg) translate(0px, 0px);
    transform: rotate(0deg) translate(0px, 0px);
  }
  .post .post-data p {
    font-size: 13px;
  }
  .post .content h3 {
    font-size: 18px;
  }
  .related-projects .item-portfolio {
    margin-bottom: 30px;
  }
  .related-projects .item-portfolio:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .related-projects .item-portfolio .content-wrap .content-va p {
    display: none;
  }
  .related-projects .item-portfolio .content-wrap .content-va h2 {
    margin-top: 0;
  }
  .related-projects .item-portfolio .content-wrap .content-va h2:after {
    display: none;
  }
  .related-projects .tizer-circle {
    display: none;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  /**/
  .buttons-section .btn {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  .buttons-section .btn:last-child {
    margin-bottom: 0;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 350px) {
  .buttons-section .large-btn:first-child {
    margin-right: 15px !important;
  }
  .btn {
    font-size: 12px;
  }
  .heading-title-big {
    font-size: 30px;
  }
}

/*==========  Mobile First Method  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}

/* Large Devices, Wide Screens */
@media only screen and (max-height: 860px) {
  /**/
  .active-fullscreen-topnav .height-half-60 .items .height-full {
    height: 530px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.tm-pg_front_gallery {
  padding: 0 !important;
}

.tm-pg_frontend {
  position: relative;
  z-index: 999;
}

.items-nopadding {
  width: 100%;
  position: relative;
  z-index: 999;
}

.template-swiper_carousel_1 {
  max-width: 1170px;
  width: 100%;
}

@media (min-width: 969px) {
  .template-swiper_carousel_1 .swiper-slide {
    width: calc( (100% / 3) - 5px) !important;
  }
}

.our-clients, .customers-slider {
  position: relative;
  z-index: 999;
}

.our-clients:hover .swiper-button-next, .our-clients:hover .swiper-button-prev, .customers-slider:hover .swiper-button-next, .customers-slider:hover .swiper-button-prev {
  transform: translateX(0);
}

.swiper-button-next, .swiper-button-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all ease .6s;
  transition: all ease .6s;
  text-align: center;
  top: 35%;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  opacity: 1;
}

.swiper-button-next {
  right: 0;
  transform: translateX(60px);
}

.swiper-button-next:before {
  content: "";
  color: #808080;
  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;
}

.swiper-button-prev {
  left: 0;
  transform: translateX(-60px);
}

.swiper-button-prev:before {
  content: "";
  color: #808080;
  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;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 8px;
  height: 8px;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid #fff;
  width: 10px;
  height: 10px;
}

.our-clients .cherry-swiper-carousel {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

ul.social-links {
  padding-left: 0;
  margin: 0;
}

ul.social-links li {
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  margin-left: 20px;
}

ul.social-links li:first-child {
  margin-left: 0;
}

ul.social-links li a {
  -webkit-transform: rotate(45deg) translate(0px, 0px);
  -ms-transform: rotate(45deg) translate(0px, 0px);
  transform: rotate(45deg) translate(0px, 0px);
  list-style: none;
  background-color: #c69c6d;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

ul.social-links li a:hover {
  background-color: #504645;
}

ul.social-links li a i {
  margin: auto;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
  -ms-transform: rotate(-45deg) translate(0px, 0px);
  transform: rotate(-45deg) translate(0px, 0px);
}

.content_sidebar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

@media (max-width: 767px) {
  .content_sidebar {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
  }
}

.content_sidebar #primary {
  margin-right: 30px;
  padding: 80px 0 30px;
  text-align: left;
  align-content: baseline;
  width: 100%;
}

.content_sidebar #primary h2.page-title {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .content_sidebar #primary {
    margin-right: 0;
  }
}

.content_sidebar #sidebar, .sidebar_content #primary {
  min-height: 100%;
  flex-shrink: 0;
  width: 300px;
  padding: 110px 15px 80px 40px;
  text-align: left;
}

.content_sidebar #sidebar h3, .sidebar_content #primary h3 {
  padding-top: 0px;
  font-size: 20px;
  line-height: 1.1;
}

.content_sidebar li {
  margin-top: 15px;
}

.content_sidebar a:hover {
  text-decoration: underline;
}

.search input.searching {
  height: 36px;
  box-shadow: none !important;
  padding: 8px 7px 8px 16px;
  outline: none;
  width: 347px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  outline: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
  font: 12px/18px Arial, sans-serif;
  font-family: 'Ubuntu', sans-serif;
  color: #83868a;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  -webkit-appearance: none;
}

.search {
  position: relative;
}

.search input {
  padding-right: 65px !important;
}

.search .btn {
  position: absolute;
  right: 0 !important;
  top: 1px !important;
  height: 34px !important;
  background-color: #939ea6 !important;
  color: #fff !important;
  border-radius: 0 !important;
  border: none !important;
  border-left: 1px solid #d3d3d3 !important;
  display: block !important;
  padding: 0 7px !important;
  z-index: 3 !important;
  cursor: pointer;
  min-width: auto !important;
  line-height: 34px !important;
}

.content_sidebar .post-holder {
  display: table;
  width: 100%;
  margin-top: 30px;
}

.content_sidebar .post-holder .blog-image {
  display: block;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.content_sidebar .post-holder .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_sidebar .post-holder h4.entry-title {
  font-size: 30px;
  color: #4db748;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .content_sidebar #primary {
    padding: 0;
    margin: 0;
  }
}

.search {
  margin-bottom: 20px;
  display: table;
  width: 100%;
}

.search a {
  margin-top: 0;
}

.search a span {
  font-size: 14px;
}

.single-post-meta, .info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

@media (max-width: 767px) {
  .single-post-meta, .info {
    flex-direction: column;
  }
  .single-post-meta > *, .info > * {
    margin: 0 !important;
  }
  .single-post-meta > *:before, .info > *:before {
    display: none;
  }
}

.single-post-meta > *, .info > * {
  margin: 0 5px;
}

.single-post-meta > *:first-child, .info > *:first-child {
  margin-left: 0;
}

.single-post-meta > *:last-child, .info > *:last-child {
  margin-right: 0;
}

.single-post-meta > *:first-child:before, .info > *:first-child:before {
  display: none;
}

.single-post-meta > *:before, .info > *:before {
  content: "";
  color: #c69c6d;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  margin-left: 6px;
  font-family: "FontAwesome";
}

.single-post-meta time, .info time {
  display: inline;
}

.post-excerpt {
  margin: 15px 0 0 0;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  font-family: Alegreya Sans, sans-serif;
  letter-spacing: 0px;
  text-align: left;
  color: #616262;
}

.comment-meta {
  background: none;
  padding: 0;
  text-align: left;
}

.comments-title {
  margin: 0;
}

#commentform label {
  display: block;
}

#commentform input[type="submit"] {
  display: inline-block;
  margin: 15px 0 0 0;
  -webkit-appearance: none;
  outline: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 0.8rem 0.75rem;
  line-height: 1.5rem;
  color: #3d4049;
  background: #f5f5f5;
  height: 3rem;
  border: none;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
}

h2.page-title {
  font-size: 2.7rem;
}

#commentform textarea, #commentform input:not([type="submit"]) {
  border-color: #c69c6d;
}

footer .logo {
  text-align: center;
  display: table;
}

footer .social-links {
  margin-bottom: 30px;
}


span.spanMarron{
  color: #C69C6D!important;
}
img.zergatikguback{
  position: absolute;
  top:-35px;
  left: -35px;
  opacity: 0.05;
  width: 138px;
}
.eskuinEz{
  margin-right: 0;
}
.section-choose-us{
  background-image: url(http://gurelanak.net/digitalak/wp-content/uploads/2018/03/hondoko-irudia-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.section-choose-numbers{
  padding-top: 0;
  padding-bottom: 0
  background-color: #625958;
}
.section-choose-numbers .container{
    width:100%;
}
.cherry-counter.custom_counter.counter_v1 .count {
    background-color: #0c0c0c;
}
.cherry-counter.custom_counter.counter_v1 .count {
    background-color: #0c0c0c!important;
}
.cherry-counter.custom_counter.counter_v2 .after {
    background-color: #0c0c0c!important;
}
.cherry-counter.custom_counter.counter_v2 .count {
    background-color: #494748;
}
.section-choose-numbers{
  padding-bottom: 0;
}
/*# sourceMappingURL=main.css.map */
.zerbitzuakItem{
  background-color: #1b1b1b;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .zerbitzuakItem{
      width: 24%;
      margin-left: 0.5%;
      margin-right: 0.5%;
  }
  .zerbitzuakItemnth-child(1){
      margin-left: 0;
  }
  .zerbitzuakItemnth-child(4){
      margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .zerbitzuakItem{
      width: 49%;
      margin-left: 0.5%;
      margin-right: 0.5%;
      margin-top: 0.5%;
  }
  .zerbitzuakItemnth-child(1){
      margin-left: 0;
  }
  .zerbitzuakItemnth-child(2){
      margin-right: 0;
  }
  .zerbitzuakItemnth-child(3){
      margin-left: 0;
  }
  .zerbitzuakItemnth-child(4){
      margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .zerbitzuakItem{
      width: 98%;
      margin:1%;
  }
 
}


.zerbitzuakItem h4{
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 10px;
  color:#ffffff;
}
.services-section{
  background-color: #000000;
}
.zerbitzuIrudia {
    display: block!important;
    margin-left: auto;
    margin-right: auto;
}
.zerbitzuakItem p{
  margin-top: 0;
  color: #ffffff;
}
.heading-title p {
    color: #ffffff;
}
.services-section .heading-title h2 {
     color: #ffffff;
  }
  .head-service{
    margin-top: 40px;
  }
  .head-service2{
    margin-top: 50px;
  }
  .services-section .container .row{
    color:#ffffff;
  }
  h4.team-listing_name{
    font-weight: 300;
  }
  .team-listing_desc{
    color:#C69C6D!important;
  }
  .section-team{
  background-image: url(http://gurelanak.net/digitalak/wp-content/uploads/2018/03/hondoko-irudia-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.atzekoBeltza{
  background-color: #000000;
}
.item-testimonials{
  background-color: #1B1B1B;
}
.item-testimonials img {
    /*-webkit-border-radius: 50%;
    border-radius: 50%;
    width: 118px;
    margin: 0 auto;
    display: inline-block;
    border: 4px solid #544a49;
    -webkit-transition: all ease .6s;
    transition: all ease .6s;*/
    width: 125px;
    margin: 0 auto;
    display: inline-block;
    border: 3px solid #ffffff;
}
.cherry-swiper-carousel-slide .item-carousel img{
  height: 100px;
}
#footer-logo{
  border-bottom: 2px solid #C69C6D;
  padding-bottom: 10px;
  padding-right: 35px;
}

header .top-menu-lang {
    float: right;
}

.top-menu-lang ul li{
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    -webkit-transition: all ease 0.50s;
    transition: all ease 0.50s;
    background-color: transparent;
    padding: 40px 0px 40px 0;
    letter-spacing: 0.7px;
}
.top-menu-lang ul li a {
    border-bottom: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    color: #C69C6D;
    text-decoration: none;
}
.top-menu-lang ul li a:hover, .top-menu-lang ul li a:focus {
    border-bottom: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    color: #ffffff;
}
header.is-sticky .top-menu-lang ul li{
    padding: 24px 0px 24px 0;
}

.section-choose-us p{
  color: #555;
}
.section-portfolio .heading-title p {
    color: #585858;
}