<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

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

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

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

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

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

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

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

.pulse {
  animation-name: pulse;
}

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

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

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

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

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

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

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

.rubberBand {
  animation-name: rubberBand;
}

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

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

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

.shake {
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

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

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

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

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

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

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

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

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

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

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

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

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

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

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

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

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

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

.bounceInUp {
  animation-name: bounceInUp;
}

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

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

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

.bounceOut {
  animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

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

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

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: none;
    opacity: 1;
  }
}

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

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

.hinge {
  animation-name: hinge;
}

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

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

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

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

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}

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

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

.slideOutDown {
  animation-name: slideOutDown;
}

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

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

.slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.slideOutRight {
  animation-name: slideOutRight;
}

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

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

.slideOutUp {
  animation-name: slideOutUp;
}



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

@-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)
    }
}
/*---------------------------------------------------------------------
  Keyframes Animation
----------------------------------------------------------------------*/

/*--topBottom--*/

.topBottom{animation: topBottom 5s infinite;}

@-webkit-keyframes topBottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes topBottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }


.Bottom{animation: Bottom 5s infinite;}

@-webkit-keyframes Bottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes Bottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }


/*--leftRight--*/

.leftRight{animation: leftRight 1.2s infinite; animation-duration: 5s;}

@-webkit-keyframes leftRight {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(15px, 0);
            transform: translate(15px, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes leftRight {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(15px, 0);
            transform: translate(15px, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }


/*--animatedBackground--*/

.animatedBackground{background-repeat: repeat !important; background-size: auto !important; animation: animatedBackground 20s linear infinite;
-ms-animation: animatedBackground 20s linear infinite; -moz-animation: animatedBackground 20s linear infinite; -webkit-animation: animatedBackground 20s linear infinite;}

@keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }
    @-webkit-keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }
    @-ms-keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }
    @-moz-keyframes animatedBackground {
      from { background-position: 0 0; }
      to { background-position: 100% 0; }
    }


/*--toTopFromBottom--*/

@-webkit-keyframes toTopFromBottom {
    49% {-webkit-transform: translateY(-100%);}
    50% {opacity: 0; -webkit-transform: translateY(100%);}
    51% {opacity: 1;}
}
@-moz-keyframes toTopFromBottom {
    49% {-moz-transform: translateY(-100%);}
    50% {opacity: 0; -moz-transform: translateY(100%);}
    51% {opacity: 1;}
}
@keyframes toTopFromBottom {
    49% {transform: translateY(-100%);}
    50% {opacity: 0; transform: translateY(100%);}
    51% {opacity: 1;}
}



/*--blink--*/

.blinkblink {animation-name: blinkblink; animation-duration: 5000ms; animation-iteration-count: infinite; animation-timing-function: linear;}


@keyframes blinkblink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes blinkblink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes blinkblink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*--pulse--*/

.pulse{animation: pulse 1.2s infinite;}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}


/*--videomodule--*/

@-webkit-keyframes videomodule-anim {
  0% {
    -webkit-transform: scale(0.68);
            transform: scale(0.68); }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

@keyframes videomodule-anim {
  0% {
    -webkit-transform: scale(0.68);
            transform: scale(0.68); }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }


/*--rotateme--*/

.rotateme{
    animation-name: rotateme;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

  -webkit-animation-name: rotateme;
    -webkit-animation-duration: 40s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

  -moz-animation-name: rotateme;
    -moz-animation-duration: 40s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

  -ms-animation-name: rotateme;
    -ms-animation-duration: 40s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

  -o-animation-name: rotateme;
    -o-animation-duration: 40s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(360deg);
    }
}

/*--pulse2--*/

@keyframes pulse {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}


/*--move-forever--*/

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--zoom-fade--*/
.zoom-fade{
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

  -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

  -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

  -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

  -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

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

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

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

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

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

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


@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 50% 50% 50% 70% / 50% 80% 70% 60%;
    box-shadow: -15px -15px 50px rgba(0,0,0,0.2);
  }
  50% {
    border-radius: 70% 50% 50% 70% / 50% 40% 70% 60%;
  }
  75% {
    border-radius: 50% 30% 50% 70% / 50% 50% 70% 60%;
    box-shadow: 5px -15px 50px rgba(0,0,0,0.2);
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes da-pulse {
  0%, 100% {
    transform: scale(1.25);
    opacity: 0;
  }
  48%, 52% {
    transform: scale(1);
    opacity: 1;
  }
}

/*--rotation--*/

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--rotation--*/

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
@-webkit-keyframes anti-rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-359deg);
    }
}


@keyframes featured-morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 50% 50% 50% 70% / 50% 80% 70% 60%;
    box-shadow: -15px -15px 50px rgba(0,0,0,0.050);
  }
  50% {
    border-radius: 70% 50% 50% 70% / 50% 40% 70% 60%;
  }
  75% {
    border-radius: 50% 30% 50% 70% / 50% 50% 70% 60%;
    box-shadow: 5px -15px 50px rgba(0,0,0,0.050);
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
  	padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;}
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

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

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

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

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

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

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

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

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

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

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

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

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

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

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

.owl-carousel.no-pb .owl-stage-outer{padding-bottom: 0;}

.owl-carousel .owl-controls .owl-dot { display: inline-block;}
.owl-carousel .owl-dots {width: 100%; display: inline-block; position: absolute; line-height: 0; bottom:0; left: 50%; transform: translateX(-50%); cursor: pointer; text-align: center; }
.owl-carousel .owl-dots .owl-dot span { background: #0d092c; border-radius: 2px; display: inline-block; width:10px; height:8px; margin: 0px 3px; transition:all 0.5s ease-in-out; -webkit-transition:all 0.5s ease-in-out; -o-transition:all 0.5s ease-in-out; -moz-transition:all 0.5s ease-in-out; -ms-transition:all 0.5s ease-in-out; cursor: pointer; }
.dark-bg .owl-carousel .owl-dots .owl-dot span{background: #ffffff}
.owl-carousel .owl-dots .owl-dot:hover span, .owl-carousel .owl-dots .owl-dot.active span{background:#03d665; width: 22px;}


.owl-carousel .owl-nav{display:block;position:absolute;text-indent:inherit; width: 100%; text-align: center; bottom:-20px;transform:translateX(-50%);-webkit-transform:translateX(-50%);-o-transform:translateX(-50%);-ms-transform:translateX(-50%);-moz-transform:translateX(-50%);left:50%;cursor:pointer;z-index:999;}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {background: #ffffff; border-radius: 30px; color: #0d092c; cursor: pointer; display: inline-block; font-size: 34px; line-height: 0; margin: 0 10px; padding: 10px 60px !important;}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover{background-color: rgb(0,91,234); background-color: linear-gradient(90deg, rgba(0,91,234,1) 0%, rgba(37,117,252,1) 80%); color:#fff; border-color: #03d665;}

.theme-bg .owl-carousel .owl-nav button.owl-prev,
.theme-bg .owl-carousel .owl-nav button.owl-next{background:#ffffff;color:#03d665;}
.theme-bg .owl-carousel .owl-nav button.owl-prev:hover,
.theme-bg .owl-carousel .owl-nav button.owl-next:hover{background:#0d092c;color:#fff;}

.dark-bg .owl-carousel .owl-nav button.owl-prev:hover,
.dark-bg .owl-carousel .owl-nav button.owl-next:hover{background:#ffffff;color:#03d665;}

.owl-carousel.owl-center .owl-stage-outer{padding-top: 30px;}
.owl-carousel .owl-item.center{transform: scale(1.1); z-index: 99;}

.owl-carousel.owl-nav2 .owl-nav {width: auto; text-align: left; bottom: 10%; transform: inherit; left: -60%;}



/* ------------------------
    General
------------------------*/

a:focus {
  text-decoration: none !important;
}
a:focus,
a:hover {
  color: #f1aa00;
  text-decoration: none !important;
}
a,
button,
input {
  outline: medium none !important;
  color: #D0993C;
}
*::-moz-selection {
  /* background: #E3C66A; */
  /* color: #fff;
  text-shadow: none; */
}
::-moz-selection {
  /* background: #E3C66A; */
  /* color: #fff;
  text-shadow: none; */
}
::selection {
  /* background: #E3C66A; */
  /* color: #fff; */
  /* text-shadow: none; */
}


/* ------------------------
    Transition
------------------------*/

a,
i,
.btn,
.btn span,
button,
.btn::before,
.btn::after,
.testimonial.style-1 .testimonial-img:before,
.btn span::before,
.btn span::after,
img,
span,
.btn-iconic::before,
.dropdown-item,
.team-member.style-1 .team-images,
.social-icons li:hover a,
.owl-item,
.featured-item.style-3:before,
.featured-item.style-3:after,
.featured-item,
.featured-icon,
.featured-item .featured-icon i,
.price-table,
.post,
.post .post-image::before,
.post .post-image::after,
.post .post-desc,
.team-description,
.team-social-icon,
.team-member.style-3:before,
.team-member.style-3:after,
.timeline-content:before,
.timeline-content:after {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}


/* ------------------------
    Transform translate
------------------------*/

/*--translate-X--*/

.transform-x,
.step-num,
.testimonial.style-2 .testimonial-quote {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}
/*--translate-Y--*/

.transform-y,
.align-center,
.image-column,
.effect-img,
.post.style-2 .post-categories,
.widget-searchbox .search-btn,
.bg-img {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
/*--translate-XY--*/

.clear-loader,
.video-btn-pos,
.team-member.style-1 .team-social-icon {
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
}
/*--translate-X-5--*/

.navbar-nav .dropdown-menu .nav-link:focus,
.navbar-nav .dropdown-menu .nav-link:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -moz-transform: translateX(5px);
}


/* ------------------------
    Box Shadow
------------------------*/

.box-shadow,
.dropdown-menu,
#header-wrap.fixed-header,
.navbar-nav ul,
.header-3 .navbar,
.btn,
.post .post-image,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
#mc-form input[type="email"],
.featured-item:hover,
.featured-item.style-2,
.post,
.post.style-3 .post-image,
.post.style-3:hover,
.post.style-4 .post-desc,
.post-queto,
.media-holder .media-body,
.comment-reply a,
.clients-logo,
.featured-item.style-5,
.featured-item.style-4,
.video-box,
.portfolio-item,
.popup-img,
.portfolio-item:hover .portfolio-title,
.portfolio-filter button.is-checked,
.portfolio-filter button:hover,
.contact-inner,
.contact-media i,
.job-list,
.client-logo,
.contact-media.style-2 li,
.step-icon,
.price-table,
.post-categories li,
.post.style-3 .post-desc,
.counter.style-2,
.counter.style-4,
.testimonial.style-1 .testimonial-img:before,
.testimonial.style-2,
.testimonial.style-2 .testimonial-img img,
.testimonial.style-3,
.testimonial.style-3 .testimonial-img img,
.testimonial.style-1 .testimonial-quote,
.team-member.style-1 .team-images,
.team-member.style-2,
.team-member.style-4 .team-images,
.team-cntct,
.team-cntct .team-icon li i {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
}
.featured-item.style-2:hover,
.featured-item.style-3,
.featured-item.style-5:hover,
.job-search,
.price-table:hover,
.price-table.active {
  -webkit-box-shadow: 0px 20px 50px 0px rgba(153, 153, 153, 0.5);
  -moz-box-shadow: 0px 20px 50px 0px rgba(153, 153, 153, 0.5);
  box-shadow: 0px 20px 50px 0px rgba(153, 153, 153, 0.5);
}


/* ------------------------
    Custom Margin
------------------------*/

.custom-mt-5 {
  z-index: 99;
  position: relative;
  margin-top: -50px;
}
.custom-mt-7 {
  z-index: 99;
  position: relative;
  margin-top: -70px;
}
.custom-mt-10 {
  z-index: 99;
  position: relative;
  margin-top: -100px;
}
.custom-mt-12 {
  z-index: 99;
  position: relative;
  margin-top: -120px;
}
.custom-mt-15 {
  z-index: 99;
  position: relative;
  margin-top: -150px;
}
.custom-mt-20 {
  z-index: 99;
  position: relative;
  margin-top: -200px;
}
.custom-mt-25 {
  z-index: 99;
  position: relative;
  margin-top: -250px;
}
.custom-mt-30 {
  z-index: 99;
  position: relative;
  margin-top: -300px;
}


/* ------------------------
    Custom Padding
------------------------*/

.custom-pt-1 {
  padding-top: 180px;
}
.custom-pb-1 {
  padding-bottom: 180px;
}
.custom-pt-2 {
  padding-top: 250px;
}
.custom-pb-2 {
  padding-bottom: 250px;
}


/* ------------------------
    Padding
------------------------*/

.px-10 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.px-15 {
  padding-left: 150px !important;
  padding-right: 150px !important;
}
.px-20 {
  padding-left: 200px !important;
  padding-right: 200px !important;
}
.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.py-15 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
.py-20 {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}
.pl-10 {
  padding-left: 100px !important;
}
.pr-10 {
  padding-right: 100px !important;
}
.pt-8 {
  padding-top: 80px !important;
}
.pt-10 {
  padding-top: 100px !important;
}
.pt-15 {
  padding-top: 150px !important;
}
.pt-20 {
  padding-top: 200px !important;
}
.pb-10 {
  padding-bottom: 100px !important;
}
.pb-15 {
  padding-bottom: 150px !important;
}
.pb-17 {
  padding-bottom: 170px !important;
}
.pb-20 {
  padding-bottom: 200px !important;
}
.pb-30 {
  padding-bottom: 300px !important;
}

/* ------------------------
    Margin
------------------------*/

.mt-8 {
  margin-top: 80px !important;
}
.mt-10 {
  margin-top: 100px !important;
}
.mt-15 {
  margin-top: 150px !important;
}
.my-8 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.my-10 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
.my-15 {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}
.my-20 {
  margin-top: 200px !important;
  margin-bottom: 200px !important;
}


/* ------------------------
    Pre Loader
------------------------*/

#ht-preloader {
  background: #ffffff;
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden !important;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.clear-loader {
  z-index: 999;
  box-sizing: border-box;
  display: inline-block;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
}
.loader {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 200px;
  border: 5px solid transparent;
  border-top-color: #7329c2;
  border-bottom-color: #7329c2;
  border-radius: 50%;
  animation: loading 5s ease-in-out 0s infinite;
}
.loader-div {
  display: block;
  margin: 50px auto;
  width: 100px;
  height: 100px;
  border: 5px solid transparent;
  border-right-color: #03d665;
  border-left-color: #03d665;
  border-radius: 50%;
  line-height: 90px;
  color: #122126;
  animation: loading1 5s ease-in-out 0s infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: scale(0.5, 0.5);
    border-top-color: #03d665;
    border-bottom-color: #03d665;
  }
  75% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes loading1 {
  0% {
    transform: rotate(360deg);
  }
  25% {
    transform: rotate(-90deg);
  }
  50% {
    transform: scale(2, 2);
  }
  75% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


/* ------------------------
    Row Eq Height
------------------------*/

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.row-eq-height &gt;[class*='col-'] &gt; div {
  height: 100%;
}
.row-eq-height .align-item-middle &gt; div {
  height: auto;
}


/* ------------------------
    Background Overlay
------------------------*/

[data-overlay] {
  position: relative;
  z-index: 0;
}
[data-overlay]:before,
.slide-overlay:before {
  position: absolute;
  content: '';
  background-color: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
[data-overlay].white-overlay:before {
  background-color: #fff;
}
[data-overlay].theme-overlay:before {
  background-color: #03d665;
}
[data-overlay].grediant-overlay:before {
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 15%, rgba(115, 41, 194, 1) 100%);
}
[data-overlay="1"]:before {
  opacity: 0.1;
}
[data-overlay="2"]:before {
  opacity: 0.2;
}
[data-overlay="3"]:before {
  opacity: 0.3;
}
[data-overlay="4"]:before {
  opacity: 0.4;
}
[data-overlay="5"]:before {
  opacity: 0.5;
}
[data-overlay="6"]:before {
  opacity: 0.6;
}
[data-overlay="7"]:before {
  opacity: 0.7;
}
[data-overlay="8"]:before {
  opacity: 0.8;
}
[data-overlay="9"]:before {
  opacity: 0.9;
}
[data-overlay="10"]:before {
  opacity: 1;
}
[data-overlay="0"]:before {
  opacity: 0;
}


/* ------------------------
    Scroll to Top
------------------------*/

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transform: translate3d(0, 200%, 0);
  -ms-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
.scroll-top a,
.scroll-top a:visited {
    display: block;
    height: 56px;
    width: 56px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.scroll-top a:hover {
    opacity: .8;
    transition: .3s;
}
.scroll-top.scroll-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}


/* ------------------------
    Subscribe Form
------------------------*/

.subscribe-form {
  margin: 0;
  padding: 0;
  position: relative;
  border: 3px solid rgba(3, 214, 101, 0.1);
  border-radius: 5px;
  padding: 15px;
}
#mc-form {
  width: 100%;
  position: relative;
}
#mc-form input[type="email"] {
  width: 100%;
  border: none;
  background: #ffffff;
  border-radius: 7px;
  color: #122126;
  font-size: 14px;
  padding: 0 20px;
  height: 60px;
}
#mc-form input[type="email"]::-webkit-input-placeholder {
  color: #122126;
}
#mc-form input[type="email"]::-moz-placeholder {
  color: #122126;
}
#mc-form input[type="email"]:-ms-input-placeholder {
  color: #122126;
}
#mc-form input[type="email"].placeholder {
  color: #122126 !important;
}
#mc-form .btn {
  padding: 0 50px;
  height: 60px;
  border-radius: 7px;
  margin-left: 20px;
  overflow: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.subscribe-form.style-2 {
  border: none;
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 15%, rgba(115, 41, 194, 1) 100%);
}
.subscribe-form.style-2 #mc-form input[type="email"] {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.subscribe-form.style-2 #mc-form input[type="email"]::-webkit-input-placeholder {
  color: #ffffff;
}
.subscribe-form.style-2 #mc-form input[type="email"]::-moz-placeholder {
  color: #ffffff;
}
.subscribe-form.style-2 #mc-form input[type="email"]:-ms-input-placeholder {
  color: #ffffff;
}
.subscribe-form.style-2 #mc-form input[type="email"].placeholder {
  color: #ffffff !important;
}


/* ------------------------
    Header
------------------------*/

.logo img {
  height: 70px;
}
#header-wrap.fixed-header .logo img {
  height: 65px;
}
.l-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1200;
}
#header-wrap {
  padding: 10px 0;
  position: relative;
}
#header-wrap.fixed-header {
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  background: #ffffff;
}
/*--navigation--*/

.navbar {
  padding: 0;
}
.navbar-nav .nav-item.dropdown .dropdown-menu {
  padding: 0;
  background: #ffffff;
  top: 120%;
  border: none;
  margin-top: 0;
}
.navbar-brand {
  margin-right: 0;
}
.nav-item.dropdown .dropdown-menu a {
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  position: relative;
  background: none;
  color: #122126;
  font-size: 14px;
  font-weight: 400;
}
.nav-item.dropdown .dropdown-menu a:hover {
  color: #03d665;
}
@media (min-width: 991px) {
  .navbar-nav .dropdown-menu {
    min-width: 12em !important;
    max-width: 20em !important;
  }
  .navbar-nav .dropdown &gt; .dropdown-menu {
    opacity: 0;
    position: absolute;
    display: block;
    pointer-events: none;
    background: #ffffff;
  }
  .navbar-nav .dropdown[data-toggle=hover]:hover &gt; .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    top: 100%;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  .navbar-nav .dropdown-submenu[data-toggle=hover]:hover .dropdown-menu {
    top: 0;
  }
  .ml-auto.mr-auto .dropdown-menu {
    left: 0;
    right: auto;
  }
  .ml-auto .dropdown-menu {
    right: 0;
    left: auto;
  }
  .ml-auto .dropdown-menu .dropdown-submenu .dropdown-menu {
    right: 100%;
    left: auto;
  }
  .ml-auto.mr-auto .dropdown-menu .dropdown-submenu .dropdown-menu {
    right: auto;
    left: 100%;
  }
  .nav-link.dropdown-toggle::after {
    border: none;
    background: #0d092c;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    vertical-align: middle;
  }
  .nav-link.dropdown-toggle:hover::after {
    background: #03d665;
  }
  .full-width {
    position: static;
  }
  .navbar-nav .nav-item.dropdown.full-width .dropdown-menu {
    padding: 10px;
    max-width: inherit !important;
    min-width: inherit !important;
    width: 100%;
  }
  .full-width ul li {
    width: calc(100%/3);
    float: left;
  }
  .navbar-nav .dropdown.full-width[data-toggle=hover]:hover &gt; .dropdown-menu {
    top: 90%;
  }
  .navbar-nav .nav-link {
    line-height: 70px;
  }
  .navbar-nav .dropdown-submenu .dropdown-toggle::after {
    border-top: .3em solid transparent;
    border-bottom: .3em solid transparent;
    border-right: none;
    border-left: .3em solid;
    position: absolute;
    right: 1em;
    margin: 0;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-2 .navbar-nav .nav-link {
    color: #311300;
  }
  .header-2 .navbar-nav .nav-link:hover,
  .header-2 .navbar-nav .nav-item .nav-link.active {
    color: #fff;
  }
  .header-2 .nav-link.dropdown-toggle::after {
    background: #ffffff
  }
  .header-2 .nav-link.dropdown-toggle:hover::after {
    background: #122126
  }
  .navbar-expand-lg .navbar-nav {
      width: 1140px;
      justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-submenu .dropdown-menu {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 0;
  }
}
.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
  left: 100%;
  margin: 0;
  right: auto;
  top: 0;
}
.navbar-nav .dropdown-submenu {
  display: block;
  position: relative;
}
.navbar-brand {
  margin-right: 0;
}
.navbar-nav .nav-item {
  margin: 0 15px
}
.navbar-nav .nav-link {
  color: #4d3b17;
  font-weight: 600;
  padding: 0 !important;
  border-radius: 0;
  text-transform: capitalize;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
  color: #03d665;
}
.header-2 #header-wrap {
    border-bottom: 1px solid #ddd;
    background: #CACD06;
}
.header-2 #header-wrap.fixed-header {
  background: #03d665;
  border-bottom: 5px solid #ffffff
}
.header-call h5 {
  font-size: 16px;
  margin-bottom: 0;
  margin-right: 10px;
}
.header-call a:hover {
  color: #7329c2;
}
.header-2 .header-call h5 {
  color: #ffffff;
}
.header-2 .header-call a {
  color: #ffffff;
}
.header-2 .header-call a:hover {
  text-decoration: underline !important;
  text-decoration-style: wavy !important;
}
.header-3 .navbar {
  padding: 10px;
  background: #fff;
  border-radius: 7px;
}
.header-3 #header-wrap.fixed-header .navbar {
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}


/* ------------------------
    Footer
------------------------*/

.footer {
  padding: 80px 0;
  position: relative;
}
.primary-footer {
  position: relative;
  z-index: 99;
  font-size: 16px;
  color: #ffffff
}
.secondary-footer {
  color: #636160;
  font-weight: normal;
}
.footer-logo img {
  height: 70px;
}
.footer-cntct {
  padding: 30px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}
.media-icon.list-inline li {
  display: inline-block;
}
.media-icon li {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
}
.media-icon li:last-child {
  margin-bottom: 0;
}
.media-icon li i {
  font-size: 30px;
  color: #ffffff;
  vertical-align: middle;
  line-height: 30px;
}
.media-icon li a {
  color: #ffffff
}
.media-icon li a:hover {
  color: #03d665;
}
.footer-list li {
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
.footer-list li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff
}
.footer-list .list-inline li {
  display: inline-block;
  margin: 0 10px;
}


/* ------------------------
    Page Title
------------------------*/

.page-title {
  display: block;
  position: relative;
  padding: 200px 0 150px;
}
.page-title h1 {
  font-size: 50px;
  color: #122126;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-title p {
  margin-bottom: 0;
  color: #122126;
}
.breadcrumb {
  background: #ffffff;
  display: inline-block;
  margin: 0;
  text-transform: capitalize;
  color: #122126;
  font-weight: 700;
}
.breadcrumb-item {
  display: inline-block;
}
.breadcrumb-item a {
  color: #122126
}
.breadcrumb-item.active,
.breadcrumb-item a:hover {
  color: #03d665;
}
.page-title-pattern {
  bottom: 0;
  position: absolute;
  height: 120%;
  width: 100%;
  opacity: 0.1
}


/* ------------------------
    Side Menu
------------------------*/

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  z-index: 999;
  background: #ffffff;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 0px 5px 0 0px rgba(153, 153, 153, 0.5);
  z-index: 9999;
}
#sidebar.active {
  left: 0;
}
#dismiss {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
}
#sidebar .sidebar-header {
  padding: 60px 20px 20px;
  background: #03d665;
}
#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  color: #636160
}
#sidebar ul li a:hover {
  color: #03d665;
  background: #fff;
}
#sidebar ul li.active &gt; a,
a[aria-expanded="true"],
#sidebar ul li:hover &gt; a {
  color: #fff;
  background: #7329c2;
}
a[data-toggle="collapse"] {
  position: relative;
  color: #ffffff;
}
#sidebar ul li.active a[data-toggle="collapse"] {
  position: relative;
  color: #ffffff;
}
#sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#sidebar ul li ul {
  margin-left: 10px;
}
#sidebar ul li ul li a {
  font-size: 14px;
}
#sidebarCollapse {
  color: #ffffff
}



/* ------------------------
    Section Title
------------------------*/

.title {
  position: relative;
  color: #122126;
  margin-bottom: 0;
}
.dark-bg .title,
.theme-bg .title,
.theme-bg .section-title h6 {
  color: #ffffff
}
.section-title h6 {
  padding: 15px 0 15px 15px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title h2 {
  margin-bottom: 15px;
}
.section-title p {
  margin-bottom: 0;
}
.title span {
  font-weight: 500;
}
.theme-bg .title span {
  color: #ffffff
}
.title-bdr {
  position: relative;
  width: 150px;
  margin-bottom: 40px;
}
.text-center .title-bdr {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
  font-feature-settings: "palt" 1;
}
.left-bdr,
.right-bdr {
  height: 6px;
  width: 60px;
  background-color: #03d665;
  border-radius: 10px;
  position: absolute;
}
.left-bdr {
  left: 0px;
  animation: left 2s infinite;
}
.right-bdr {
  right: 0px;
  animation: right 2s infinite;
}
@keyframes left {
  0%, 50%, 100% {
    width: 60px;
  }
  25% {
    width: 120px;
  }
  75% {
    width: 10px;
  }
}
@keyframes right {
  0%, 50%, 100% {
    width: 60px;
  }
  25% {
    width: 10px;
  }
  75% {
    width: 120px;
  }
}
.theme-bg .left-bdr,
.theme-bg .right-bdr {
  background-color: rgba(255, 255, 255, 0.5);
}


/* ------------------------
    Testimonials
------------------------*/

.testimonial {
  position: relative;
  padding: 30px 30px 30px 0;
}
.owl-carousel .testimonial {
  margin: 15px;
}
.testimonial-content {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-content p {
  font-size: 18px;
  line-height: 34px;
  font-weight: normal;
  margin-bottom: 0;
  color: #122126;
  position: relative;
}
.testimonial .testimonial-caption label {
  margin-bottom: 0;
  font-weight: 500;
  color: #7329c2;
  display: block;
}
.testimonial .testimonial-caption h5 {
  color: #03d665;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}
.testimonial-caption {
  position: relative;
  margin-top: 20px;
  display: inline-block;
}
.testimonial .testimonial-img img {
  border-radius: 50%;
}
.testimonial-carousel .controls {
  padding: 0;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  position: relative;
}
.testimonial-carousel .controls li {
  position: relative;
  margin: 0 2%;
  border-radius: 50%;
  width: 46%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
}
.testimonial-carousel .controls li a {
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.testimonial-carousel .controls li:last-child {
  float: none;
  margin: 0 auto;
}
.testimonial-carousel .controls li img {
  width: 100%;
  height: 100%;
}

.testimonial-1 .carousel-inner {
  z-index: 9;
}
.testimonial-carousel.testimonial-1 .controls {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}
.testimonial-carousel.testimonial-1 .controls li {
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  z-index: 99;
  opacity: 0.6;
  width: 100px;
  height: 100px;
  margin: inherit;
  float: none;
}
.testimonial-carousel.testimonial-1 .controls li.active {
  opacity: 1;
  animation: inherit;
}
.testimonial-1 .controls li:nth-child(1) {
  left: 40%;
  top: 0%;
}
.testimonial-1 .controls li:nth-child(2) {
  right: 10%;
  top: 0%;
}
.testimonial-1 .controls li:nth-child(3) {
  right: 10%;
  bottom: 10%;
}
.testimonial.style-2 {
  background: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  margin-right: 50px;
  border-radius: 7px;
}
.testimonial.style-2 .testimonial-img {
  width: 40%;
}
.testimonial.style-2 .testimonial-img img {
  border-radius: 7px;
  box-shadow: none;
}
.testimonial.style-2 .testimonial-content {
  text-align: center;
  padding: 50px 100px 10px;
  width: 60%;
}
.testimonial.style-2::before {
  content: "";
  background: rgba(3, 214, 101, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  border-radius: 7px;
}
.testimonial.style-2 .testimonial-quote {
  color: rgba(115, 41, 194, 0.1);
  font-size: 100px;
  line-height: 100px;
  position: absolute;
  top: 0;
  left: 50%;
}


/* ------------------------
    Featured Box
------------------------*/

.featured-item {
  padding: 40px 30px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  z-index: 9;
}
.owl-carousel .featured-item {
  margin: 20px;
}
.featured-item .featured-icon {
  display: inline-block;
  position: relative;
}
.featured-desc p {
  margin-bottom: 0;
}
.featured-title h5 {
  margin: 30px 0 20px;
  text-transform: capitalize;
  font-size: 20px;
}
.dark-bg .featured-title h5,
.dark-bg .featured-desc,
.theme-bg .featured-title h5,
.theme-bg .featured-desc,
.theme-bg .featured-icon i {
  color: #ffffff
}
.featured-item .featured-icon i {
  color: #03d665;
  display: inline-block;
  font-size: 50px;
  line-height: 40px;
}
.featured-item.style-2 {
  padding: 50px;
  background: #ffffff
}
.bd-color-1 {
  stroke: #03d665;
}
.bd-color-2 {
  stroke: #7329c2;
}
.featured-item.style-3 {
  padding-left: 90px;
  background: #ffffff
}
.featured-item.style-3 .featured-icon {
  position: absolute;
  left: 30px;
  top: 40px;
}
.featured-item.style-3 .featured-title h5 {
  margin-top: 0;
}
.featured-item.style-3:hover {
  background: #7329c2
}
.featured-item.style-3:hover h5,
.featured-item.style-3:hover,
.featured-item.style-3:hover i {
  color: #ffffff
}
.featured-item.style-3::before,
.featured-item.style-3::after {
  content: '';
  position: absolute;
  top: 50px;
  left: -5px;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 190px solid rgba(255, 255, 255, 0.050);
  z-index: 1;
}
.featured-item.style-3::after {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.featured-item.style-3:hover::before {
  opacity: 1;
  -webkit-transform: translate(0px, -70px);
  transform: translate(0px, -70px);
}
.featured-item.style-3:hover::after {
  opacity: 1;
  -webkit-transform: translate(0px, -50px);
  transform: translate(0px, -50px);
}
.dark-bg .featured-item.style-3 {
  background: none;
  box-shadow: none;
}
.dark-bg .featured-item.style-3:hover {
  background: #7329c2
}
.featured-item.style-4 {
  background: #ffffff
}
.featured-item.style-4:before {
  animation: featured-morphing 10s infinite;
  content: "";
  position: absolute;
  left: -25%;
  bottom: -20%;
  background: rgba(255, 255, 255, 0.080);
  height: 60%;
  width: 150%;
}
.featured-item.style-4 .featured-icon {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
}
.featured-item.style-4 .featured-icon i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(-50%);
}
.featured-item.style-4 .featured-icon:before,
.featured-item.style-4 .featured-icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0 solid rgba(255, 255, 255, 0.050);
  border-radius: 100%;
  animation: da-pulse 1.5s ease-in-out 0s infinite;
}
.featured-item.style-4 .featured-icon:before {
  background: rgba(3, 214, 101, 0.2);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.featured-item.style-4 .featured-icon:after {
  border-color: rgba(3, 214, 101, 0.050);
  border-width: 5px;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}
.featured-item.style-4:hover {
  background: #03d665
}
.featured-item.style-4:hover .featured-icon:before {
  background: rgba(255, 255, 255, 0.2);
}
.featured-item.style-4:hover .featured-icon:after {
  border-color: rgba(255, 255, 255, 0.050);
}
.featured-item.style-4:hover .featured-icon i,
.featured-item.style-4:hover h5,
.featured-item.style-4:hover {
  color: #ffffff
}
.featured-item.style-5 {
  overflow: inherit;
  padding-top: 50px;
  background: #ffffff;
  margin-top: 50px;
  text-align: center;
}
.featured-item.style-5 .featured-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: -50px;
  margin-left: -50px;
  line-height: 130px;
  text-align: center;
}
.featured-item.style-5 .featured-icon i {
  color: #ffffff;
}
.featured-item.style-5 .featured-icon:before {
  width: 100%;
  height: 100%;
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 15%, rgba(115, 41, 194, 1) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
  animation: morphing 10s infinite;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}


/* ------------------------
    Button
------------------------*/

.btn {
  padding: 12px 25px;
  font-weight: 500;
  background: none;
  color: #122126;
  overflow: hidden;
  border-radius: 7px;
  border: none;
  position: relative;
  z-index: 9;
}
.btn-sm {
  padding: 10px 20px;
}
.dark-bg .btn,
.theme-bg .btn {
  color: #ffffff;
}
.btn.focus,
.btn:focus {
  box-shadow: none;
}
.btn:hover {
  color: #fff;
}
.btn.btn-theme {
  background: #03d665;
  color: #ffffff;
}
.btn.btn-theme:hover {
  background: #7329c2;
}
.btn.btn-dark {
  background: #0d092c;
  color: #ffffff;
}
.btn.btn-border {
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}
.dark-bg .btn.btn-border,
.theme-bg .btn.btn-border {
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn.btn-circle {
  border-radius: 30px;
}
.btn.btn-white {
  background: #ffffff;
  color: #122126
}
.btn.btn-white.btn-border {
  border-color: #ffffff;
  background: none;
  color: #ffffff;
}
.btn.btn-white:hover {
  background: #ffffff;
  color: #ffffff;
}
.btn + .btn {
  margin-left: 10px;
}
.btn-simple {
  color: #122126;
  padding: 0;
  background: none !important;
  box-shadow: none;
  display: inline-block;
}
.btn.btn-simple::before {
  padding: 0;
}
.dark-bg .btn-simple,
.theme-bg .btn-simple {
  color: #ffffff;
}
.btn-simple:hover {
  color: #7329c2;
  box-shadow: none;
  background: none;
}
.theme-bg .btn-simple:hover {
  color: #122126;
}
.btn-iconic {
  position: relative;
  font-size: 30px;
  display: inline-block;
  padding-left: 0;
}
.btn-iconic::before {
  content: "";
  background: #7329c2;
  border-radius: 2px;
  height: 20px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  z-index: -1
}
.btn-iconic:hover {
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
}
.btn-iconic:hover:before {
  width: 100%;
}
.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
  content: '';
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background-color: #7329c2;
  z-index: -1;
}
.btn span::before,
.btn span::after {
  top: auto;
  bottom: 0;
}
.btn span::after {
  left: 75%;
}
.btn span::before {
  left: 25%;
}
.btn::before {
  left: 0;
}
.btn::after {
  left: 50%;
}
.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
  height: 100%;
}



/* ------------------------
    General
------------------------*/


 body {
  font-size: 14px;
  line-height: 1.8;
  color: #4D3B17;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  text-align: justify;
  font-feature-settings: "palt" 1;
}


/* ------------------------
    Typography
------------------------*/

h1,
h2,
h4,
h5,
h6 {
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: capitalize;
  letter-spacing: 2px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 65px;
  font-style: normal;
  line-height: 75px;
  font-weight: 400;
  text-transform: capitalize;
  color: #122126;
  letter-spacing: 0;
}
h2 {
  font-size: 50px;
  font-style: normal;
  line-height: 60px;
  font-weight: 400;
  color: #122126;
  text-transform: capitalize;
  margin-bottom: 10px;
  position: relative;
}
h3 {
  font-size: 30px;
  font-style: normal;
  line-height: 40px;
  font-weight: 500;
  color: #122126;
}
h4 {
  font-size: 24px;
  font-style: normal;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 34px;
  color: #122126;
}
h5 {
  font-size: 20px;
  font-style: normal;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 26px;
  color: #122126;
}
h6 {
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  margin-bottom: 10px;
  color: #122126;
}
ul {
  margin: 0px;
  padding: 0px;
}
u {
  text-decoration-style: wavy;
}


/* ------------------------
    Helper class
------------------------*/

p {
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}
.lead {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}
.o-hidden {
  overflow: hidden;
}
.o-x-hidden {
  overflow-x: hidden;
}
.img-center {
  display: inline-block !important;
  max-width: 100%;
}
.pos-r {
  position: relative;
}
.z-index-0 {
  z-index: 0;
  position: relative;
}
.z-index-1 {
  z-index: 1;
  position: relative;
}
h1 span {
  color: #03d665;
}
section {
  padding: 100px 0;
}
.section-title {
  margin-bottom: 50px;
  position: relative;
}
.section-title p {
  font-size: 16px;
}
.align-item-middle {
  display: -webkit-flex;
  /* Safari */
  -webkit-align-items: center;
  /* Safari 7.0+ */
  display: flex;
  align-items: center;
}
.align-item-middle &gt; div {
  width: 100%;
}
.la {
  line-height: inherit;
}
.font-w-3 {
  font-weight: 300;
}
.font-w-4 {
  font-weight: 400;
}
.font-w-5 {
  font-weight: 500;
}
.font-w-6 {
  font-weight: 600;
}
.font-w-7 {
  font-weight: 700;
}
.font-w-8 {
  font-weight: 800;
}
.font-w-9 {
  font-weight: 900;
}
.line-h-2 {
  line-height: 1.6;
}
.line-h-3 {
  line-height: 1.7;
}
.line-h-4 {
  line-height: 1.8;
}
.line-h-5 {
  line-height: 1.9;
}
.letter-space-1 {
  letter-spacing: 5px;
}
.letter-space-2 {
  letter-spacing: 10px;
}
.letter-space-3 {
  letter-spacing: 15px;
}


/* ------------------------
    Text color
------------------------*/

.text-theme {
  color: #03d665;
}
.text-black {
  color: #122126 !important;
}
.text-grey {
  color: #999999;
}
.text-rgba {
  color: rgba(255, 255, 255, 0.8);
}


/* ------------------------
    Background color
------------------------*/

.white-bg {
  background-color: #ffffff !important;
}
.dark-bg {
  background-color: #0d092c;
}
.grey-bg {
  background-color: #f8fcff;
}
.theme-bg {
  background-color: #03d665;
}
.transparent-bg {
  background-color: inherit !important;
}
.grediant-bg {
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
}


/* ------------------------
    Border Radius
------------------------*/

.radius {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.radius-0 {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.radius-1 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.radius-2 {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.radius-3 {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.radius-4 {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.radius-lb {
  -webkit-border-bottom-left-radius: 150px;
  -moz-border-bottom-left-radius: 150px;
  border-bottom-left-radius: 150px;
}
.radius-rt {
  -webkit-border-top-right-radius: 150px;
  -moz-border-top-right-radius: 150px;
  border-top-right-radius: 150px;
}


/* ------------------------
    Banner
------------------------*/

.fullscreen-banner {
  position: relative;
}
[data-bg-img] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.align-center {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 9;
}
.align-end {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 9;
}
.fullscreen-banner .owl-carousel,
.fullscreen-banner .owl-stage-outer,
.fullscreen-banner .owl-stage,
.fullscreen-banner .owl-item {
  height: 100%;
}
.fullscreen-banner .img-side {
  top: 50%;
  transform: translateY(-50%);
  left: -5%;
  height: auto;
}


/* -------------------------------
   Background Position &amp; Size
-------------------------------*/

.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}
.bg-pos-l {
  background-position: left;
}
.bg-pos-r {
  background-position: right;
}
.bg-pos-rt {
  background-position: right top;
}
.bg-pos-lt {
  background-position: left top;
}
.bg-pos-rb {
  background-position: right bottom;
}
.bg-pos-lb {
  background-position: left bottom;
}
.bg-repeat {
  background-repeat: repeat;
}


/* ------------------------
    Countdown
------------------------*/

.countdown {
  margin: 50px 0;
  width: 100%;
}
.countdown &gt; li {
  font-weight: 700;
  list-style-type: none;
}
.countdown &gt; li span {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  display: inline-block;
  color: #03d665;
}
.countdown &gt; li p {
  font-size: 20px;
  display: block;
  line-height: 30px;
  margin-bottom: 0;
  color: #122126;
}
.coming-soon .subscribe-form {
  margin: 0 auto;
}
.coming-soon-pattern {
  position: absolute;
  right: -20%;
}
.countdown.style-2 &gt; li span {
  color: #ffffff
}


/* ------------------------
    Terms and Conditions
------------------------*/

.terms-and-conditions p {
  margin-bottom: 25px;
}
.terms-and-conditions ul.list {
  margin-bottom: 20px;
  display: block;
}
.terms-and-conditions ul.list li i {
  padding-right: 12px;
  font-size: 15px;
}


/* ------------------------
    Privacy Policy
------------------------*/

.privacy-policy p {
  margin-bottom: 25px;
}
.privacy-policy ul.list {
  margin-bottom: 20px;
  display: block;
}
.privacy-policy ul.list li i {
  padding-right: 12px;
  font-size: 15px;
}


/* ------------------------
    Clients Logo
------------------------*/

.client-logo {
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.client-logo.style-2 {
  background: none;
  padding: 0;
  box-shadow: none;
}


/* ------------------------
    Contact
------------------------*/

.contact-inner {
  padding: 50px;
  border-radius: 5px;
}
.contact-media i {
  line-height: 60px;
  font-size: 30px;
  color: #03d665;
  vertical-align: middle;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
}
.contact-media h5 {
  font-size: 20px;
  color: #03d665;
  font-weight: normal;
  display: block;
  margin-bottom: 10px;
}
.contact-media p {
  margin: 0;
  line-height: 24px;
  color: #122126;
}
.contact-media a {
  color: #122126;
}
.contact-media a:hover {
  color: #03d665;
}
.contact-media.style-2 li {
  border-radius: 5px;
  min-height: 185px;
  width: calc((100% - 150px) / 3);
  float: left;
  display: block;
  text-align: center;
  background: #ffffff;
  padding: 50px;
  position: relative;
  margin: 0 30px;
}
.contact-media.style-2 li:last-child {
  margin-right: 0;
}
.contact-media.style-2 i {
  margin-right: 0;
  position: absolute;
  left: -30px;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
label {
  font-size: 14px;
  color: #122126
}
.form-control {
  height: 50px;
  border-radius: 0;
  font-size: 13px;
  color: #122126;
  background: none;
  border: none;
  border-bottom: 2px solid #03d665;
}
.theme-bg .form-control,
.dark-bg .form-control {
  background: none;
  border-bottom-color: #ffffff;
}
.dark-bg .form-control,
.theme-bg .form-control {
  color: #ffffff;
}
.grey-bg .form-control {
  background: #ffffff
}
textarea.form-control {
  height: 150px;
}
.form-control:focus {
  box-shadow: none;
  background: none;
  border-color: #7329c2;
}
.theme-bg .form-control:focus {
  border-color: #03d665;
}
select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 50px !important;
}
#map {
  width: 100%;
  height: 100%;
}
iframe {
  width: 100%;
  border: none;
  pointer-events: auto;
}
.iframe-h {
  height: 500px !important;
}
.iframe-h-2 {
  height: 600px !important;
}
.help-block.with-errors {
  position: absolute;
  color: red;
  right: 15px;
  font-size: 10px;
  line-height: 14px;
}
.form-control::-webkit-input-placeholder {
  color: #555;
}
.form-control::-moz-placeholder {
  color: #555;
}
.form-control:-ms-input-placeholder {
  color: #555;
}
.form-control:-moz-placeholder {
  color: #555;
}
.dark-bg .form-control::-webkit-input-placeholder,
.theme-bg .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.dark-bg .form-control::-moz-placeholder,
.theme-bg .form-control::-moz-placeholder {
  color: #ffffff;
}
.dark-bg .form-control:-ms-input-placeholder,
.theme-bg .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.dark-bg .form-control:-moz-placeholder,
.theme-bg .form-control:-moz-placeholder {
  color: #ffffff;
}
.login-2 label {
  color: #ffffff
}


/* ------------------------
    Video
------------------------*/

.video-btn {
  position: relative;
  display: inline-block;
}
.video-btn .play-btn {
  font-size: 30px;
  background: #03d665;
  color: #fff;
  line-height: 50px;
  width: 70px;
  height: 70px;
  border: 10px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
  z-index: 9;
  position: relative;
  display: inline-block;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.video-btn-pos {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto !important;
  z-index: 99;
}
.theme-bg .video-btn .play-btn,
.dark-bg .video-btn .play-btn {
  background: #ffffff;
  border-color: #ddd;
  color: #03d665;
}
.html5-video {
  height: 100%;
  left: 0;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
.html5-video video {
  width: 100%;
}
.video-btn .spinner-eff {
  left: 50%;
  top: 50%;
}


/* ------------------------
    Side Background
------------------------*/

.img-side img {
  max-width: 100%
}
.img-side.img-right {
  right: 0;
}
.img-side.img-left {
  left: 0;
}
.img-side {
  padding: 0;
  position: absolute!important;
  top: 0px;
  height: 100%;
  overflow: hidden;
  z-index: 9;
}
.image-column {
  position: absolute;
  left: 0px;
  top: 50%;
}
.image-column.right {
  left: inherit;
  right: 0;
}


/* ------------------------
    Error Page
------------------------*/

.error-round {
  position: absolute;
  width: 80%;
  left: 43%;
  transform: translateX(-50%);
  margin-left: -35%;
  top: -50px;
  z-index: -1
}
.error-page-2 h1 {
  font-size: 200px;
  line-height: 200px;
  color: #ffffff;
}
.error-page-2 h1 span {
  color: #ffffff;
}
.error-page-2 h1 div {
  display: inline-block;
}


/* ------------------------
    List Icon
------------------------*/

.list-icon li {
  position: relative;
  padding-left: 30px;
}
.list-icon li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #03d665;
  font-size: 22px;
  line-height: 20px;
}
.theme-bg .list-icon li i {
  color: #ffffff;
}
.list-icon-2 li {
  padding-left: 20px;
  position: relative;
}
.list-icon-2 li:before {
  content: "";
  background: #03d665;
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 2px;
  border-radius: 4px;
}
.custom-li {
  display: inline-block;
}
.custom-li li {
  float: left;
  margin-bottom: 20px;
  width: calc(100% / 2);
}


/* ------------------------
    How It Work
------------------------*/

.step-num-box {
  position: relative;
}
.step-desc {
  position: relative;
  padding-top: 30px;
}
.step-num {
  color: #7329c2;
  display: inline-block;
  font-size: 100px;
  opacity: 0.1;
  font-weight: 600;
  left: 50%;
  line-height: 100px;
  position: absolute;
  text-align: center;
  top: 0;
}
.step-desc h4{
  font-size: 22px;
}
.theme-bg .work-process h4,
.theme-bg .work-process p {
  color: #ffffff;
}
.step-icon {
  margin: 0 auto 30px;
  background: #ffffff;
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 50%;
  line-height: 100px;
  font-size: 40px;
  text-align: center;
  color: #03d665;
}
.work-process .arrow {
  position: absolute;
  margin: 0 auto;
  width: 20px;
  top: -40px;
  right: 0;
  transform: rotate(-80deg);
}
.work-process .arrow .curve {
  border: 2px dashed #03d665;
  border-color: transparent transparent transparent #03d665;
  height: 230px;
  width: 150px;
  border-radius: 230px 0 0 150px;
}
.work-process .arrow .point {
  position: absolute;
  left: 34px;
  top: 212px;
}
.work-process .arrow .point:before,
.work-process .arrow .point:after {
  border: 1px solid #7329c2;
  height: 25px;
  content: "";
  position: absolute;
}
.work-process .arrow .point:before {
  top: -11px;
  left: -11px;
  transform: rotate(-74deg);
  -webkit-transform: rotate(-74deg);
  -moz-transform: rotate(-74deg);
  -ms-transform: rotate(-74deg);
}
.work-process .arrow .point:after {
  top: -20px;
  left: 5px;
  transform: rotate(12deg);
  -webkit-transform: rotate(12deg);
  -moz-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
}


/* ------------------------
    Nice Select
------------------------*/

.nice-select {
  -webkit-tap-highlight-color: transparent;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0.75rem;
  border-bottom: 2px solid #f5f5f5;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
}
.dark-bg .nice-select span,
.theme-bg .nice-select span {
  color: #ffffff;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #03d665;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.theme-bg .nice-select:after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  overflow-y: scroll;
  max-height: 300px;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 99;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  color: #122126;
  width: 100%;
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}


/* ------------------------
    Job Page
------------------------*/

.job-search {
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  z-index: 99;
}
.job-search .form-control {
  border: none;
  background: rgba(3, 214, 101, 0.1);
}
.job-list {
  padding: 30px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}
.job-list,
.job-list-left,
.job-list-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job-list-icon {
  margin-right: 50px;
}
.job-list-icon i {
  color: #03d665;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #7329c2;
  border-radius: 5px;
  font-size: 34px
}
.job-list-info li {
  font-size: 13px;
}
.job-list-info i {
  color: #03d665;
  font-size: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.job-list-time span {
  background: rgba(3, 214, 101, 0.1);
  padding: 10px 15px;
  border-radius: 30px;
  display: inline-block;
  color: #122126
}


/* ------------------------
    Shape
------------------------*/
.hero-shape1 {
  position: absolute;
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
  width: 120%;
  height: 120%;
  border-bottom-right-radius: 50%;
  transform: rotate(15deg);
  top: -30%;
  left: -10%;
  border: 30px solid rgba(255, 255, 255, 0.050);
}
.hero-shape4 {
  position: absolute;
  width: 120%;
  height: 140%;
  border-radius: 30px;
  transform: rotate(-15deg);
  top: -40%;
  left: 0;
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
}
.hero-shape3 {
  position: absolute;
  top: -15%;
  right: -15%;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.hero-shape5 {
  position: absolute;
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
  width: 120%;
  height: 120%;
  border-radius: 200px;
  transform: rotate(-35deg);
  top: -50%;
  left: -10%;
}
.hero-shape2 {
  position: absolute;
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
  width: 140%;
  height: 140%;
  border-radius: 0;
  transform: rotate(-35deg);
  top: -50%;
  left: -40%;
}
.hero-shape6 {
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
  overflow: hidden;
  border-top-left-radius: 500px;
  width: 60%;
  display: inline-block;
  position: absolute;
  right: -10%;
  top: 0;
  border-bottom-left-radius: 500px;
  transform: rotate(-35deg);
  height: 60%;
}
.hero-shape7 {
  background: rgb(3, 214, 101);
  background: linear-gradient(58deg, rgba(3, 214, 101, 1) 35%, rgba(115, 41, 194, 1) 100%);
  overflow: hidden;
  border-top-left-radius: 500px;
  width: 50%;
  display: inline-block;
  position: absolute;
  left: -10%;
  top: 0;
  border-bottom-left-radius: 500px;
  transform: rotate(35deg);
  height: 50%;
}


/* ------------------------
    Animation
------------------------*/

.bg-img {
  position: absolute;
  left: -10%;
  width: 50%;
  top: 50%;
}
.bg-img.right {
  left: inherit;
  right: -10%;
}
.image-anim {
  position: relative;
}
.image-anim::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 550px;
  height: 550px;
  border: 50px solid rgba(3, 214, 101, 0.1);
  border-radius: 50%;
  display: inline-block;
  z-index: -1;
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.round-anim {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 700px;
  height: 700px;
  border: 50px solid rgba(3, 214, 101, 0.1);
  border-radius: 50%;
  display: inline-block;
  z-index: -1;
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.round-anim.right {
  right: -10%;
  left: inherit;
}
.round-anim.center {
  left: 50%;
  margin-left: -350px
}

.img-box {
  background: #ffffff;
  position: relative;
  border-radius: 7px;
  margin-left: 5%;
  margin-right: 5%;
}
.img-box img {
  border-radius: 7px;
}
.img-box::before {
  content: "";
  height: 20px;
  width: 110%;
  position: absolute;
  bottom: 0;
  background: #fff;
  left: -5%;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
}
.img-box img {
  width: 100%;
}
.video-box {
  background: #ffffff;
  position: relative;
  border-radius: 7px;
}
.effect-img {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1
}
.text-bg {
  background: rgba(3, 214, 101, 0.1);
  padding: 10px;
  border-radius: 7px;
  color: #122126
}
.title-bg {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  display: inline-block;
}

.title-theme-bg {
  background: rgba(3, 214, 101, 0.2);
  border-radius: 7px;
  display: inline-block;
  padding: 3px;
}


@keyframes move_wave {
  0% {
    transform: scaleY(1)
  }
  50% {
    transform: scaleY(0.55)
  }
  100% {
    transform: scaleY(1)
  }
}
.banner-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -2px;
}
.banner-wave .wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}
.banner-wave .wave.wave1 {
  opacity: 0.5
}
.banner-wave .wave.wave2 {
  background-size: 50% 200px;
}
.banner-wave .wave1 {
  animation: move_wave 10s linear infinite;
}
.bg-sec {
  padding-bottom: 300px;
}


/* ------------------------
    Other
------------------------*/

.banner .img-2 {
  position: absolute;
  left: 46%;
  top: 41%;
  transform: translateX(-50%) translateY(-50%);
  width: 25%;
}
#particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.3
}
.app-img {
  position: absolute;
  top: -15%;
  width: 90%;
  right: -20%;
  transform: rotate(10deg);
}

#waterdrop {
  height: 30px;
}
#waterdrop canvas {
  bottom: -70px !important;
}

/* ------------------------
    Responsive Css
------------------------*/

@media (max-width: 1200px){
h1{font-size: 55px; line-height: 65px;}
h2 {font-size: 44px; line-height: 54px;}
h3 {font-size: 26px; line-height: 36px;}
h4 {font-size: 22px; line-height: 30px;}
h5 {font-size: 19px; line-height: 28px;}
h6 {font-size: 17px; line-height: 22px;}

/*Padding*/
.lg-pl-5 {padding-left: 50px !important;}
.lg-pr-5 {padding-right: 50px !important;}
.lg-px-3 {padding-left: 30px !important; padding-right: 30px !important;}

/*Margin*/
.lg-mt-3{margin-top: 30px !important;}
.lg-mt-5{margin-top: 50px !important;}
.lg-mt-7{margin-top: 70px !important;}

/*Header*/
.logo img {height: 50px;}
#header-wrap.fixed-header .logo img {height: 45px;}
.navbar-nav .nav-item {margin: 0 7px;}

/*Featured*/
.featured-item.style-3 {padding-left: 70px; padding-right: 20px;}
.featured-item.style-3 .featured-icon {left: 15px;}

/*Contact*/
.contact-media.style-2 li {padding: 50px 30px;}

}


@media (max-width: 991px){
h1{font-size: 50px; line-height: 60px;}
h2{font-size: 36px; line-height: 46px;}
h3 {font-size: 24px; line-height: 30px;}
h4 {font-size: 20px; line-height: 26px;}
h5 {font-size: 18px; line-height: 28px;}
h6 {font-size: 17px; line-height: 26px;}


/*Margin*/
.md-mt-0{margin-top: 0 !important;}
.md-pl-0{padding-left: 0 !important;}
.md-mt-3{margin-top: 30px !important;}
.md-mt-5{margin-top: 50px !important;}
.md-mt-7{margin-top: 70px !important;}
.md-mb-3{margin-bottom: 30px !important;}
.md-mb-5{margin-bottom: 50px !important;}
.md-mb-7{margin-bottom: 70px !important;}
.md-px-3 {padding-left: 30px !important; padding-right: 30px !important;}
.md-py-0 {padding-top: 0px !important; padding-bottom: 0px !important;}
.md-px-5 {padding-left: 50px !important; padding-right: 50px !important;}
.md-py-3 {padding-top: 30px !important; padding-bottom: 30px !important;}
.md-py-5 {padding-top: 50px !important; padding-bottom: 50px !important;}
.md-py-8 {padding-top: 80px !important; padding-bottom: 80px !important;}
.md-pt-8{padding-top: 80px !important;}
.md-pb-15{padding-bottom: 150px !important;}

.md-custom-mt-10{z-index: 99; position: relative; margin-top: -100px;}


/*Text Align*/
.md-text-center{text-align: center !important;}
.md-text-left{text-align: left !important;}

/*Header*/
#header-wrap{padding: 15px 0;}
#header-wrap.fixed-header {padding: 15px 0;}
.navbar {justify-content: flex-end; width: 100%;}
.navbar-brand {left: 0; margin-right: 0; position: absolute; top: 50%; padding: 0; transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); -moz-transform: translateY(-50%);}
.navbar-toggler {background: none; height: 40px; width: 40px; padding: 0; border-radius: 0; margin-right: 15px;}
.navbar-nav ul{position: static;}
.navbar-nav .nav-item{margin: 0;}
.navbar-nav .nav-link{padding: 10px !important; border-radius: 0;}
.navbar-nav a .sub-arrow {position: absolute; top: 50%; right: 0; margin: -0.7em 0.5em 0 0; border-radius: .25rem; padding: 0; width: 2em; height: 1.4em; font-size: 1.25rem; line-height: 1.2em;  text-align: center;}
.navbar-collapse {border-radius: 7px; background:#ecece4; max-height: 400px;  left: 0; padding: 10px; position: absolute; z-index: 99; top: 50px; width: 100%; overflow: auto; border: medium none; -webkit-box-shadow: 7px 5px 30px rgba(72,73,121,0.15); -moz-box-shadow: 7px 5px 30px rgba(72,73,121,0.15); box-shadow: 7px 5px 30px rgba(72,73,121,0.15);}
.navbar-toggler span {width: 80%; height: 2px; margin: 5px auto; display: block; background: #03d665;}
.navbar-nav .dropdown-toggle::after{background: none !important; position: absolute; border:none; top: 50%; right: 0; margin: -0.5em 0.5em 0 0; border-radius: .25rem; padding: 0; width: 2em; height: 1.4em; font-size: 1.25rem; line-height: 1.2em; text-align: center;}
.navbar-nav .dropdown-toggle::after {content: '+';}
.navbar-nav .dropdown.show &gt; .dropdown-toggle::after {content: '-';}
.navbar-nav .nav-item.show .nav-link{color: #ffffff !important}

 #header-wrap.fixed-header .navbar{padding-top: 0;}
 #header-wrap.fixed-header .right-nav{display: none !important;}

.header-2 .navbar-toggler span {background-color: #fff;}
.header-3 .navbar-brand {left: 10px;}
.header-3 #header-wrap.fixed-header .navbar-brand {left: 0;}

/*Banner*/
/* .fullscreen-banner{height: auto !important; padding: 150px 0 100px !important;} */
.fullscreen-banner.banner-3{padding-bottom: 250px !important;}
.fullscreen-banner .align-center{position: inherit; transform: inherit; padding-top: 0 !important}
.page-title {padding: 160px 0;}
.page-title h1 {font-size: 40px; line-height: 50px;}
.fullscreen-banner .img-side{position: relative !important; transform: inherit; top: inherit; left: inherit;}

/*Hero-shape*/
.hero-shape1 {width: 140%; height: 140%; top: -35%; left: -20%;}
.hero-shape2 {width: 170%; height: 170%; top: -90%; left: -90%;}
.hero-shape3 {right: -50%; top: -30%;}
.hero-shape5 {width: 150%; height: 150%; top: -60%; left: -50%;}
.hero-shape6 {width: 90%; right: -30%; top: -10%; height: 60%;}

/*Side Image*/
.side-image{display: none;}
.img-side.img-right {left: auto; position: relative !important; right: 0;}
.img-side.img-left {left: 0; position: relative !important; right: auto;}
.image-column {left: 0; position: relative; top: inherit; transform: inherit;}

/*Step*/
.work-process .arrow {top: -10px; right: -20px;}
.work-process .arrow .curve {height: 120px; width: 100px;}
.work-process .arrow .point {left: 18px; top: 110px;}

/*Post*/
.post .post-desc {padding: 20px;}

/*Tab*/
.tab .nav-tabs .nav-link {margin-right: 10px; font-size: 16px; padding: 15px 20px;}

/*Testimonial*/
.testimonial.style-1 .testimonial-content {padding-right: 0;}
.testimonial-content p {font-size: 16px; line-height: 30px;}
.testimonial.style-2 .testimonial-img {width: 60%;}
.testimonial.style-2 .testimonial-content {padding: 40px 20px 10px; width: 50%;}
.testimonial.style-2 .testimonial-content p {font-size: 15px; line-height: 26px;}

/*Countdown*/
.countdown &gt; li span {font-size: 60px; line-height: 70px;}
.countdown &gt; li p{font-size: 18px;}
.coming-soon-pattern {right: -100%; bottom: 0;}

/*Contact*/
.contact-media.style-2 li {min-height: inherit; padding: 50px; margin: 0 0 30px 30px; float: none; width: auto;}
.contact-media.style-2 li:last-child{margin-bottom: 0;}

/*Job-list*/
.job-list-left{width: 55%;}
.job-list-icon {margin-right: 30px;}

/*Price Table*/
.price-table.style-4 {display: block;}
.price-table.style-4 .price-list {width: 100%; margin: 30px 0;}
.price-table h3{font-size: 30px; line-height: 40px;}
.price-table.style-4 .price-title{margin-right: 0;}

/*Other*/
.round-effect {left: 35%; top: 20%;}
.owl-carousel.owl-nav2 .owl-nav {bottom: -10%; left: 0;}
.footer {padding: 120px 0 80px;}
.portfolio-filter button {padding: 8px 25px;}

}

@media (max-width: 767px){
h2{font-size: 30px;}
h3 {font-size: 22px; line-height: 30px;}
.hidden-sm{display: none !important;}
.section-title h2{font-size: 34px; line-height: 40px;}
.section-title p {font-size: 16px;}
.page-title h1 {font-size: 30px; line-height: 30px;}

/*Margin*/
.sm-mt-0{margin-top: 0 !important;}
.sm-mt-2{margin-top: 20px !important;}
.sm-mt-3{margin-top: 30px !important;}
.sm-mt-5{margin-top: 50px !important;}
.sm-mb-3{margin-bottom: 30px !important;}
.sm-mb-5{margin-bottom: 50px !important;}

/*Padding*/
.sm-pt-0{padding-top: 0 !important;}
.sm-pt-5{padding-top: 50px !important;}
.sm-pt-10{padding-top: 100px !important;}
.sm-pb-5{padding-bottom: 50px !important;}
.sm-pb-8{padding-bottom: 80px !important;}
.sm-pb-10{padding-bottom: 100px !important;}
.sm-px-3{padding-left: 30px !important; padding-right: 30px !important;}
.sm-py-3{padding-top: 30px !important; padding-bottom: 30px !important;}
.sm-py-8{padding-top: 80px !important; padding-bottom: 80px !important;}

/*Banner*/
.sm-bg-cover {background-size: cover;}

/*Hero-shape*/
.hero-shape1 {width: 160%; height: 140%; top: -40%; left: -20%;}
.hero-shape2 {width: 200%; height: 200%; top: -130%; left: -130%;}
.hero-shape5 {width: 170%; height: 150%; top: -60%; left: -60%;}

/*Tab*/
.tab .nav-tabs .nav-link {margin-right: 3px; font-size: 15px; padding: 10px 8px;}
.custom-li li {float: none; margin-bottom: 20px; width: 100%;}

/*Testimonial*/
.testimonial.style-1 {display: block; padding: 150px 0 0;}
.testimonial.style-1 .testimonial-img {margin: 15px 50px 15px 50px;}
.testimonial.style-1 .testimonial-content{margin-top: 50px;}
.testimonial-1 .controls li:nth-child(1) {left: 0;}
.testimonial-1 .controls li:nth-child(2) {right: 40%;}
.testimonial-1 .controls li:nth-child(3) {right: 0; bottom: inherit; top: 0}
.testimonial.style-2 {display: block;}
.testimonial.style-2 .testimonial-img {width: 100%;}
.testimonial.style-2 .testimonial-content {padding: 40px 20px; width: 100%;}
.testimonial.style-2 .testimonial-content p {font-size: 16px; line-height: 30px;}

/*Countdown*/
.countdown &gt; li span {font-size: 40px; line-height: 40px;}
.countdown &gt; li p{font-size: 16px;}

/*Job-list*/
.job-list, .job-list-left, .job-list-right{display: block; width: 100%;}
.job-list-icon {margin-right: 0; margin-bottom: 15px;}
.job-list-left{margin-bottom: 20px;}
.job-list-time{display: block; margin-bottom: 20px; margin-right: 0 !important}

/*Portfolio*/
.grid.columns-2 .grid-item, .masonry.columns-2 .masonry-brick,
.grid.columns-3 .grid-item, .masonry.columns-3 .masonry-brick {width: 100%;}
.portfolio-filter button {padding: 5px 15px;}
.portfolio-filter button + button {margin-left: 10px;}

/*Other*/
.contact-inner {padding: 30px;}
.round-anim {width: 550px; height: 550px; top: 0;}
#mc-form .btn{margin-left: 0; margin-top: 15px; width: 100%;}
#footer-wave {bottom: -95px;}
.error-page-2 h1{font-size: 150px; line-height: 150px;}
.app-img {top: inherit; bottom: -50px; width: 125%;}
.work-process .arrow{display: none;}

}

@media (max-width: 576px){
.col-xx-12{width: 100% !important;}
h1{font-size: 34px; line-height: 50px;}
h2{font-size: 28px; line-height: 40px; margin-bottom: 10px;}
h3 {font-size: 20px; line-height: 28px;}
h4 {font-size: 18px; line-height: 26px;}
.section-title h2{font-size: 30px; line-height: 38px;}

/*Margin*/
.xs-mt-0{margin-top: 0 !important;}
.xs-mt-1{margin-top: 10px !important;}
.xs-mt-2{margin-top: 20px !important;}
.xs-mt-3{margin-top: 30px !important;}
.xs-mt-5{margin-top: 50px !important;}
.xs-mb-3{margin-bottom: 30px !important;}
.xs-mb-5{margin-bottom: 50px !important;}

/*Padding*/
.xs-pt-5{padding-top: 50px !important;}
.xs-pb-5{padding-bottom: 50px !important;}
.xs-px-1{padding-left: 10px !important; padding-right: 10px !important;}
.xs-px-2{padding-left: 20px !important; padding-right: 20px !important;}
.xs-px-3{padding-left: 30px !important; padding-right: 30px !important;}
.xs-py-1{padding-top: 10px !important; padding-bottom: 10px !important;}
.xs-py-2{padding-top: 20px !important; padding-bottom: 20px !important;}
.xs-py-10{padding-top: 100px !important; padding-bottom: 100px !important;}

/*Text Align*/
.xs-text-center{text-align: center;}

/*Header*/
.navbar-toggler{margin-right: 0;}
.navbar {justify-content: space-between; padding-top: 50px;}
.navbar-brand {left: inherit; position: relative; top: inherit; transform: translateY(0); -webkit-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); -moz-transform: translateY(0);}
.navbar-collapse{top: 100px;}
.right-nav{position: absolute; left: 0; top: 0; width: 100%; justify-content: center !important;}
.header-call a {font-size: 13px;}

/*Banner*/
.fullscreen-banner p br{display: none;}
.breadcrumb-item {line-height: 30px;}
.page-title {padding: 160px 0 110px;}

/*Hero-shape*/
.hero-shape2 {width: 250%; height: 250%; top: -160%; left: -230%;}
.hero-shape3 {right: -90%; top: -30%;}
.hero-shape4 {width: 150%; height: 150%; top: -20%;}
.hero-shape5 {width: 250%; height: 150%; top: -60%; left: -120%;}

/*Button*/
.btn {padding: 8px 12px;}
.btn + .btn {margin-left: 5px;}

/*Post*/
.post-meta ul li{font-size: 12px;}
.media-holder .media {display: block; padding: 20px;}
.media-holder .media img{margin-right: 0 !important; margin-bottom: 15px;}

/*Testimonial*/
.testimonial-carousel.testimonial-1 .controls li{width: 80px; height: 80px;}
.testimonial-1 .controls li:nth-child(2){right: 50%; margin-right: -40px;}

/*Price Table*/
.price-table.style-2 .price-title {padding-top: 40px;}
.price-table.style-4 .price-header {display: block;}
.price-table.style-4 .price-value{margin-top: 30px;}
.price-table.style-4 .price-list {text-align: left;}
.price-table.style-4 .price-list ul li {margin-bottom: 20px !important; margin-right: 0; width: 100%;}

/*Portfolio*/
.portfolio-filter button {margin-bottom: 5px;}

/*Other*/
.featured-item.style-2 {padding: 30px;}
/* footer {padding: 80px 0;} */
.error-page-2 h1{font-size: 120px; line-height: 120px;}
.round-anim {width: 300px; height: 300px;}
.image-anim::before{width: 300px; height: 300px; left: 0;}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {font-size: 24px; padding: 10px 30px !important;}

}
</pre></body></html>