@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

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

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



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

            transform-origin: center
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-webkit-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-moz-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}

}

@-o-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-ms-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}

}

/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
@font-face {
  font-family: 'linearicons-free';
  src:  url('/fontslinearicons-free.eot?4l2k0u');
  src:  url('/fontslinearicons-free.eot?4l2k0u#iefix') format('embedded-opentype'),
    url('/fontslinearicons-free.ttf?4l2k0u') format('truetype'),
    url('/fontslinearicons-free.woff?4l2k0u') format('woff'),
    url('/fontslinearicons-free.svg?4l2k0u#linearicons-free') format('svg');
	font-weight: normal;
	font-style: normal;
}

.lnr, [class^="lnr-"], [class*=" lnr-"] {
	font-family: 'linearicons-free';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lnr-icon-home:before {
  content: "\e800";
}
.lnr-icon-apartment:before {
  content: "\e801";
}
.lnr-icon-pencil:before {
  content: "\e802";
}
.lnr-icon-magic-wand:before {
  content: "\e803";
}
.lnr-icon-drop:before {
  content: "\e804";
}
.lnr-icon-lighter:before {
  content: "\e805";
}
.lnr-icon-poop:before {
  content: "\e806";
}
.lnr-icon-sun:before {
  content: "\e807";
}
.lnr-icon-moon:before {
  content: "\e808";
}
.lnr-icon-cloud:before {
  content: "\e809";
}
.lnr-icon-cloud-upload:before {
  content: "\e80a";
}
.lnr-icon-cloud-download:before {
  content: "\e80b";
}
.lnr-icon-cloud-sync:before {
  content: "\e80c";
}
.lnr-icon-cloud-check:before {
  content: "\e80d";
}
.lnr-icon-database:before {
  content: "\e80e";
}
.lnr-icon-lock:before {
  content: "\e80f";
}
.lnr-icon-cog:before {
  content: "\e810";
}
.lnr-icon-trash:before {
  content: "\e811";
}
.lnr-icon-dice:before {
  content: "\e812";
}
.lnr-icon-heart:before {
  content: "\e813";
}
.lnr-icon-star:before {
  content: "\e814";
}
.lnr-icon-star-half:before {
  content: "\e815";
}
.lnr-icon-star-empty:before {
  content: "\e816";
}
.lnr-icon-flag:before {
  content: "\e817";
}
.lnr-icon-envelope:before {
  content: "\e818";
}
.lnr-icon-paperclip:before {
  content: "\e819";
}
.lnr-icon-inbox:before {
  content: "\e81a";
}
.lnr-icon-eye:before {
  content: "\e81b";
}
.lnr-icon-printer:before {
  content: "\e81c";
}
.lnr-icon-file-empty:before {
  content: "\e81d";
}
.lnr-icon-file-add:before {
  content: "\e81e";
}
.lnr-icon-enter:before {
  content: "\e81f";
}
.lnr-icon-exit:before {
  content: "\e820";
}
.lnr-icon-graduation-hat:before {
  content: "\e821";
}
.lnr-icon-license:before {
  content: "\e822";
}
.lnr-icon-music-note:before {
  content: "\e823";
}
.lnr-icon-film-play:before {
  content: "\e824";
}
.lnr-icon-camera-video:before {
  content: "\e825";
}
.lnr-icon-camera:before {
  content: "\e826";
}
.lnr-icon-picture:before {
  content: "\e827";
}
.lnr-icon-book:before {
  content: "\e828";
}
.lnr-icon-bookmark:before {
  content: "\e829";
}
.lnr-icon-user:before {
  content: "\e82a";
}
.lnr-icon-users:before {
  content: "\e82b";
}
.lnr-icon-shirt:before {
  content: "\e82c";
}
.lnr-icon-store:before {
  content: "\e82d";
}
.lnr-icon-cart:before {
  content: "\e82e";
}
.lnr-icon-tag:before {
  content: "\e82f";
}
.lnr-icon-phone-handset:before {
  content: "\e830";
}
.lnr-icon-phone:before {
  content: "\e831";
}
.lnr-icon-pushpin:before {
  content: "\e832";
}
.lnr-icon-map-marker:before {
  content: "\e833";
}
.lnr-icon-map:before {
  content: "\e834";
}
.lnr-icon-location:before {
  content: "\e835";
}
.lnr-icon-calendar-full:before {
  content: "\e836";
}
.lnr-icon-keyboard:before {
  content: "\e837";
}
.lnr-icon-spell-check:before {
  content: "\e838";
}
.lnr-icon-screen:before {
  content: "\e839";
}
.lnr-icon-smartphone:before {
  content: "\e83a";
}
.lnr-icon-tablet:before {
  content: "\e83b";
}
.lnr-icon-laptop:before {
  content: "\e83c";
}
.lnr-icon-laptop-phone:before {
  content: "\e83d";
}
.lnr-icon-power-switch:before {
  content: "\e83e";
}
.lnr-icon-bubble:before {
  content: "\e83f";
}
.lnr-icon-heart-pulse:before {
  content: "\e840";
}
.lnr-icon-construction:before {
  content: "\e841";
}
.lnr-icon-pie-chart:before {
  content: "\e842";
}
.lnr-icon-chart-bars:before {
  content: "\e843";
}
.lnr-icon-gift:before {
  content: "\e844";
}
.lnr-icon-diamond:before {
  content: "\e845";
}
.lnr-icon-linearicons:before {
  content: "\e846";
}
.lnr-icon-dinner:before {
  content: "\e847";
}
.lnr-icon-coffee-cup:before {
  content: "\e848";
}
.lnr-icon-leaf:before {
  content: "\e849";
}
.lnr-icon-paw:before {
  content: "\e84a";
}
.lnr-icon-rocket:before {
  content: "\e84b";
}
.lnr-icon-briefcase:before {
  content: "\e84c";
}
.lnr-icon-bus:before {
  content: "\e84d";
}
.lnr-icon-car:before {
  content: "\e84e";
}
.lnr-icon-train:before {
  content: "\e84f";
}
.lnr-icon-bicycle:before {
  content: "\e850";
}
.lnr-icon-wheelchair:before {
  content: "\e851";
}
.lnr-icon-select:before {
  content: "\e852";
}
.lnr-icon-earth:before {
  content: "\e853";
}
.lnr-icon-smile:before {
  content: "\e854";
}
.lnr-icon-sad:before {
  content: "\e855";
}
.lnr-icon-neutral:before {
  content: "\e856";
}
.lnr-icon-mustache:before {
  content: "\e857";
}
.lnr-icon-alarm:before {
  content: "\e858";
}
.lnr-icon-bullhorn:before {
  content: "\e859";
}
.lnr-icon-volume-high:before {
  content: "\e85a";
}
.lnr-icon-volume-medium:before {
  content: "\e85b";
}
.lnr-icon-volume-low:before {
  content: "\e85c";
}
.lnr-icon-volume:before {
  content: "\e85d";
}
.lnr-icon-mic:before {
  content: "\e85e";
}
.lnr-icon-hourglass:before {
  content: "\e85f";
}
.lnr-icon-undo:before {
  content: "\e860";
}
.lnr-icon-redo:before {
  content: "\e861";
}
.lnr-icon-sync:before {
  content: "\e862";
}
.lnr-icon-history:before {
  content: "\e863";
}
.lnr-icon-clock:before {
  content: "\e864";
}
.lnr-icon-download:before {
  content: "\e865";
}
.lnr-icon-upload:before {
  content: "\e866";
}
.lnr-icon-enter-down:before {
  content: "\e867";
}
.lnr-icon-exit-up:before {
  content: "\e868";
}
.lnr-icon-bug:before {
  content: "\e869";
}
.lnr-icon-code:before {
  content: "\e86a";
}
.lnr-icon-link:before {
  content: "\e86b";
}
.lnr-icon-unlink:before {
  content: "\e86c";
}
.lnr-icon-thumbs-up:before {
  content: "\e86d";
}
.lnr-icon-thumbs-down:before {
  content: "\e86e";
}
.lnr-icon-magnifier:before {
  content: "\e86f";
}
.lnr-icon-cross:before {
  content: "\e870";
}
.lnr-icon-menu:before {
  content: "\e871";
}
.lnr-icon-list:before {
  content: "\e872";
}
.lnr-icon-chevron-up:before {
  content: "\e873";
}
.lnr-icon-chevron-down:before {
  content: "\e874";
}
.lnr-icon-chevron-left:before {
  content: "\e875";
}
.lnr-icon-chevron-right:before {
  content: "\e876";
}
.lnr-icon-arrow-up:before {
  content: "\e877";
}
.lnr-icon-arrow-down:before {
  content: "\e878";
}
.lnr-icon-arrow-left:before {
  content: "\e879";
}
.lnr-icon-arrow-right:before {
  content: "\e87a";
}
.lnr-icon-move:before {
  content: "\e87b";
}
.lnr-icon-warning:before {
  content: "\e87c";
}
.lnr-icon-question-circle:before {
  content: "\e87d";
}
.lnr-icon-menu-circle:before {
  content: "\e87e";
}
.lnr-icon-checkmark-circle:before {
  content: "\e87f";
}
.lnr-icon-cross-circle:before {
  content: "\e880";
}
.lnr-icon-plus-circle:before {
  content: "\e881";
}
.lnr-icon-circle-minus:before {
  content: "\e882";
}
.lnr-icon-arrow-up-circle:before {
  content: "\e883";
}
.lnr-icon-arrow-down-circle:before {
  content: "\e884";
}
.lnr-icon-arrow-left-circle:before {
  content: "\e885";
}
.lnr-icon-arrow-right-circle:before {
  content: "\e886";
}
.lnr-icon-chevron-up-circle:before {
  content: "\e887";
}
.lnr-icon-chevron-down-circle:before {
  content: "\e888";
}
.lnr-icon-chevron-left-circle:before {
  content: "\e889";
}
.lnr-icon-chevron-right-circle:before {
  content: "\e88a";
}
.lnr-icon-crop:before {
  content: "\e88b";
}
.lnr-icon-frame-expand:before {
  content: "\e88c";
}
.lnr-icon-frame-contract:before {
  content: "\e88d";
}
.lnr-icon-layers:before {
  content: "\e88e";
}
.lnr-icon-funnel:before {
  content: "\e88f";
}
.lnr-icon-text-align-left:before {
  content: "\e898";
}
.lnr-icon-text-align-center:before {
  content: "\e899";
}
.lnr-icon-text-align-right:before {
  content: "\e89a";
}
.lnr-icon-text-align-justify:before {
  content: "\e89b";
}
.lnr-icon-sort-amount-asc:before {
  content: "\e8a4";
}
.lnr-icon-cart1:before {
  content: "\e003";
}
.lnr-icon-close:before {
  content: "\e005";
}
.lnr-icon-copy:before {
  content: "\e007";
}
.lnr-icon-dropdown:before {
  content: "\e00a";
}
.lnr-icon-favourite:before {
  content: "\e00c";
}
.lnr-icon-history1:before {
  content: "\e00f";
}
.lnr-icon-live-support:before {
  content: "\e012";
}
.lnr-icon-location-1:before {
  content: "\e013";
}
.lnr-icon-phone-plus:before {
  content: "\e01a";
}
.lnr-icon-rocket1:before {
  content: "\e01c";
}
.lnr-icon-search:before {
  content: "\e01d";
}
.lnr-icon-user1:before {
  content: "\e023";
}
.lnr-icon-arrow-left1:before {
  content: "\e029";
}
.lnr-icon-arrow-right1:before {
  content: "\e02a";
}
.lnr-icon-bars:before {
  content: "\e02b";
}
.lnr-icon-calendar:before {
  content: "\e02c";
}
.lnr-icon-comment:before {
  content: "\e034";
}
.lnr-icon-comments:before {
  content: "\e035";
}
.lnr-icon-envelope1:before {
  content: "\e037";
}
.lnr-icon-external-link-alt:before {
  content: "\e039";
}
.lnr-icon-eye1:before {
  content: "\e03a";
}
.lnr-icon-file-alt:before {
  content: "\e03b";
}
.lnr-icon-file-archive:before {
  content: "\e03c";
}
.lnr-icon-folder-open:before {
  content: "\e03d";
}
.lnr-icon-folder:before {
  content: "\e03e";
}
.lnr-icon-gift1:before {
  content: "\e040";
}
.lnr-icon-grid:before {
  content: "\e041";
}
.lnr-icon-heart-fill:before {
  content: "\e042";
}
.lnr-icon-heart1:before {
  content: "\e043";
}
.lnr-icon-home1:before {
  content: "\e044";
}
.lnr-icon-list1:before {
  content: "\e047";
}
.lnr-icon-map-marker-check:before {
  content: "\e04c";
}
.lnr-icon-meh:before {
  content: "\e04d";
}
.lnr-icon-minus:before {
  content: "\e04e";
}
.lnr-icon-plus:before {
  content: "\e051";
}
.lnr-icon-quote:before {
  content: "\e052";
}
.lnr-icon-random:before {
  content: "\e053";
}
.lnr-icon-shopping-cart:before {
  content: "\e057";
}
.lnr-icon-sign-out-alt:before {
  content: "\e058";
}
.lnr-icon-smile1:before {
  content: "\e059";
}
.lnr-icon-spinner:before {
  content: "\e05a";
}
.lnr-icon-square:before {
  content: "\e05b";
}
.lnr-icon-star1:before {
  content: "\e05c";
}
.lnr-icon-store1:before {
  content: "\e05d";
}
.lnr-icon-sync1:before {
  content: "\e05e";
}
.lnr-icon-tachometer-alt:before {
  content: "\e05f";
}
.lnr-icon-thumbtack:before {
  content: "\e062";
}
.lnr-icon-times-circle:before {
  content: "\e063";
}
.lnr-icon-times:before {
  content: "\e064";
}
.lnr-icon-truck:before {
  content: "\e065";
}
.lnr-icon-video:before {
  content: "\e066";
}

/*
 * ThemeMascot custom-bootstrap-margin-padding
 * -----------------------------------------------
*/
/* Margin */
.m--0 {
  margin: 0px !important; }

.m-10 {
  margin: 10px !important; }

.m-15 {
  margin: 15px !important; }

.m-20 {
  margin: 20px !important; }

.m-25 {
  margin: 25px !important; }

.m-30 {
  margin: 30px !important; }

.m-40 {
  margin: 40px !important; }

.m-50 {
  margin: 50px !important; }

.m-60 {
  margin: 60px !important; }

.m-70 {
  margin: 70px !important; }

.m-80 {
  margin: 80px !important; }

.m-90 {
  margin: 90px !important; }

.m-100 {
  margin: 100px !important; }

.m-110 {
  margin: 110px !important; }

.m-120 {
  margin: 120px !important; }

.m-130 {
  margin: 130px !important; }

.m-140 {
  margin: 140px !important; }

.m-150 {
  margin: 150px !important; }

.m-200 {
  margin: 200px !important; }

.m-250 {
  margin: 250px !important; }

.m--10 {
  margin: -10px !important; }

.m--15 {
  margin: -15px !important; }

.m--20 {
  margin: -20px !important; }

.m--25 {
  margin: -25px !important; }

.m--30 {
  margin: -30px !important; }

.m--40 {
  margin: -40px !important; }

.m--50 {
  margin: -50px !important; }

.m--60 {
  margin: -60px !important; }

.m--70 {
  margin: -70px !important; }

.m--80 {
  margin: -80px !important; }

.m--90 {
  margin: -90px !important; }

.m--100 {
  margin: -100px !important; }

.mt--0 {
  margin-top: 0px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-25 {
  margin-top: 25px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-40 {
  margin-top: 40px !important; }

.mt-50 {
  margin-top: 50px !important; }

.mt-60 {
  margin-top: 60px !important; }

.mt-70 {
  margin-top: 70px !important; }

.mt-80 {
  margin-top: 80px !important; }

.mt-90 {
  margin-top: 90px !important; }

.mt-100 {
  margin-top: 100px !important; }

.mt-110 {
  margin-top: 110px !important; }

.mt-120 {
  margin-top: 120px !important; }

.mt-130 {
  margin-top: 130px !important; }

.mt-140 {
  margin-top: 140px !important; }

.mt-150 {
  margin-top: 150px !important; }

.mt-200 {
  margin-top: 200px !important; }

.mt-250 {
  margin-top: 250px !important; }

.mt--10 {
  margin-top: -10px !important; }

.mt--15 {
  margin-top: -15px !important; }

.mt--20 {
  margin-top: -20px !important; }

.mt--25 {
  margin-top: -25px !important; }

.mt--30 {
  margin-top: -30px !important; }

.mt--40 {
  margin-top: -40px !important; }

.mt--50 {
  margin-top: -50px !important; }

.mt--60 {
  margin-top: -60px !important; }

.mt--70 {
  margin-top: -70px !important; }

.mt--80 {
  margin-top: -80px !important; }

.mt--90 {
  margin-top: -90px !important; }

.mt--100 {
  margin-top: -100px !important; }

.mb--0 {
  margin-bottom: 0px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-25 {
  margin-bottom: 25px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-80 {
  margin-bottom: 80px !important; }

.mb-90 {
  margin-bottom: 90px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.mb-110 {
  margin-bottom: 110px !important; }

.mb-120 {
  margin-bottom: 120px !important; }

.mb-130 {
  margin-bottom: 130px !important; }

.mb-140 {
  margin-bottom: 140px !important; }

.mb-150 {
  margin-bottom: 150px !important; }

.mb-200 {
  margin-bottom: 200px !important; }

.mb-250 {
  margin-bottom: 250px !important; }

.mb--10 {
  margin-bottom: -10px !important; }

.mb--15 {
  margin-bottom: -15px !important; }

.mb--20 {
  margin-bottom: -20px !important; }

.mb--25 {
  margin-bottom: -25px !important; }

.mb--30 {
  margin-bottom: -30px !important; }

.mb--40 {
  margin-bottom: -40px !important; }

.mb--50 {
  margin-bottom: -50px !important; }

.mb--60 {
  margin-bottom: -60px !important; }

.mb--70 {
  margin-bottom: -70px !important; }

.mb--80 {
  margin-bottom: -80px !important; }

.mb--90 {
  margin-bottom: -90px !important; }

.mb--100 {
  margin-bottom: -100px !important; }

.mr--0 {
  margin-right: 0px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-15 {
  margin-right: 15px !important; }

.mr-20 {
  margin-right: 20px !important; }

.mr-25 {
  margin-right: 25px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mr-40 {
  margin-right: 40px !important; }

.mr-50 {
  margin-right: 50px !important; }

.mr-60 {
  margin-right: 60px !important; }

.mr-70 {
  margin-right: 70px !important; }

.mr-80 {
  margin-right: 80px !important; }

.mr-90 {
  margin-right: 90px !important; }

.mr-100 {
  margin-right: 100px !important; }

.mr-110 {
  margin-right: 110px !important; }

.mr-120 {
  margin-right: 120px !important; }

.mr-130 {
  margin-right: 130px !important; }

.mr-140 {
  margin-right: 140px !important; }

.mr-150 {
  margin-right: 150px !important; }

.mr-200 {
  margin-right: 200px !important; }

.mr-250 {
  margin-right: 250px !important; }

.mr--10 {
  margin-right: -10px !important; }

.mr--15 {
  margin-right: -15px !important; }

.mr--20 {
  margin-right: -20px !important; }

.mr--25 {
  margin-right: -25px !important; }

.mr--30 {
  margin-right: -30px !important; }

.mr--40 {
  margin-right: -40px !important; }

.mr--50 {
  margin-right: -50px !important; }

.mr--60 {
  margin-right: -60px !important; }

.mr--70 {
  margin-right: -70px !important; }

.mr--80 {
  margin-right: -80px !important; }

.mr--90 {
  margin-right: -90px !important; }

.mr--100 {
  margin-right: -100px !important; }

.ml--0 {
  margin-left: 0px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-15 {
  margin-left: 15px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-25 {
  margin-left: 25px !important; }

.ml-30 {
  margin-left: 30px !important; }

.ml-40 {
  margin-left: 40px !important; }

.ml-50 {
  margin-left: 50px !important; }

.ml-60 {
  margin-left: 60px !important; }

.ml-70 {
  margin-left: 70px !important; }

.ml-80 {
  margin-left: 80px !important; }

.ml-90 {
  margin-left: 90px !important; }

.ml-100 {
  margin-left: 100px !important; }

.ml-110 {
  margin-left: 110px !important; }

.ml-120 {
  margin-left: 120px !important; }

.ml-130 {
  margin-left: 130px !important; }

.ml-140 {
  margin-left: 140px !important; }

.ml-150 {
  margin-left: 150px !important; }

.ml-200 {
  margin-left: 200px !important; }

.ml-250 {
  margin-left: 250px !important; }

.ml--10 {
  margin-left: -10px !important; }

.ml--15 {
  margin-left: -15px !important; }

.ml--20 {
  margin-left: -20px !important; }

.ml--25 {
  margin-left: -25px !important; }

.ml--30 {
  margin-left: -30px !important; }

.ml--40 {
  margin-left: -40px !important; }

.ml--50 {
  margin-left: -50px !important; }

.ml--60 {
  margin-left: -60px !important; }

.ml--70 {
  margin-left: -70px !important; }

.ml--80 {
  margin-left: -80px !important; }

.ml--90 {
  margin-left: -90px !important; }

.ml--100 {
  margin-left: -100px !important; }

@media (max-width: 1199.98px) {
  .m-lg--0 {
    margin: 0px !important; }
  .m-lg-10 {
    margin: 10px !important; }
  .m-lg-15 {
    margin: 15px !important; }
  .m-lg-20 {
    margin: 20px !important; }
  .m-lg-25 {
    margin: 25px !important; }
  .m-lg-30 {
    margin: 30px !important; }
  .m-lg-40 {
    margin: 40px !important; }
  .m-lg-50 {
    margin: 50px !important; }
  .m-lg-60 {
    margin: 60px !important; }
  .m-lg-70 {
    margin: 70px !important; }
  .m-lg-80 {
    margin: 80px !important; }
  .m-lg-90 {
    margin: 90px !important; }
  .m-lg-100 {
    margin: 100px !important; }
  .m-lg-110 {
    margin: 110px !important; }
  .m-lg-120 {
    margin: 120px !important; }
  .m-lg-130 {
    margin: 130px !important; }
  .m-lg-140 {
    margin: 140px !important; }
  .m-lg-150 {
    margin: 150px !important; }
  .m-lg-200 {
    margin: 200px !important; }
  .m-lg-250 {
    margin: 250px !important; }
  .m-lg--10 {
    margin: -10px !important; }
  .m-lg--15 {
    margin: -15px !important; }
  .m-lg--20 {
    margin: -20px !important; }
  .m-lg--25 {
    margin: -25px !important; }
  .m-lg--30 {
    margin: -30px !important; }
  .m-lg--40 {
    margin: -40px !important; }
  .m-lg--50 {
    margin: -50px !important; }
  .m-lg--60 {
    margin: -60px !important; }
  .m-lg--70 {
    margin: -70px !important; }
  .m-lg--80 {
    margin: -80px !important; }
  .m-lg--90 {
    margin: -90px !important; }
  .m-lg--100 {
    margin: -100px !important; }
  .mt-lg--0 {
    margin-top: 0px !important; }
  .mt-lg-10 {
    margin-top: 10px !important; }
  .mt-lg-15 {
    margin-top: 15px !important; }
  .mt-lg-20 {
    margin-top: 20px !important; }
  .mt-lg-25 {
    margin-top: 25px !important; }
  .mt-lg-30 {
    margin-top: 30px !important; }
  .mt-lg-40 {
    margin-top: 40px !important; }
  .mt-lg-50 {
    margin-top: 50px !important; }
  .mt-lg-60 {
    margin-top: 60px !important; }
  .mt-lg-70 {
    margin-top: 70px !important; }
  .mt-lg-80 {
    margin-top: 80px !important; }
  .mt-lg-90 {
    margin-top: 90px !important; }
  .mt-lg-100 {
    margin-top: 100px !important; }
  .mt-lg-110 {
    margin-top: 110px !important; }
  .mt-lg-120 {
    margin-top: 120px !important; }
  .mt-lg-130 {
    margin-top: 130px !important; }
  .mt-lg-140 {
    margin-top: 140px !important; }
  .mt-lg-150 {
    margin-top: 150px !important; }
  .mt-lg-200 {
    margin-top: 200px !important; }
  .mt-lg-250 {
    margin-top: 250px !important; }
  .mt-lg--10 {
    margin-top: -10px !important; }
  .mt-lg--15 {
    margin-top: -15px !important; }
  .mt-lg--20 {
    margin-top: -20px !important; }
  .mt-lg--25 {
    margin-top: -25px !important; }
  .mt-lg--30 {
    margin-top: -30px !important; }
  .mt-lg--40 {
    margin-top: -40px !important; }
  .mt-lg--50 {
    margin-top: -50px !important; }
  .mt-lg--60 {
    margin-top: -60px !important; }
  .mt-lg--70 {
    margin-top: -70px !important; }
  .mt-lg--80 {
    margin-top: -80px !important; }
  .mt-lg--90 {
    margin-top: -90px !important; }
  .mt-lg--100 {
    margin-top: -100px !important; }
  .mb-lg--0 {
    margin-bottom: 0px !important; }
  .mb-lg-10 {
    margin-bottom: 10px !important; }
  .mb-lg-15 {
    margin-bottom: 15px !important; }
  .mb-lg-20 {
    margin-bottom: 20px !important; }
  .mb-lg-25 {
    margin-bottom: 25px !important; }
  .mb-lg-30 {
    margin-bottom: 30px !important; }
  .mb-lg-40 {
    margin-bottom: 40px !important; }
  .mb-lg-50 {
    margin-bottom: 50px !important; }
  .mb-lg-60 {
    margin-bottom: 60px !important; }
  .mb-lg-70 {
    margin-bottom: 70px !important; }
  .mb-lg-80 {
    margin-bottom: 80px !important; }
  .mb-lg-90 {
    margin-bottom: 90px !important; }
  .mb-lg-100 {
    margin-bottom: 100px !important; }
  .mb-lg-110 {
    margin-bottom: 110px !important; }
  .mb-lg-120 {
    margin-bottom: 120px !important; }
  .mb-lg-130 {
    margin-bottom: 130px !important; }
  .mb-lg-140 {
    margin-bottom: 140px !important; }
  .mb-lg-150 {
    margin-bottom: 150px !important; }
  .mb-lg-200 {
    margin-bottom: 200px !important; }
  .mb-lg-250 {
    margin-bottom: 250px !important; }
  .mb-lg--10 {
    margin-bottom: -10px !important; }
  .mb-lg--15 {
    margin-bottom: -15px !important; }
  .mb-lg--20 {
    margin-bottom: -20px !important; }
  .mb-lg--25 {
    margin-bottom: -25px !important; }
  .mb-lg--30 {
    margin-bottom: -30px !important; }
  .mb-lg--40 {
    margin-bottom: -40px !important; }
  .mb-lg--50 {
    margin-bottom: -50px !important; }
  .mb-lg--60 {
    margin-bottom: -60px !important; }
  .mb-lg--70 {
    margin-bottom: -70px !important; }
  .mb-lg--80 {
    margin-bottom: -80px !important; }
  .mb-lg--90 {
    margin-bottom: -90px !important; }
  .mb-lg--100 {
    margin-bottom: -100px !important; }
  .mr-lg--0 {
    margin-right: 0px !important; }
  .mr-lg-10 {
    margin-right: 10px !important; }
  .mr-lg-15 {
    margin-right: 15px !important; }
  .mr-lg-20 {
    margin-right: 20px !important; }
  .mr-lg-25 {
    margin-right: 25px !important; }
  .mr-lg-30 {
    margin-right: 30px !important; }
  .mr-lg-40 {
    margin-right: 40px !important; }
  .mr-lg-50 {
    margin-right: 50px !important; }
  .mr-lg-60 {
    margin-right: 60px !important; }
  .mr-lg-70 {
    margin-right: 70px !important; }
  .mr-lg-80 {
    margin-right: 80px !important; }
  .mr-lg-90 {
    margin-right: 90px !important; }
  .mr-lg-100 {
    margin-right: 100px !important; }
  .mr-lg-110 {
    margin-right: 110px !important; }
  .mr-lg-120 {
    margin-right: 120px !important; }
  .mr-lg-130 {
    margin-right: 130px !important; }
  .mr-lg-140 {
    margin-right: 140px !important; }
  .mr-lg-150 {
    margin-right: 150px !important; }
  .mr-lg-200 {
    margin-right: 200px !important; }
  .mr-lg-250 {
    margin-right: 250px !important; }
  .mr-lg--10 {
    margin-right: -10px !important; }
  .mr-lg--15 {
    margin-right: -15px !important; }
  .mr-lg--20 {
    margin-right: -20px !important; }
  .mr-lg--25 {
    margin-right: -25px !important; }
  .mr-lg--30 {
    margin-right: -30px !important; }
  .mr-lg--40 {
    margin-right: -40px !important; }
  .mr-lg--50 {
    margin-right: -50px !important; }
  .mr-lg--60 {
    margin-right: -60px !important; }
  .mr-lg--70 {
    margin-right: -70px !important; }
  .mr-lg--80 {
    margin-right: -80px !important; }
  .mr-lg--90 {
    margin-right: -90px !important; }
  .mr-lg--100 {
    margin-right: -100px !important; }
  .ml-lg--0 {
    margin-left: 0px !important; }
  .ml-lg-10 {
    margin-left: 10px !important; }
  .ml-lg-15 {
    margin-left: 15px !important; }
  .ml-lg-20 {
    margin-left: 20px !important; }
  .ml-lg-25 {
    margin-left: 25px !important; }
  .ml-lg-30 {
    margin-left: 30px !important; }
  .ml-lg-40 {
    margin-left: 40px !important; }
  .ml-lg-50 {
    margin-left: 50px !important; }
  .ml-lg-60 {
    margin-left: 60px !important; }
  .ml-lg-70 {
    margin-left: 70px !important; }
  .ml-lg-80 {
    margin-left: 80px !important; }
  .ml-lg-90 {
    margin-left: 90px !important; }
  .ml-lg-100 {
    margin-left: 100px !important; }
  .ml-lg-110 {
    margin-left: 110px !important; }
  .ml-lg-120 {
    margin-left: 120px !important; }
  .ml-lg-130 {
    margin-left: 130px !important; }
  .ml-lg-140 {
    margin-left: 140px !important; }
  .ml-lg-150 {
    margin-left: 150px !important; }
  .ml-lg-200 {
    margin-left: 200px !important; }
  .ml-lg-250 {
    margin-left: 250px !important; }
  .ml-lg--10 {
    margin-left: -10px !important; }
  .ml-lg--15 {
    margin-left: -15px !important; }
  .ml-lg--20 {
    margin-left: -20px !important; }
  .ml-lg--25 {
    margin-left: -25px !important; }
  .ml-lg--30 {
    margin-left: -30px !important; }
  .ml-lg--40 {
    margin-left: -40px !important; }
  .ml-lg--50 {
    margin-left: -50px !important; }
  .ml-lg--60 {
    margin-left: -60px !important; }
  .ml-lg--70 {
    margin-left: -70px !important; }
  .ml-lg--80 {
    margin-left: -80px !important; }
  .ml-lg--90 {
    margin-left: -90px !important; }
  .ml-lg--100 {
    margin-left: -100px !important; } }

@media (max-width: 991.98px) {
  .m-md--0 {
    margin: 0px !important; }
  .m-md-10 {
    margin: 10px !important; }
  .m-md-15 {
    margin: 15px !important; }
  .m-md-20 {
    margin: 20px !important; }
  .m-md-25 {
    margin: 25px !important; }
  .m-md-30 {
    margin: 30px !important; }
  .m-md-40 {
    margin: 40px !important; }
  .m-md-50 {
    margin: 50px !important; }
  .m-md-60 {
    margin: 60px !important; }
  .m-md-70 {
    margin: 70px !important; }
  .m-md-80 {
    margin: 80px !important; }
  .m-md-90 {
    margin: 90px !important; }
  .m-md-100 {
    margin: 100px !important; }
  .m-md-110 {
    margin: 110px !important; }
  .m-md-120 {
    margin: 120px !important; }
  .m-md-130 {
    margin: 130px !important; }
  .m-md-140 {
    margin: 140px !important; }
  .m-md-150 {
    margin: 150px !important; }
  .m-md-200 {
    margin: 200px !important; }
  .m-md-250 {
    margin: 250px !important; }
  .m-md--10 {
    margin: -10px !important; }
  .m-md--15 {
    margin: -15px !important; }
  .m-md--20 {
    margin: -20px !important; }
  .m-md--25 {
    margin: -25px !important; }
  .m-md--30 {
    margin: -30px !important; }
  .m-md--40 {
    margin: -40px !important; }
  .m-md--50 {
    margin: -50px !important; }
  .m-md--60 {
    margin: -60px !important; }
  .m-md--70 {
    margin: -70px !important; }
  .m-md--80 {
    margin: -80px !important; }
  .m-md--90 {
    margin: -90px !important; }
  .m-md--100 {
    margin: -100px !important; }
  .mt-md--0 {
    margin-top: 0px !important; }
  .mt-md-10 {
    margin-top: 10px !important; }
  .mt-md-15 {
    margin-top: 15px !important; }
  .mt-md-20 {
    margin-top: 20px !important; }
  .mt-md-25 {
    margin-top: 25px !important; }
  .mt-md-30 {
    margin-top: 30px !important; }
  .mt-md-40 {
    margin-top: 40px !important; }
  .mt-md-50 {
    margin-top: 50px !important; }
  .mt-md-60 {
    margin-top: 60px !important; }
  .mt-md-70 {
    margin-top: 70px !important; }
  .mt-md-80 {
    margin-top: 80px !important; }
  .mt-md-90 {
    margin-top: 90px !important; }
  .mt-md-100 {
    margin-top: 100px !important; }
  .mt-md-110 {
    margin-top: 110px !important; }
  .mt-md-120 {
    margin-top: 120px !important; }
  .mt-md-130 {
    margin-top: 130px !important; }
  .mt-md-140 {
    margin-top: 140px !important; }
  .mt-md-150 {
    margin-top: 150px !important; }
  .mt-md-200 {
    margin-top: 200px !important; }
  .mt-md-250 {
    margin-top: 250px !important; }
  .mt-md--10 {
    margin-top: -10px !important; }
  .mt-md--15 {
    margin-top: -15px !important; }
  .mt-md--20 {
    margin-top: -20px !important; }
  .mt-md--25 {
    margin-top: -25px !important; }
  .mt-md--30 {
    margin-top: -30px !important; }
  .mt-md--40 {
    margin-top: -40px !important; }
  .mt-md--50 {
    margin-top: -50px !important; }
  .mt-md--60 {
    margin-top: -60px !important; }
  .mt-md--70 {
    margin-top: -70px !important; }
  .mt-md--80 {
    margin-top: -80px !important; }
  .mt-md--90 {
    margin-top: -90px !important; }
  .mt-md--100 {
    margin-top: -100px !important; }
  .mb-md--0 {
    margin-bottom: 0px !important; }
  .mb-md-10 {
    margin-bottom: 10px !important; }
  .mb-md-15 {
    margin-bottom: 15px !important; }
  .mb-md-20 {
    margin-bottom: 20px !important; }
  .mb-md-25 {
    margin-bottom: 25px !important; }
  .mb-md-30 {
    margin-bottom: 30px !important; }
  .mb-md-40 {
    margin-bottom: 40px !important; }
  .mb-md-50 {
    margin-bottom: 50px !important; }
  .mb-md-60 {
    margin-bottom: 60px !important; }
  .mb-md-70 {
    margin-bottom: 70px !important; }
  .mb-md-80 {
    margin-bottom: 80px !important; }
  .mb-md-90 {
    margin-bottom: 90px !important; }
  .mb-md-100 {
    margin-bottom: 100px !important; }
  .mb-md-110 {
    margin-bottom: 110px !important; }
  .mb-md-120 {
    margin-bottom: 120px !important; }
  .mb-md-130 {
    margin-bottom: 130px !important; }
  .mb-md-140 {
    margin-bottom: 140px !important; }
  .mb-md-150 {
    margin-bottom: 150px !important; }
  .mb-md-200 {
    margin-bottom: 200px !important; }
  .mb-md-250 {
    margin-bottom: 250px !important; }
  .mb-md--10 {
    margin-bottom: -10px !important; }
  .mb-md--15 {
    margin-bottom: -15px !important; }
  .mb-md--20 {
    margin-bottom: -20px !important; }
  .mb-md--25 {
    margin-bottom: -25px !important; }
  .mb-md--30 {
    margin-bottom: -30px !important; }
  .mb-md--40 {
    margin-bottom: -40px !important; }
  .mb-md--50 {
    margin-bottom: -50px !important; }
  .mb-md--60 {
    margin-bottom: -60px !important; }
  .mb-md--70 {
    margin-bottom: -70px !important; }
  .mb-md--80 {
    margin-bottom: -80px !important; }
  .mb-md--90 {
    margin-bottom: -90px !important; }
  .mb-md--100 {
    margin-bottom: -100px !important; }
  .mr-md--0 {
    margin-right: 0px !important; }
  .mr-md-10 {
    margin-right: 10px !important; }
  .mr-md-15 {
    margin-right: 15px !important; }
  .mr-md-20 {
    margin-right: 20px !important; }
  .mr-md-25 {
    margin-right: 25px !important; }
  .mr-md-30 {
    margin-right: 30px !important; }
  .mr-md-40 {
    margin-right: 40px !important; }
  .mr-md-50 {
    margin-right: 50px !important; }
  .mr-md-60 {
    margin-right: 60px !important; }
  .mr-md-70 {
    margin-right: 70px !important; }
  .mr-md-80 {
    margin-right: 80px !important; }
  .mr-md-90 {
    margin-right: 90px !important; }
  .mr-md-100 {
    margin-right: 100px !important; }
  .mr-md-110 {
    margin-right: 110px !important; }
  .mr-md-120 {
    margin-right: 120px !important; }
  .mr-md-130 {
    margin-right: 130px !important; }
  .mr-md-140 {
    margin-right: 140px !important; }
  .mr-md-150 {
    margin-right: 150px !important; }
  .mr-md-200 {
    margin-right: 200px !important; }
  .mr-md-250 {
    margin-right: 250px !important; }
  .mr-md--10 {
    margin-right: -10px !important; }
  .mr-md--15 {
    margin-right: -15px !important; }
  .mr-md--20 {
    margin-right: -20px !important; }
  .mr-md--25 {
    margin-right: -25px !important; }
  .mr-md--30 {
    margin-right: -30px !important; }
  .mr-md--40 {
    margin-right: -40px !important; }
  .mr-md--50 {
    margin-right: -50px !important; }
  .mr-md--60 {
    margin-right: -60px !important; }
  .mr-md--70 {
    margin-right: -70px !important; }
  .mr-md--80 {
    margin-right: -80px !important; }
  .mr-md--90 {
    margin-right: -90px !important; }
  .mr-md--100 {
    margin-right: -100px !important; }
  .ml-md--0 {
    margin-left: 0px !important; }
  .ml-md-10 {
    margin-left: 10px !important; }
  .ml-md-15 {
    margin-left: 15px !important; }
  .ml-md-20 {
    margin-left: 20px !important; }
  .ml-md-25 {
    margin-left: 25px !important; }
  .ml-md-30 {
    margin-left: 30px !important; }
  .ml-md-40 {
    margin-left: 40px !important; }
  .ml-md-50 {
    margin-left: 50px !important; }
  .ml-md-60 {
    margin-left: 60px !important; }
  .ml-md-70 {
    margin-left: 70px !important; }
  .ml-md-80 {
    margin-left: 80px !important; }
  .ml-md-90 {
    margin-left: 90px !important; }
  .ml-md-100 {
    margin-left: 100px !important; }
  .ml-md-110 {
    margin-left: 110px !important; }
  .ml-md-120 {
    margin-left: 120px !important; }
  .ml-md-130 {
    margin-left: 130px !important; }
  .ml-md-140 {
    margin-left: 140px !important; }
  .ml-md-150 {
    margin-left: 150px !important; }
  .ml-md-200 {
    margin-left: 200px !important; }
  .ml-md-250 {
    margin-left: 250px !important; }
  .ml-md--10 {
    margin-left: -10px !important; }
  .ml-md--15 {
    margin-left: -15px !important; }
  .ml-md--20 {
    margin-left: -20px !important; }
  .ml-md--25 {
    margin-left: -25px !important; }
  .ml-md--30 {
    margin-left: -30px !important; }
  .ml-md--40 {
    margin-left: -40px !important; }
  .ml-md--50 {
    margin-left: -50px !important; }
  .ml-md--60 {
    margin-left: -60px !important; }
  .ml-md--70 {
    margin-left: -70px !important; }
  .ml-md--80 {
    margin-left: -80px !important; }
  .ml-md--90 {
    margin-left: -90px !important; }
  .ml-md--100 {
    margin-left: -100px !important; } }

@media (max-width: 767.98px) {
  .m-sm--0 {
    margin: 0px !important; }
  .m-sm-10 {
    margin: 10px !important; }
  .m-sm-15 {
    margin: 15px !important; }
  .m-sm-20 {
    margin: 20px !important; }
  .m-sm-25 {
    margin: 25px !important; }
  .m-sm-30 {
    margin: 30px !important; }
  .m-sm-40 {
    margin: 40px !important; }
  .m-sm-50 {
    margin: 50px !important; }
  .m-sm-60 {
    margin: 60px !important; }
  .m-sm-70 {
    margin: 70px !important; }
  .m-sm-80 {
    margin: 80px !important; }
  .m-sm-90 {
    margin: 90px !important; }
  .m-sm-100 {
    margin: 100px !important; }
  .m-sm-110 {
    margin: 110px !important; }
  .m-sm-120 {
    margin: 120px !important; }
  .m-sm-130 {
    margin: 130px !important; }
  .m-sm-140 {
    margin: 140px !important; }
  .m-sm-150 {
    margin: 150px !important; }
  .m-sm-200 {
    margin: 200px !important; }
  .m-sm-250 {
    margin: 250px !important; }
  .m-sm--10 {
    margin: -10px !important; }
  .m-sm--15 {
    margin: -15px !important; }
  .m-sm--20 {
    margin: -20px !important; }
  .m-sm--25 {
    margin: -25px !important; }
  .m-sm--30 {
    margin: -30px !important; }
  .m-sm--40 {
    margin: -40px !important; }
  .m-sm--50 {
    margin: -50px !important; }
  .m-sm--60 {
    margin: -60px !important; }
  .m-sm--70 {
    margin: -70px !important; }
  .m-sm--80 {
    margin: -80px !important; }
  .m-sm--90 {
    margin: -90px !important; }
  .m-sm--100 {
    margin: -100px !important; }
  .mt-sm--0 {
    margin-top: 0px !important; }
  .mt-sm-10 {
    margin-top: 10px !important; }
  .mt-sm-15 {
    margin-top: 15px !important; }
  .mt-sm-20 {
    margin-top: 20px !important; }
  .mt-sm-25 {
    margin-top: 25px !important; }
  .mt-sm-30 {
    margin-top: 30px !important; }
  .mt-sm-40 {
    margin-top: 40px !important; }
  .mt-sm-50 {
    margin-top: 50px !important; }
  .mt-sm-60 {
    margin-top: 60px !important; }
  .mt-sm-70 {
    margin-top: 70px !important; }
  .mt-sm-80 {
    margin-top: 80px !important; }
  .mt-sm-90 {
    margin-top: 90px !important; }
  .mt-sm-100 {
    margin-top: 100px !important; }
  .mt-sm-110 {
    margin-top: 110px !important; }
  .mt-sm-120 {
    margin-top: 120px !important; }
  .mt-sm-130 {
    margin-top: 130px !important; }
  .mt-sm-140 {
    margin-top: 140px !important; }
  .mt-sm-150 {
    margin-top: 150px !important; }
  .mt-sm-200 {
    margin-top: 200px !important; }
  .mt-sm-250 {
    margin-top: 250px !important; }
  .mt-sm--10 {
    margin-top: -10px !important; }
  .mt-sm--15 {
    margin-top: -15px !important; }
  .mt-sm--20 {
    margin-top: -20px !important; }
  .mt-sm--25 {
    margin-top: -25px !important; }
  .mt-sm--30 {
    margin-top: -30px !important; }
  .mt-sm--40 {
    margin-top: -40px !important; }
  .mt-sm--50 {
    margin-top: -50px !important; }
  .mt-sm--60 {
    margin-top: -60px !important; }
  .mt-sm--70 {
    margin-top: -70px !important; }
  .mt-sm--80 {
    margin-top: -80px !important; }
  .mt-sm--90 {
    margin-top: -90px !important; }
  .mt-sm--100 {
    margin-top: -100px !important; }
  .mb-sm--0 {
    margin-bottom: 0px !important; }
  .mb-sm-10 {
    margin-bottom: 10px !important; }
  .mb-sm-15 {
    margin-bottom: 15px !important; }
  .mb-sm-20 {
    margin-bottom: 20px !important; }
  .mb-sm-25 {
    margin-bottom: 25px !important; }
  .mb-sm-30 {
    margin-bottom: 30px !important; }
  .mb-sm-40 {
    margin-bottom: 40px !important; }
  .mb-sm-50 {
    margin-bottom: 50px !important; }
  .mb-sm-60 {
    margin-bottom: 60px !important; }
  .mb-sm-70 {
    margin-bottom: 70px !important; }
  .mb-sm-80 {
    margin-bottom: 80px !important; }
  .mb-sm-90 {
    margin-bottom: 90px !important; }
  .mb-sm-100 {
    margin-bottom: 100px !important; }
  .mb-sm-110 {
    margin-bottom: 110px !important; }
  .mb-sm-120 {
    margin-bottom: 120px !important; }
  .mb-sm-130 {
    margin-bottom: 130px !important; }
  .mb-sm-140 {
    margin-bottom: 140px !important; }
  .mb-sm-150 {
    margin-bottom: 150px !important; }
  .mb-sm-200 {
    margin-bottom: 200px !important; }
  .mb-sm-250 {
    margin-bottom: 250px !important; }
  .mb-sm--10 {
    margin-bottom: -10px !important; }
  .mb-sm--15 {
    margin-bottom: -15px !important; }
  .mb-sm--20 {
    margin-bottom: -20px !important; }
  .mb-sm--25 {
    margin-bottom: -25px !important; }
  .mb-sm--30 {
    margin-bottom: -30px !important; }
  .mb-sm--40 {
    margin-bottom: -40px !important; }
  .mb-sm--50 {
    margin-bottom: -50px !important; }
  .mb-sm--60 {
    margin-bottom: -60px !important; }
  .mb-sm--70 {
    margin-bottom: -70px !important; }
  .mb-sm--80 {
    margin-bottom: -80px !important; }
  .mb-sm--90 {
    margin-bottom: -90px !important; }
  .mb-sm--100 {
    margin-bottom: -100px !important; }
  .mr-sm--0 {
    margin-right: 0px !important; }
  .mr-sm-10 {
    margin-right: 10px !important; }
  .mr-sm-15 {
    margin-right: 15px !important; }
  .mr-sm-20 {
    margin-right: 20px !important; }
  .mr-sm-25 {
    margin-right: 25px !important; }
  .mr-sm-30 {
    margin-right: 30px !important; }
  .mr-sm-40 {
    margin-right: 40px !important; }
  .mr-sm-50 {
    margin-right: 50px !important; }
  .mr-sm-60 {
    margin-right: 60px !important; }
  .mr-sm-70 {
    margin-right: 70px !important; }
  .mr-sm-80 {
    margin-right: 80px !important; }
  .mr-sm-90 {
    margin-right: 90px !important; }
  .mr-sm-100 {
    margin-right: 100px !important; }
  .mr-sm-110 {
    margin-right: 110px !important; }
  .mr-sm-120 {
    margin-right: 120px !important; }
  .mr-sm-130 {
    margin-right: 130px !important; }
  .mr-sm-140 {
    margin-right: 140px !important; }
  .mr-sm-150 {
    margin-right: 150px !important; }
  .mr-sm-200 {
    margin-right: 200px !important; }
  .mr-sm-250 {
    margin-right: 250px !important; }
  .mr-sm--10 {
    margin-right: -10px !important; }
  .mr-sm--15 {
    margin-right: -15px !important; }
  .mr-sm--20 {
    margin-right: -20px !important; }
  .mr-sm--25 {
    margin-right: -25px !important; }
  .mr-sm--30 {
    margin-right: -30px !important; }
  .mr-sm--40 {
    margin-right: -40px !important; }
  .mr-sm--50 {
    margin-right: -50px !important; }
  .mr-sm--60 {
    margin-right: -60px !important; }
  .mr-sm--70 {
    margin-right: -70px !important; }
  .mr-sm--80 {
    margin-right: -80px !important; }
  .mr-sm--90 {
    margin-right: -90px !important; }
  .mr-sm--100 {
    margin-right: -100px !important; }
  .ml-sm--0 {
    margin-left: 0px !important; }
  .ml-sm-10 {
    margin-left: 10px !important; }
  .ml-sm-15 {
    margin-left: 15px !important; }
  .ml-sm-20 {
    margin-left: 20px !important; }
  .ml-sm-25 {
    margin-left: 25px !important; }
  .ml-sm-30 {
    margin-left: 30px !important; }
  .ml-sm-40 {
    margin-left: 40px !important; }
  .ml-sm-50 {
    margin-left: 50px !important; }
  .ml-sm-60 {
    margin-left: 60px !important; }
  .ml-sm-70 {
    margin-left: 70px !important; }
  .ml-sm-80 {
    margin-left: 80px !important; }
  .ml-sm-90 {
    margin-left: 90px !important; }
  .ml-sm-100 {
    margin-left: 100px !important; }
  .ml-sm-110 {
    margin-left: 110px !important; }
  .ml-sm-120 {
    margin-left: 120px !important; }
  .ml-sm-130 {
    margin-left: 130px !important; }
  .ml-sm-140 {
    margin-left: 140px !important; }
  .ml-sm-150 {
    margin-left: 150px !important; }
  .ml-sm-200 {
    margin-left: 200px !important; }
  .ml-sm-250 {
    margin-left: 250px !important; }
  .ml-sm--10 {
    margin-left: -10px !important; }
  .ml-sm--15 {
    margin-left: -15px !important; }
  .ml-sm--20 {
    margin-left: -20px !important; }
  .ml-sm--25 {
    margin-left: -25px !important; }
  .ml-sm--30 {
    margin-left: -30px !important; }
  .ml-sm--40 {
    margin-left: -40px !important; }
  .ml-sm--50 {
    margin-left: -50px !important; }
  .ml-sm--60 {
    margin-left: -60px !important; }
  .ml-sm--70 {
    margin-left: -70px !important; }
  .ml-sm--80 {
    margin-left: -80px !important; }
  .ml-sm--90 {
    margin-left: -90px !important; }
  .ml-sm--100 {
    margin-left: -100px !important; } }

@media (max-width: 575.98px) {
  .m-xs--0 {
    margin: 0px !important; }
  .m-xs-10 {
    margin: 10px !important; }
  .m-xs-15 {
    margin: 15px !important; }
  .m-xs-20 {
    margin: 20px !important; }
  .m-xs-25 {
    margin: 25px !important; }
  .m-xs-30 {
    margin: 30px !important; }
  .m-xs-40 {
    margin: 40px !important; }
  .m-xs-50 {
    margin: 50px !important; }
  .m-xs-60 {
    margin: 60px !important; }
  .m-xs-70 {
    margin: 70px !important; }
  .m-xs-80 {
    margin: 80px !important; }
  .m-xs-90 {
    margin: 90px !important; }
  .m-xs-100 {
    margin: 100px !important; }
  .m-xs-110 {
    margin: 110px !important; }
  .m-xs-120 {
    margin: 120px !important; }
  .m-xs-130 {
    margin: 130px !important; }
  .m-xs-140 {
    margin: 140px !important; }
  .m-xs-150 {
    margin: 150px !important; }
  .m-xs-200 {
    margin: 200px !important; }
  .m-xs-250 {
    margin: 250px !important; }
  .m-xs--10 {
    margin: -10px !important; }
  .m-xs--15 {
    margin: -15px !important; }
  .m-xs--20 {
    margin: -20px !important; }
  .m-xs--25 {
    margin: -25px !important; }
  .m-xs--30 {
    margin: -30px !important; }
  .m-xs--40 {
    margin: -40px !important; }
  .m-xs--50 {
    margin: -50px !important; }
  .m-xs--60 {
    margin: -60px !important; }
  .m-xs--70 {
    margin: -70px !important; }
  .m-xs--80 {
    margin: -80px !important; }
  .m-xs--90 {
    margin: -90px !important; }
  .m-xs--100 {
    margin: -100px !important; }
  .mt-xs--0 {
    margin-top: 0px !important; }
  .mt-xs-10 {
    margin-top: 10px !important; }
  .mt-xs-15 {
    margin-top: 15px !important; }
  .mt-xs-20 {
    margin-top: 20px !important; }
  .mt-xs-25 {
    margin-top: 25px !important; }
  .mt-xs-30 {
    margin-top: 30px !important; }
  .mt-xs-40 {
    margin-top: 40px !important; }
  .mt-xs-50 {
    margin-top: 50px !important; }
  .mt-xs-60 {
    margin-top: 60px !important; }
  .mt-xs-70 {
    margin-top: 70px !important; }
  .mt-xs-80 {
    margin-top: 80px !important; }
  .mt-xs-90 {
    margin-top: 90px !important; }
  .mt-xs-100 {
    margin-top: 100px !important; }
  .mt-xs-110 {
    margin-top: 110px !important; }
  .mt-xs-120 {
    margin-top: 120px !important; }
  .mt-xs-130 {
    margin-top: 130px !important; }
  .mt-xs-140 {
    margin-top: 140px !important; }
  .mt-xs-150 {
    margin-top: 150px !important; }
  .mt-xs-200 {
    margin-top: 200px !important; }
  .mt-xs-250 {
    margin-top: 250px !important; }
  .mt-xs--10 {
    margin-top: -10px !important; }
  .mt-xs--15 {
    margin-top: -15px !important; }
  .mt-xs--20 {
    margin-top: -20px !important; }
  .mt-xs--25 {
    margin-top: -25px !important; }
  .mt-xs--30 {
    margin-top: -30px !important; }
  .mt-xs--40 {
    margin-top: -40px !important; }
  .mt-xs--50 {
    margin-top: -50px !important; }
  .mt-xs--60 {
    margin-top: -60px !important; }
  .mt-xs--70 {
    margin-top: -70px !important; }
  .mt-xs--80 {
    margin-top: -80px !important; }
  .mt-xs--90 {
    margin-top: -90px !important; }
  .mt-xs--100 {
    margin-top: -100px !important; }
  .mb-xs--0 {
    margin-bottom: 0px !important; }
  .mb-xs-10 {
    margin-bottom: 10px !important; }
  .mb-xs-15 {
    margin-bottom: 15px !important; }
  .mb-xs-20 {
    margin-bottom: 20px !important; }
  .mb-xs-25 {
    margin-bottom: 25px !important; }
  .mb-xs-30 {
    margin-bottom: 30px !important; }
  .mb-xs-40 {
    margin-bottom: 40px !important; }
  .mb-xs-50 {
    margin-bottom: 50px !important; }
  .mb-xs-60 {
    margin-bottom: 60px !important; }
  .mb-xs-70 {
    margin-bottom: 70px !important; }
  .mb-xs-80 {
    margin-bottom: 80px !important; }
  .mb-xs-90 {
    margin-bottom: 90px !important; }
  .mb-xs-100 {
    margin-bottom: 100px !important; }
  .mb-xs-110 {
    margin-bottom: 110px !important; }
  .mb-xs-120 {
    margin-bottom: 120px !important; }
  .mb-xs-130 {
    margin-bottom: 130px !important; }
  .mb-xs-140 {
    margin-bottom: 140px !important; }
  .mb-xs-150 {
    margin-bottom: 150px !important; }
  .mb-xs-200 {
    margin-bottom: 200px !important; }
  .mb-xs-250 {
    margin-bottom: 250px !important; }
  .mb-xs--10 {
    margin-bottom: -10px !important; }
  .mb-xs--15 {
    margin-bottom: -15px !important; }
  .mb-xs--20 {
    margin-bottom: -20px !important; }
  .mb-xs--25 {
    margin-bottom: -25px !important; }
  .mb-xs--30 {
    margin-bottom: -30px !important; }
  .mb-xs--40 {
    margin-bottom: -40px !important; }
  .mb-xs--50 {
    margin-bottom: -50px !important; }
  .mb-xs--60 {
    margin-bottom: -60px !important; }
  .mb-xs--70 {
    margin-bottom: -70px !important; }
  .mb-xs--80 {
    margin-bottom: -80px !important; }
  .mb-xs--90 {
    margin-bottom: -90px !important; }
  .mb-xs--100 {
    margin-bottom: -100px !important; }
  .mr-xs--0 {
    margin-right: 0px !important; }
  .mr-xs-10 {
    margin-right: 10px !important; }
  .mr-xs-15 {
    margin-right: 15px !important; }
  .mr-xs-20 {
    margin-right: 20px !important; }
  .mr-xs-25 {
    margin-right: 25px !important; }
  .mr-xs-30 {
    margin-right: 30px !important; }
  .mr-xs-40 {
    margin-right: 40px !important; }
  .mr-xs-50 {
    margin-right: 50px !important; }
  .mr-xs-60 {
    margin-right: 60px !important; }
  .mr-xs-70 {
    margin-right: 70px !important; }
  .mr-xs-80 {
    margin-right: 80px !important; }
  .mr-xs-90 {
    margin-right: 90px !important; }
  .mr-xs-100 {
    margin-right: 100px !important; }
  .mr-xs-110 {
    margin-right: 110px !important; }
  .mr-xs-120 {
    margin-right: 120px !important; }
  .mr-xs-130 {
    margin-right: 130px !important; }
  .mr-xs-140 {
    margin-right: 140px !important; }
  .mr-xs-150 {
    margin-right: 150px !important; }
  .mr-xs-200 {
    margin-right: 200px !important; }
  .mr-xs-250 {
    margin-right: 250px !important; }
  .mr-xs--10 {
    margin-right: -10px !important; }
  .mr-xs--15 {
    margin-right: -15px !important; }
  .mr-xs--20 {
    margin-right: -20px !important; }
  .mr-xs--25 {
    margin-right: -25px !important; }
  .mr-xs--30 {
    margin-right: -30px !important; }
  .mr-xs--40 {
    margin-right: -40px !important; }
  .mr-xs--50 {
    margin-right: -50px !important; }
  .mr-xs--60 {
    margin-right: -60px !important; }
  .mr-xs--70 {
    margin-right: -70px !important; }
  .mr-xs--80 {
    margin-right: -80px !important; }
  .mr-xs--90 {
    margin-right: -90px !important; }
  .mr-xs--100 {
    margin-right: -100px !important; }
  .ml-xs--0 {
    margin-left: 0px !important; }
  .ml-xs-10 {
    margin-left: 10px !important; }
  .ml-xs-15 {
    margin-left: 15px !important; }
  .ml-xs-20 {
    margin-left: 20px !important; }
  .ml-xs-25 {
    margin-left: 25px !important; }
  .ml-xs-30 {
    margin-left: 30px !important; }
  .ml-xs-40 {
    margin-left: 40px !important; }
  .ml-xs-50 {
    margin-left: 50px !important; }
  .ml-xs-60 {
    margin-left: 60px !important; }
  .ml-xs-70 {
    margin-left: 70px !important; }
  .ml-xs-80 {
    margin-left: 80px !important; }
  .ml-xs-90 {
    margin-left: 90px !important; }
  .ml-xs-100 {
    margin-left: 100px !important; }
  .ml-xs-110 {
    margin-left: 110px !important; }
  .ml-xs-120 {
    margin-left: 120px !important; }
  .ml-xs-130 {
    margin-left: 130px !important; }
  .ml-xs-140 {
    margin-left: 140px !important; }
  .ml-xs-150 {
    margin-left: 150px !important; }
  .ml-xs-200 {
    margin-left: 200px !important; }
  .ml-xs-250 {
    margin-left: 250px !important; }
  .ml-xs--10 {
    margin-left: -10px !important; }
  .ml-xs--15 {
    margin-left: -15px !important; }
  .ml-xs--20 {
    margin-left: -20px !important; }
  .ml-xs--25 {
    margin-left: -25px !important; }
  .ml-xs--30 {
    margin-left: -30px !important; }
  .ml-xs--40 {
    margin-left: -40px !important; }
  .ml-xs--50 {
    margin-left: -50px !important; }
  .ml-xs--60 {
    margin-left: -60px !important; }
  .ml-xs--70 {
    margin-left: -70px !important; }
  .ml-xs--80 {
    margin-left: -80px !important; }
  .ml-xs--90 {
    margin-left: -90px !important; }
  .ml-xs--100 {
    margin-left: -100px !important; } }

/* Padding */
.p--0 {
  padding: 0px !important; }

.p-10 {
  padding: 10px !important; }

.p-15 {
  padding: 15px !important; }

.p-20 {
  padding: 20px !important; }

.p-25 {
  padding: 25px !important; }

.p-30 {
  padding: 30px !important; }

.p-40 {
  padding: 40px !important; }

.p-50 {
  padding: 50px !important; }

.p-60 {
  padding: 60px !important; }

.p-70 {
  padding: 70px !important; }

.p-80 {
  padding: 80px !important; }

.p-90 {
  padding: 90px !important; }

.p-100 {
  padding: 100px !important; }

.p-110 {
  padding: 110px !important; }

.p-120 {
  padding: 120px !important; }

.p-130 {
  padding: 130px !important; }

.p-140 {
  padding: 140px !important; }

.p-150 {
  padding: 150px !important; }

.p-200 {
  padding: 200px !important; }

.p-250 {
  padding: 250px !important; }

.p--10 {
  padding: -10px !important; }

.p--15 {
  padding: -15px !important; }

.p--20 {
  padding: -20px !important; }

.p--25 {
  padding: -25px !important; }

.p--30 {
  padding: -30px !important; }

.p--40 {
  padding: -40px !important; }

.p--50 {
  padding: -50px !important; }

.p--60 {
  padding: -60px !important; }

.p--70 {
  padding: -70px !important; }

.p--80 {
  padding: -80px !important; }

.p--90 {
  padding: -90px !important; }

.p--100 {
  padding: -100px !important; }

.pt--0 {
  padding-top: 0px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-15 {
  padding-top: 15px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-25 {
  padding-top: 25px !important; }

.pt-30 {
  padding-top: 30px !important; }

.pt-40 {
  padding-top: 40px !important; }

.pt-50 {
  padding-top: 50px !important; }

.pt-60 {
  padding-top: 60px !important; }

.pt-70 {
  padding-top: 70px !important; }

.pt-80 {
  padding-top: 80px !important; }

.pt-90 {
  padding-top: 90px !important; }

.pt-100 {
  padding-top: 100px !important; }

.pt-110 {
  padding-top: 110px !important; }

.pt-120 {
  padding-top: 120px !important; }

.pt-130 {
  padding-top: 130px !important; }

.pt-140 {
  padding-top: 140px !important; }

.pt-150 {
  padding-top: 150px !important; }

.pt-200 {
  padding-top: 200px !important; }

.pt-250 {
  padding-top: 250px !important; }

.pt--10 {
  padding-top: -10px !important; }

.pt--15 {
  padding-top: -15px !important; }

.pt--20 {
  padding-top: -20px !important; }

.pt--25 {
  padding-top: -25px !important; }

.pt--30 {
  padding-top: -30px !important; }

.pt--40 {
  padding-top: -40px !important; }

.pt--50 {
  padding-top: -50px !important; }

.pt--60 {
  padding-top: -60px !important; }

.pt--70 {
  padding-top: -70px !important; }

.pt--80 {
  padding-top: -80px !important; }

.pt--90 {
  padding-top: -90px !important; }

.pt--100 {
  padding-top: -100px !important; }

.pb--0 {
  padding-bottom: 0px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-15 {
  padding-bottom: 15px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-25 {
  padding-bottom: 25px !important; }

.pb-30 {
  padding-bottom: 30px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pb-50 {
  padding-bottom: 50px !important; }

.pb-60 {
  padding-bottom: 60px !important; }

.pb-70 {
  padding-bottom: 70px !important; }

.pb-80 {
  padding-bottom: 80px !important; }

.pb-90 {
  padding-bottom: 90px !important; }

.pb-100 {
  padding-bottom: 100px !important; }

.pb-110 {
  padding-bottom: 110px !important; }

.pb-120 {
  padding-bottom: 120px !important; }

.pb-130 {
  padding-bottom: 130px !important; }

.pb-140 {
  padding-bottom: 140px !important; }

.pb-150 {
  padding-bottom: 150px !important; }

.pb-200 {
  padding-bottom: 200px !important; }

.pb-250 {
  padding-bottom: 250px !important; }

.pb--10 {
  padding-bottom: -10px !important; }

.pb--15 {
  padding-bottom: -15px !important; }

.pb--20 {
  padding-bottom: -20px !important; }

.pb--25 {
  padding-bottom: -25px !important; }

.pb--30 {
  padding-bottom: -30px !important; }

.pb--40 {
  padding-bottom: -40px !important; }

.pb--50 {
  padding-bottom: -50px !important; }

.pb--60 {
  padding-bottom: -60px !important; }

.pb--70 {
  padding-bottom: -70px !important; }

.pb--80 {
  padding-bottom: -80px !important; }

.pb--90 {
  padding-bottom: -90px !important; }

.pb--100 {
  padding-bottom: -100px !important; }

.pr--0 {
  padding-right: 0px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-15 {
  padding-right: 15px !important; }

.pr-20 {
  padding-right: 20px !important; }

.pr-25 {
  padding-right: 25px !important; }

.pr-30 {
  padding-right: 30px !important; }

.pr-40 {
  padding-right: 40px !important; }

.pr-50 {
  padding-right: 50px !important; }

.pr-60 {
  padding-right: 60px !important; }

.pr-70 {
  padding-right: 70px !important; }

.pr-80 {
  padding-right: 80px !important; }

.pr-90 {
  padding-right: 90px !important; }

.pr-100 {
  padding-right: 100px !important; }

.pr-110 {
  padding-right: 110px !important; }

.pr-120 {
  padding-right: 120px !important; }

.pr-130 {
  padding-right: 130px !important; }

.pr-140 {
  padding-right: 140px !important; }

.pr-150 {
  padding-right: 150px !important; }

.pr-200 {
  padding-right: 200px !important; }

.pr-250 {
  padding-right: 250px !important; }

.pr--10 {
  padding-right: -10px !important; }

.pr--15 {
  padding-right: -15px !important; }

.pr--20 {
  padding-right: -20px !important; }

.pr--25 {
  padding-right: -25px !important; }

.pr--30 {
  padding-right: -30px !important; }

.pr--40 {
  padding-right: -40px !important; }

.pr--50 {
  padding-right: -50px !important; }

.pr--60 {
  padding-right: -60px !important; }

.pr--70 {
  padding-right: -70px !important; }

.pr--80 {
  padding-right: -80px !important; }

.pr--90 {
  padding-right: -90px !important; }

.pr--100 {
  padding-right: -100px !important; }

.pl--0 {
  padding-left: 0px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-15 {
  padding-left: 15px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pl-25 {
  padding-left: 25px !important; }

.pl-30 {
  padding-left: 30px !important; }

.pl-40 {
  padding-left: 40px !important; }

.pl-50 {
  padding-left: 50px !important; }

.pl-60 {
  padding-left: 60px !important; }

.pl-70 {
  padding-left: 70px !important; }

.pl-80 {
  padding-left: 80px !important; }

.pl-90 {
  padding-left: 90px !important; }

.pl-100 {
  padding-left: 100px !important; }

.pl-110 {
  padding-left: 110px !important; }

.pl-120 {
  padding-left: 120px !important; }

.pl-130 {
  padding-left: 130px !important; }

.pl-140 {
  padding-left: 140px !important; }

.pl-150 {
  padding-left: 150px !important; }

.pl-200 {
  padding-left: 200px !important; }

.pl-250 {
  padding-left: 250px !important; }

.pl--10 {
  padding-left: -10px !important; }

.pl--15 {
  padding-left: -15px !important; }

.pl--20 {
  padding-left: -20px !important; }

.pl--25 {
  padding-left: -25px !important; }

.pl--30 {
  padding-left: -30px !important; }

.pl--40 {
  padding-left: -40px !important; }

.pl--50 {
  padding-left: -50px !important; }

.pl--60 {
  padding-left: -60px !important; }

.pl--70 {
  padding-left: -70px !important; }

.pl--80 {
  padding-left: -80px !important; }

.pl--90 {
  padding-left: -90px !important; }

.pl--100 {
  padding-left: -100px !important; }

@media (max-width: 1199.98px) {
  .p-lg--0 {
    padding: 0px !important; }
  .p-lg-10 {
    padding: 10px !important; }
  .p-lg-15 {
    padding: 15px !important; }
  .p-lg-20 {
    padding: 20px !important; }
  .p-lg-25 {
    padding: 25px !important; }
  .p-lg-30 {
    padding: 30px !important; }
  .p-lg-40 {
    padding: 40px !important; }
  .p-lg-50 {
    padding: 50px !important; }
  .p-lg-60 {
    padding: 60px !important; }
  .p-lg-70 {
    padding: 70px !important; }
  .p-lg-80 {
    padding: 80px !important; }
  .p-lg-90 {
    padding: 90px !important; }
  .p-lg-100 {
    padding: 100px !important; }
  .p-lg-110 {
    padding: 110px !important; }
  .p-lg-120 {
    padding: 120px !important; }
  .p-lg-130 {
    padding: 130px !important; }
  .p-lg-140 {
    padding: 140px !important; }
  .p-lg-150 {
    padding: 150px !important; }
  .p-lg-200 {
    padding: 200px !important; }
  .p-lg-250 {
    padding: 250px !important; }
  .p-lg--10 {
    padding: -10px !important; }
  .p-lg--15 {
    padding: -15px !important; }
  .p-lg--20 {
    padding: -20px !important; }
  .p-lg--25 {
    padding: -25px !important; }
  .p-lg--30 {
    padding: -30px !important; }
  .p-lg--40 {
    padding: -40px !important; }
  .p-lg--50 {
    padding: -50px !important; }
  .p-lg--60 {
    padding: -60px !important; }
  .p-lg--70 {
    padding: -70px !important; }
  .p-lg--80 {
    padding: -80px !important; }
  .p-lg--90 {
    padding: -90px !important; }
  .p-lg--100 {
    padding: -100px !important; }
  .pt-lg--0 {
    padding-top: 0px !important; }
  .pt-lg-10 {
    padding-top: 10px !important; }
  .pt-lg-15 {
    padding-top: 15px !important; }
  .pt-lg-20 {
    padding-top: 20px !important; }
  .pt-lg-25 {
    padding-top: 25px !important; }
  .pt-lg-30 {
    padding-top: 30px !important; }
  .pt-lg-40 {
    padding-top: 40px !important; }
  .pt-lg-50 {
    padding-top: 50px !important; }
  .pt-lg-60 {
    padding-top: 60px !important; }
  .pt-lg-70 {
    padding-top: 70px !important; }
  .pt-lg-80 {
    padding-top: 80px !important; }
  .pt-lg-90 {
    padding-top: 90px !important; }
  .pt-lg-100 {
    padding-top: 100px !important; }
  .pt-lg-110 {
    padding-top: 110px !important; }
  .pt-lg-120 {
    padding-top: 120px !important; }
  .pt-lg-130 {
    padding-top: 130px !important; }
  .pt-lg-140 {
    padding-top: 140px !important; }
  .pt-lg-150 {
    padding-top: 150px !important; }
  .pt-lg-200 {
    padding-top: 200px !important; }
  .pt-lg-250 {
    padding-top: 250px !important; }
  .pt-lg--10 {
    padding-top: -10px !important; }
  .pt-lg--15 {
    padding-top: -15px !important; }
  .pt-lg--20 {
    padding-top: -20px !important; }
  .pt-lg--25 {
    padding-top: -25px !important; }
  .pt-lg--30 {
    padding-top: -30px !important; }
  .pt-lg--40 {
    padding-top: -40px !important; }
  .pt-lg--50 {
    padding-top: -50px !important; }
  .pt-lg--60 {
    padding-top: -60px !important; }
  .pt-lg--70 {
    padding-top: -70px !important; }
  .pt-lg--80 {
    padding-top: -80px !important; }
  .pt-lg--90 {
    padding-top: -90px !important; }
  .pt-lg--100 {
    padding-top: -100px !important; }
  .pb-lg--0 {
    padding-bottom: 0px !important; }
  .pb-lg-10 {
    padding-bottom: 10px !important; }
  .pb-lg-15 {
    padding-bottom: 15px !important; }
  .pb-lg-20 {
    padding-bottom: 20px !important; }
  .pb-lg-25 {
    padding-bottom: 25px !important; }
  .pb-lg-30 {
    padding-bottom: 30px !important; }
  .pb-lg-40 {
    padding-bottom: 40px !important; }
  .pb-lg-50 {
    padding-bottom: 50px !important; }
  .pb-lg-60 {
    padding-bottom: 60px !important; }
  .pb-lg-70 {
    padding-bottom: 70px !important; }
  .pb-lg-80 {
    padding-bottom: 80px !important; }
  .pb-lg-90 {
    padding-bottom: 90px !important; }
  .pb-lg-100 {
    padding-bottom: 100px !important; }
  .pb-lg-110 {
    padding-bottom: 110px !important; }
  .pb-lg-120 {
    padding-bottom: 120px !important; }
  .pb-lg-130 {
    padding-bottom: 130px !important; }
  .pb-lg-140 {
    padding-bottom: 140px !important; }
  .pb-lg-150 {
    padding-bottom: 150px !important; }
  .pb-lg-200 {
    padding-bottom: 200px !important; }
  .pb-lg-250 {
    padding-bottom: 250px !important; }
  .pb-lg--10 {
    padding-bottom: -10px !important; }
  .pb-lg--15 {
    padding-bottom: -15px !important; }
  .pb-lg--20 {
    padding-bottom: -20px !important; }
  .pb-lg--25 {
    padding-bottom: -25px !important; }
  .pb-lg--30 {
    padding-bottom: -30px !important; }
  .pb-lg--40 {
    padding-bottom: -40px !important; }
  .pb-lg--50 {
    padding-bottom: -50px !important; }
  .pb-lg--60 {
    padding-bottom: -60px !important; }
  .pb-lg--70 {
    padding-bottom: -70px !important; }
  .pb-lg--80 {
    padding-bottom: -80px !important; }
  .pb-lg--90 {
    padding-bottom: -90px !important; }
  .pb-lg--100 {
    padding-bottom: -100px !important; }
  .pr-lg--0 {
    padding-right: 0px !important; }
  .pr-lg-10 {
    padding-right: 10px !important; }
  .pr-lg-15 {
    padding-right: 15px !important; }
  .pr-lg-20 {
    padding-right: 20px !important; }
  .pr-lg-25 {
    padding-right: 25px !important; }
  .pr-lg-30 {
    padding-right: 30px !important; }
  .pr-lg-40 {
    padding-right: 40px !important; }
  .pr-lg-50 {
    padding-right: 50px !important; }
  .pr-lg-60 {
    padding-right: 60px !important; }
  .pr-lg-70 {
    padding-right: 70px !important; }
  .pr-lg-80 {
    padding-right: 80px !important; }
  .pr-lg-90 {
    padding-right: 90px !important; }
  .pr-lg-100 {
    padding-right: 100px !important; }
  .pr-lg-110 {
    padding-right: 110px !important; }
  .pr-lg-120 {
    padding-right: 120px !important; }
  .pr-lg-130 {
    padding-right: 130px !important; }
  .pr-lg-140 {
    padding-right: 140px !important; }
  .pr-lg-150 {
    padding-right: 150px !important; }
  .pr-lg-200 {
    padding-right: 200px !important; }
  .pr-lg-250 {
    padding-right: 250px !important; }
  .pr-lg--10 {
    padding-right: -10px !important; }
  .pr-lg--15 {
    padding-right: -15px !important; }
  .pr-lg--20 {
    padding-right: -20px !important; }
  .pr-lg--25 {
    padding-right: -25px !important; }
  .pr-lg--30 {
    padding-right: -30px !important; }
  .pr-lg--40 {
    padding-right: -40px !important; }
  .pr-lg--50 {
    padding-right: -50px !important; }
  .pr-lg--60 {
    padding-right: -60px !important; }
  .pr-lg--70 {
    padding-right: -70px !important; }
  .pr-lg--80 {
    padding-right: -80px !important; }
  .pr-lg--90 {
    padding-right: -90px !important; }
  .pr-lg--100 {
    padding-right: -100px !important; }
  .pl-lg--0 {
    padding-left: 0px !important; }
  .pl-lg-10 {
    padding-left: 10px !important; }
  .pl-lg-15 {
    padding-left: 15px !important; }
  .pl-lg-20 {
    padding-left: 20px !important; }
  .pl-lg-25 {
    padding-left: 25px !important; }
  .pl-lg-30 {
    padding-left: 30px !important; }
  .pl-lg-40 {
    padding-left: 40px !important; }
  .pl-lg-50 {
    padding-left: 50px !important; }
  .pl-lg-60 {
    padding-left: 60px !important; }
  .pl-lg-70 {
    padding-left: 70px !important; }
  .pl-lg-80 {
    padding-left: 80px !important; }
  .pl-lg-90 {
    padding-left: 90px !important; }
  .pl-lg-100 {
    padding-left: 100px !important; }
  .pl-lg-110 {
    padding-left: 110px !important; }
  .pl-lg-120 {
    padding-left: 120px !important; }
  .pl-lg-130 {
    padding-left: 130px !important; }
  .pl-lg-140 {
    padding-left: 140px !important; }
  .pl-lg-150 {
    padding-left: 150px !important; }
  .pl-lg-200 {
    padding-left: 200px !important; }
  .pl-lg-250 {
    padding-left: 250px !important; }
  .pl-lg--10 {
    padding-left: -10px !important; }
  .pl-lg--15 {
    padding-left: -15px !important; }
  .pl-lg--20 {
    padding-left: -20px !important; }
  .pl-lg--25 {
    padding-left: -25px !important; }
  .pl-lg--30 {
    padding-left: -30px !important; }
  .pl-lg--40 {
    padding-left: -40px !important; }
  .pl-lg--50 {
    padding-left: -50px !important; }
  .pl-lg--60 {
    padding-left: -60px !important; }
  .pl-lg--70 {
    padding-left: -70px !important; }
  .pl-lg--80 {
    padding-left: -80px !important; }
  .pl-lg--90 {
    padding-left: -90px !important; }
  .pl-lg--100 {
    padding-left: -100px !important; } }

@media (max-width: 991.98px) {
  .p-md--0 {
    padding: 0px !important; }
  .p-md-10 {
    padding: 10px !important; }
  .p-md-15 {
    padding: 15px !important; }
  .p-md-20 {
    padding: 20px !important; }
  .p-md-25 {
    padding: 25px !important; }
  .p-md-30 {
    padding: 30px !important; }
  .p-md-40 {
    padding: 40px !important; }
  .p-md-50 {
    padding: 50px !important; }
  .p-md-60 {
    padding: 60px !important; }
  .p-md-70 {
    padding: 70px !important; }
  .p-md-80 {
    padding: 80px !important; }
  .p-md-90 {
    padding: 90px !important; }
  .p-md-100 {
    padding: 100px !important; }
  .p-md-110 {
    padding: 110px !important; }
  .p-md-120 {
    padding: 120px !important; }
  .p-md-130 {
    padding: 130px !important; }
  .p-md-140 {
    padding: 140px !important; }
  .p-md-150 {
    padding: 150px !important; }
  .p-md-200 {
    padding: 200px !important; }
  .p-md-250 {
    padding: 250px !important; }
  .p-md--10 {
    padding: -10px !important; }
  .p-md--15 {
    padding: -15px !important; }
  .p-md--20 {
    padding: -20px !important; }
  .p-md--25 {
    padding: -25px !important; }
  .p-md--30 {
    padding: -30px !important; }
  .p-md--40 {
    padding: -40px !important; }
  .p-md--50 {
    padding: -50px !important; }
  .p-md--60 {
    padding: -60px !important; }
  .p-md--70 {
    padding: -70px !important; }
  .p-md--80 {
    padding: -80px !important; }
  .p-md--90 {
    padding: -90px !important; }
  .p-md--100 {
    padding: -100px !important; }
  .pt-md--0 {
    padding-top: 0px !important; }
  .pt-md-10 {
    padding-top: 10px !important; }
  .pt-md-15 {
    padding-top: 15px !important; }
  .pt-md-20 {
    padding-top: 20px !important; }
  .pt-md-25 {
    padding-top: 25px !important; }
  .pt-md-30 {
    padding-top: 30px !important; }
  .pt-md-40 {
    padding-top: 40px !important; }
  .pt-md-50 {
    padding-top: 50px !important; }
  .pt-md-60 {
    padding-top: 60px !important; }
  .pt-md-70 {
    padding-top: 70px !important; }
  .pt-md-80 {
    padding-top: 80px !important; }
  .pt-md-90 {
    padding-top: 90px !important; }
  .pt-md-100 {
    padding-top: 100px !important; }
  .pt-md-110 {
    padding-top: 110px !important; }
  .pt-md-120 {
    padding-top: 120px !important; }
  .pt-md-130 {
    padding-top: 130px !important; }
  .pt-md-140 {
    padding-top: 140px !important; }
  .pt-md-150 {
    padding-top: 150px !important; }
  .pt-md-200 {
    padding-top: 200px !important; }
  .pt-md-250 {
    padding-top: 250px !important; }
  .pt-md--10 {
    padding-top: -10px !important; }
  .pt-md--15 {
    padding-top: -15px !important; }
  .pt-md--20 {
    padding-top: -20px !important; }
  .pt-md--25 {
    padding-top: -25px !important; }
  .pt-md--30 {
    padding-top: -30px !important; }
  .pt-md--40 {
    padding-top: -40px !important; }
  .pt-md--50 {
    padding-top: -50px !important; }
  .pt-md--60 {
    padding-top: -60px !important; }
  .pt-md--70 {
    padding-top: -70px !important; }
  .pt-md--80 {
    padding-top: -80px !important; }
  .pt-md--90 {
    padding-top: -90px !important; }
  .pt-md--100 {
    padding-top: -100px !important; }
  .pb-md--0 {
    padding-bottom: 0px !important; }
  .pb-md-10 {
    padding-bottom: 10px !important; }
  .pb-md-15 {
    padding-bottom: 15px !important; }
  .pb-md-20 {
    padding-bottom: 20px !important; }
  .pb-md-25 {
    padding-bottom: 25px !important; }
  .pb-md-30 {
    padding-bottom: 30px !important; }
  .pb-md-40 {
    padding-bottom: 40px !important; }
  .pb-md-50 {
    padding-bottom: 50px !important; }
  .pb-md-60 {
    padding-bottom: 60px !important; }
  .pb-md-70 {
    padding-bottom: 70px !important; }
  .pb-md-80 {
    padding-bottom: 80px !important; }
  .pb-md-90 {
    padding-bottom: 90px !important; }
  .pb-md-100 {
    padding-bottom: 100px !important; }
  .pb-md-110 {
    padding-bottom: 110px !important; }
  .pb-md-120 {
    padding-bottom: 120px !important; }
  .pb-md-130 {
    padding-bottom: 130px !important; }
  .pb-md-140 {
    padding-bottom: 140px !important; }
  .pb-md-150 {
    padding-bottom: 150px !important; }
  .pb-md-200 {
    padding-bottom: 200px !important; }
  .pb-md-250 {
    padding-bottom: 250px !important; }
  .pb-md--10 {
    padding-bottom: -10px !important; }
  .pb-md--15 {
    padding-bottom: -15px !important; }
  .pb-md--20 {
    padding-bottom: -20px !important; }
  .pb-md--25 {
    padding-bottom: -25px !important; }
  .pb-md--30 {
    padding-bottom: -30px !important; }
  .pb-md--40 {
    padding-bottom: -40px !important; }
  .pb-md--50 {
    padding-bottom: -50px !important; }
  .pb-md--60 {
    padding-bottom: -60px !important; }
  .pb-md--70 {
    padding-bottom: -70px !important; }
  .pb-md--80 {
    padding-bottom: -80px !important; }
  .pb-md--90 {
    padding-bottom: -90px !important; }
  .pb-md--100 {
    padding-bottom: -100px !important; }
  .pr-md--0 {
    padding-right: 0px !important; }
  .pr-md-10 {
    padding-right: 10px !important; }
  .pr-md-15 {
    padding-right: 15px !important; }
  .pr-md-20 {
    padding-right: 20px !important; }
  .pr-md-25 {
    padding-right: 25px !important; }
  .pr-md-30 {
    padding-right: 30px !important; }
  .pr-md-40 {
    padding-right: 40px !important; }
  .pr-md-50 {
    padding-right: 50px !important; }
  .pr-md-60 {
    padding-right: 60px !important; }
  .pr-md-70 {
    padding-right: 70px !important; }
  .pr-md-80 {
    padding-right: 80px !important; }
  .pr-md-90 {
    padding-right: 90px !important; }
  .pr-md-100 {
    padding-right: 100px !important; }
  .pr-md-110 {
    padding-right: 110px !important; }
  .pr-md-120 {
    padding-right: 120px !important; }
  .pr-md-130 {
    padding-right: 130px !important; }
  .pr-md-140 {
    padding-right: 140px !important; }
  .pr-md-150 {
    padding-right: 150px !important; }
  .pr-md-200 {
    padding-right: 200px !important; }
  .pr-md-250 {
    padding-right: 250px !important; }
  .pr-md--10 {
    padding-right: -10px !important; }
  .pr-md--15 {
    padding-right: -15px !important; }
  .pr-md--20 {
    padding-right: -20px !important; }
  .pr-md--25 {
    padding-right: -25px !important; }
  .pr-md--30 {
    padding-right: -30px !important; }
  .pr-md--40 {
    padding-right: -40px !important; }
  .pr-md--50 {
    padding-right: -50px !important; }
  .pr-md--60 {
    padding-right: -60px !important; }
  .pr-md--70 {
    padding-right: -70px !important; }
  .pr-md--80 {
    padding-right: -80px !important; }
  .pr-md--90 {
    padding-right: -90px !important; }
  .pr-md--100 {
    padding-right: -100px !important; }
  .pl-md--0 {
    padding-left: 0px !important; }
  .pl-md-10 {
    padding-left: 10px !important; }
  .pl-md-15 {
    padding-left: 15px !important; }
  .pl-md-20 {
    padding-left: 20px !important; }
  .pl-md-25 {
    padding-left: 25px !important; }
  .pl-md-30 {
    padding-left: 30px !important; }
  .pl-md-40 {
    padding-left: 40px !important; }
  .pl-md-50 {
    padding-left: 50px !important; }
  .pl-md-60 {
    padding-left: 60px !important; }
  .pl-md-70 {
    padding-left: 70px !important; }
  .pl-md-80 {
    padding-left: 80px !important; }
  .pl-md-90 {
    padding-left: 90px !important; }
  .pl-md-100 {
    padding-left: 100px !important; }
  .pl-md-110 {
    padding-left: 110px !important; }
  .pl-md-120 {
    padding-left: 120px !important; }
  .pl-md-130 {
    padding-left: 130px !important; }
  .pl-md-140 {
    padding-left: 140px !important; }
  .pl-md-150 {
    padding-left: 150px !important; }
  .pl-md-200 {
    padding-left: 200px !important; }
  .pl-md-250 {
    padding-left: 250px !important; }
  .pl-md--10 {
    padding-left: -10px !important; }
  .pl-md--15 {
    padding-left: -15px !important; }
  .pl-md--20 {
    padding-left: -20px !important; }
  .pl-md--25 {
    padding-left: -25px !important; }
  .pl-md--30 {
    padding-left: -30px !important; }
  .pl-md--40 {
    padding-left: -40px !important; }
  .pl-md--50 {
    padding-left: -50px !important; }
  .pl-md--60 {
    padding-left: -60px !important; }
  .pl-md--70 {
    padding-left: -70px !important; }
  .pl-md--80 {
    padding-left: -80px !important; }
  .pl-md--90 {
    padding-left: -90px !important; }
  .pl-md--100 {
    padding-left: -100px !important; } }

@media (max-width: 767.98px) {
  .p-sm--0 {
    padding: 0px !important; }
  .p-sm-10 {
    padding: 10px !important; }
  .p-sm-15 {
    padding: 15px !important; }
  .p-sm-20 {
    padding: 20px !important; }
  .p-sm-25 {
    padding: 25px !important; }
  .p-sm-30 {
    padding: 30px !important; }
  .p-sm-40 {
    padding: 40px !important; }
  .p-sm-50 {
    padding: 50px !important; }
  .p-sm-60 {
    padding: 60px !important; }
  .p-sm-70 {
    padding: 70px !important; }
  .p-sm-80 {
    padding: 80px !important; }
  .p-sm-90 {
    padding: 90px !important; }
  .p-sm-100 {
    padding: 100px !important; }
  .p-sm-110 {
    padding: 110px !important; }
  .p-sm-120 {
    padding: 120px !important; }
  .p-sm-130 {
    padding: 130px !important; }
  .p-sm-140 {
    padding: 140px !important; }
  .p-sm-150 {
    padding: 150px !important; }
  .p-sm-200 {
    padding: 200px !important; }
  .p-sm-250 {
    padding: 250px !important; }
  .p-sm--10 {
    padding: -10px !important; }
  .p-sm--15 {
    padding: -15px !important; }
  .p-sm--20 {
    padding: -20px !important; }
  .p-sm--25 {
    padding: -25px !important; }
  .p-sm--30 {
    padding: -30px !important; }
  .p-sm--40 {
    padding: -40px !important; }
  .p-sm--50 {
    padding: -50px !important; }
  .p-sm--60 {
    padding: -60px !important; }
  .p-sm--70 {
    padding: -70px !important; }
  .p-sm--80 {
    padding: -80px !important; }
  .p-sm--90 {
    padding: -90px !important; }
  .p-sm--100 {
    padding: -100px !important; }
  .pt-sm--0 {
    padding-top: 0px !important; }
  .pt-sm-10 {
    padding-top: 10px !important; }
  .pt-sm-15 {
    padding-top: 15px !important; }
  .pt-sm-20 {
    padding-top: 20px !important; }
  .pt-sm-25 {
    padding-top: 25px !important; }
  .pt-sm-30 {
    padding-top: 30px !important; }
  .pt-sm-40 {
    padding-top: 40px !important; }
  .pt-sm-50 {
    padding-top: 50px !important; }
  .pt-sm-60 {
    padding-top: 60px !important; }
  .pt-sm-70 {
    padding-top: 70px !important; }
  .pt-sm-80 {
    padding-top: 80px !important; }
  .pt-sm-90 {
    padding-top: 90px !important; }
  .pt-sm-100 {
    padding-top: 100px !important; }
  .pt-sm-110 {
    padding-top: 110px !important; }
  .pt-sm-120 {
    padding-top: 120px !important; }
  .pt-sm-130 {
    padding-top: 130px !important; }
  .pt-sm-140 {
    padding-top: 140px !important; }
  .pt-sm-150 {
    padding-top: 150px !important; }
  .pt-sm-200 {
    padding-top: 200px !important; }
  .pt-sm-250 {
    padding-top: 250px !important; }
  .pt-sm--10 {
    padding-top: -10px !important; }
  .pt-sm--15 {
    padding-top: -15px !important; }
  .pt-sm--20 {
    padding-top: -20px !important; }
  .pt-sm--25 {
    padding-top: -25px !important; }
  .pt-sm--30 {
    padding-top: -30px !important; }
  .pt-sm--40 {
    padding-top: -40px !important; }
  .pt-sm--50 {
    padding-top: -50px !important; }
  .pt-sm--60 {
    padding-top: -60px !important; }
  .pt-sm--70 {
    padding-top: -70px !important; }
  .pt-sm--80 {
    padding-top: -80px !important; }
  .pt-sm--90 {
    padding-top: -90px !important; }
  .pt-sm--100 {
    padding-top: -100px !important; }
  .pb-sm--0 {
    padding-bottom: 0px !important; }
  .pb-sm-10 {
    padding-bottom: 10px !important; }
  .pb-sm-15 {
    padding-bottom: 15px !important; }
  .pb-sm-20 {
    padding-bottom: 20px !important; }
  .pb-sm-25 {
    padding-bottom: 25px !important; }
  .pb-sm-30 {
    padding-bottom: 30px !important; }
  .pb-sm-40 {
    padding-bottom: 40px !important; }
  .pb-sm-50 {
    padding-bottom: 50px !important; }
  .pb-sm-60 {
    padding-bottom: 60px !important; }
  .pb-sm-70 {
    padding-bottom: 70px !important; }
  .pb-sm-80 {
    padding-bottom: 80px !important; }
  .pb-sm-90 {
    padding-bottom: 90px !important; }
  .pb-sm-100 {
    padding-bottom: 100px !important; }
  .pb-sm-110 {
    padding-bottom: 110px !important; }
  .pb-sm-120 {
    padding-bottom: 120px !important; }
  .pb-sm-130 {
    padding-bottom: 130px !important; }
  .pb-sm-140 {
    padding-bottom: 140px !important; }
  .pb-sm-150 {
    padding-bottom: 150px !important; }
  .pb-sm-200 {
    padding-bottom: 200px !important; }
  .pb-sm-250 {
    padding-bottom: 250px !important; }
  .pb-sm--10 {
    padding-bottom: -10px !important; }
  .pb-sm--15 {
    padding-bottom: -15px !important; }
  .pb-sm--20 {
    padding-bottom: -20px !important; }
  .pb-sm--25 {
    padding-bottom: -25px !important; }
  .pb-sm--30 {
    padding-bottom: -30px !important; }
  .pb-sm--40 {
    padding-bottom: -40px !important; }
  .pb-sm--50 {
    padding-bottom: -50px !important; }
  .pb-sm--60 {
    padding-bottom: -60px !important; }
  .pb-sm--70 {
    padding-bottom: -70px !important; }
  .pb-sm--80 {
    padding-bottom: -80px !important; }
  .pb-sm--90 {
    padding-bottom: -90px !important; }
  .pb-sm--100 {
    padding-bottom: -100px !important; }
  .pr-sm--0 {
    padding-right: 0px !important; }
  .pr-sm-10 {
    padding-right: 10px !important; }
  .pr-sm-15 {
    padding-right: 15px !important; }
  .pr-sm-20 {
    padding-right: 20px !important; }
  .pr-sm-25 {
    padding-right: 25px !important; }
  .pr-sm-30 {
    padding-right: 30px !important; }
  .pr-sm-40 {
    padding-right: 40px !important; }
  .pr-sm-50 {
    padding-right: 50px !important; }
  .pr-sm-60 {
    padding-right: 60px !important; }
  .pr-sm-70 {
    padding-right: 70px !important; }
  .pr-sm-80 {
    padding-right: 80px !important; }
  .pr-sm-90 {
    padding-right: 90px !important; }
  .pr-sm-100 {
    padding-right: 100px !important; }
  .pr-sm-110 {
    padding-right: 110px !important; }
  .pr-sm-120 {
    padding-right: 120px !important; }
  .pr-sm-130 {
    padding-right: 130px !important; }
  .pr-sm-140 {
    padding-right: 140px !important; }
  .pr-sm-150 {
    padding-right: 150px !important; }
  .pr-sm-200 {
    padding-right: 200px !important; }
  .pr-sm-250 {
    padding-right: 250px !important; }
  .pr-sm--10 {
    padding-right: -10px !important; }
  .pr-sm--15 {
    padding-right: -15px !important; }
  .pr-sm--20 {
    padding-right: -20px !important; }
  .pr-sm--25 {
    padding-right: -25px !important; }
  .pr-sm--30 {
    padding-right: -30px !important; }
  .pr-sm--40 {
    padding-right: -40px !important; }
  .pr-sm--50 {
    padding-right: -50px !important; }
  .pr-sm--60 {
    padding-right: -60px !important; }
  .pr-sm--70 {
    padding-right: -70px !important; }
  .pr-sm--80 {
    padding-right: -80px !important; }
  .pr-sm--90 {
    padding-right: -90px !important; }
  .pr-sm--100 {
    padding-right: -100px !important; }
  .pl-sm--0 {
    padding-left: 0px !important; }
  .pl-sm-10 {
    padding-left: 10px !important; }
  .pl-sm-15 {
    padding-left: 15px !important; }
  .pl-sm-20 {
    padding-left: 20px !important; }
  .pl-sm-25 {
    padding-left: 25px !important; }
  .pl-sm-30 {
    padding-left: 30px !important; }
  .pl-sm-40 {
    padding-left: 40px !important; }
  .pl-sm-50 {
    padding-left: 50px !important; }
  .pl-sm-60 {
    padding-left: 60px !important; }
  .pl-sm-70 {
    padding-left: 70px !important; }
  .pl-sm-80 {
    padding-left: 80px !important; }
  .pl-sm-90 {
    padding-left: 90px !important; }
  .pl-sm-100 {
    padding-left: 100px !important; }
  .pl-sm-110 {
    padding-left: 110px !important; }
  .pl-sm-120 {
    padding-left: 120px !important; }
  .pl-sm-130 {
    padding-left: 130px !important; }
  .pl-sm-140 {
    padding-left: 140px !important; }
  .pl-sm-150 {
    padding-left: 150px !important; }
  .pl-sm-200 {
    padding-left: 200px !important; }
  .pl-sm-250 {
    padding-left: 250px !important; }
  .pl-sm--10 {
    padding-left: -10px !important; }
  .pl-sm--15 {
    padding-left: -15px !important; }
  .pl-sm--20 {
    padding-left: -20px !important; }
  .pl-sm--25 {
    padding-left: -25px !important; }
  .pl-sm--30 {
    padding-left: -30px !important; }
  .pl-sm--40 {
    padding-left: -40px !important; }
  .pl-sm--50 {
    padding-left: -50px !important; }
  .pl-sm--60 {
    padding-left: -60px !important; }
  .pl-sm--70 {
    padding-left: -70px !important; }
  .pl-sm--80 {
    padding-left: -80px !important; }
  .pl-sm--90 {
    padding-left: -90px !important; }
  .pl-sm--100 {
    padding-left: -100px !important; } }

@media (max-width: 575.98px) {
  .p-xs--0 {
    padding: 0px !important; }
  .p-xs-10 {
    padding: 10px !important; }
  .p-xs-15 {
    padding: 15px !important; }
  .p-xs-20 {
    padding: 20px !important; }
  .p-xs-25 {
    padding: 25px !important; }
  .p-xs-30 {
    padding: 30px !important; }
  .p-xs-40 {
    padding: 40px !important; }
  .p-xs-50 {
    padding: 50px !important; }
  .p-xs-60 {
    padding: 60px !important; }
  .p-xs-70 {
    padding: 70px !important; }
  .p-xs-80 {
    padding: 80px !important; }
  .p-xs-90 {
    padding: 90px !important; }
  .p-xs-100 {
    padding: 100px !important; }
  .p-xs-110 {
    padding: 110px !important; }
  .p-xs-120 {
    padding: 120px !important; }
  .p-xs-130 {
    padding: 130px !important; }
  .p-xs-140 {
    padding: 140px !important; }
  .p-xs-150 {
    padding: 150px !important; }
  .p-xs-200 {
    padding: 200px !important; }
  .p-xs-250 {
    padding: 250px !important; }
  .p-xs--10 {
    padding: -10px !important; }
  .p-xs--15 {
    padding: -15px !important; }
  .p-xs--20 {
    padding: -20px !important; }
  .p-xs--25 {
    padding: -25px !important; }
  .p-xs--30 {
    padding: -30px !important; }
  .p-xs--40 {
    padding: -40px !important; }
  .p-xs--50 {
    padding: -50px !important; }
  .p-xs--60 {
    padding: -60px !important; }
  .p-xs--70 {
    padding: -70px !important; }
  .p-xs--80 {
    padding: -80px !important; }
  .p-xs--90 {
    padding: -90px !important; }
  .p-xs--100 {
    padding: -100px !important; }
  .pt-xs--0 {
    padding-top: 0px !important; }
  .pt-xs-10 {
    padding-top: 10px !important; }
  .pt-xs-15 {
    padding-top: 15px !important; }
  .pt-xs-20 {
    padding-top: 20px !important; }
  .pt-xs-25 {
    padding-top: 25px !important; }
  .pt-xs-30 {
    padding-top: 30px !important; }
  .pt-xs-40 {
    padding-top: 40px !important; }
  .pt-xs-50 {
    padding-top: 50px !important; }
  .pt-xs-60 {
    padding-top: 60px !important; }
  .pt-xs-70 {
    padding-top: 70px !important; }
  .pt-xs-80 {
    padding-top: 80px !important; }
  .pt-xs-90 {
    padding-top: 90px !important; }
  .pt-xs-100 {
    padding-top: 100px !important; }
  .pt-xs-110 {
    padding-top: 110px !important; }
  .pt-xs-120 {
    padding-top: 120px !important; }
  .pt-xs-130 {
    padding-top: 130px !important; }
  .pt-xs-140 {
    padding-top: 140px !important; }
  .pt-xs-150 {
    padding-top: 150px !important; }
  .pt-xs-200 {
    padding-top: 200px !important; }
  .pt-xs-250 {
    padding-top: 250px !important; }
  .pt-xs--10 {
    padding-top: -10px !important; }
  .pt-xs--15 {
    padding-top: -15px !important; }
  .pt-xs--20 {
    padding-top: -20px !important; }
  .pt-xs--25 {
    padding-top: -25px !important; }
  .pt-xs--30 {
    padding-top: -30px !important; }
  .pt-xs--40 {
    padding-top: -40px !important; }
  .pt-xs--50 {
    padding-top: -50px !important; }
  .pt-xs--60 {
    padding-top: -60px !important; }
  .pt-xs--70 {
    padding-top: -70px !important; }
  .pt-xs--80 {
    padding-top: -80px !important; }
  .pt-xs--90 {
    padding-top: -90px !important; }
  .pt-xs--100 {
    padding-top: -100px !important; }
  .pb-xs--0 {
    padding-bottom: 0px !important; }
  .pb-xs-10 {
    padding-bottom: 10px !important; }
  .pb-xs-15 {
    padding-bottom: 15px !important; }
  .pb-xs-20 {
    padding-bottom: 20px !important; }
  .pb-xs-25 {
    padding-bottom: 25px !important; }
  .pb-xs-30 {
    padding-bottom: 30px !important; }
  .pb-xs-40 {
    padding-bottom: 40px !important; }
  .pb-xs-50 {
    padding-bottom: 50px !important; }
  .pb-xs-60 {
    padding-bottom: 60px !important; }
  .pb-xs-70 {
    padding-bottom: 70px !important; }
  .pb-xs-80 {
    padding-bottom: 80px !important; }
  .pb-xs-90 {
    padding-bottom: 90px !important; }
  .pb-xs-100 {
    padding-bottom: 100px !important; }
  .pb-xs-110 {
    padding-bottom: 110px !important; }
  .pb-xs-120 {
    padding-bottom: 120px !important; }
  .pb-xs-130 {
    padding-bottom: 130px !important; }
  .pb-xs-140 {
    padding-bottom: 140px !important; }
  .pb-xs-150 {
    padding-bottom: 150px !important; }
  .pb-xs-200 {
    padding-bottom: 200px !important; }
  .pb-xs-250 {
    padding-bottom: 250px !important; }
  .pb-xs--10 {
    padding-bottom: -10px !important; }
  .pb-xs--15 {
    padding-bottom: -15px !important; }
  .pb-xs--20 {
    padding-bottom: -20px !important; }
  .pb-xs--25 {
    padding-bottom: -25px !important; }
  .pb-xs--30 {
    padding-bottom: -30px !important; }
  .pb-xs--40 {
    padding-bottom: -40px !important; }
  .pb-xs--50 {
    padding-bottom: -50px !important; }
  .pb-xs--60 {
    padding-bottom: -60px !important; }
  .pb-xs--70 {
    padding-bottom: -70px !important; }
  .pb-xs--80 {
    padding-bottom: -80px !important; }
  .pb-xs--90 {
    padding-bottom: -90px !important; }
  .pb-xs--100 {
    padding-bottom: -100px !important; }
  .pr-xs--0 {
    padding-right: 0px !important; }
  .pr-xs-10 {
    padding-right: 10px !important; }
  .pr-xs-15 {
    padding-right: 15px !important; }
  .pr-xs-20 {
    padding-right: 20px !important; }
  .pr-xs-25 {
    padding-right: 25px !important; }
  .pr-xs-30 {
    padding-right: 30px !important; }
  .pr-xs-40 {
    padding-right: 40px !important; }
  .pr-xs-50 {
    padding-right: 50px !important; }
  .pr-xs-60 {
    padding-right: 60px !important; }
  .pr-xs-70 {
    padding-right: 70px !important; }
  .pr-xs-80 {
    padding-right: 80px !important; }
  .pr-xs-90 {
    padding-right: 90px !important; }
  .pr-xs-100 {
    padding-right: 100px !important; }
  .pr-xs-110 {
    padding-right: 110px !important; }
  .pr-xs-120 {
    padding-right: 120px !important; }
  .pr-xs-130 {
    padding-right: 130px !important; }
  .pr-xs-140 {
    padding-right: 140px !important; }
  .pr-xs-150 {
    padding-right: 150px !important; }
  .pr-xs-200 {
    padding-right: 200px !important; }
  .pr-xs-250 {
    padding-right: 250px !important; }
  .pr-xs--10 {
    padding-right: -10px !important; }
  .pr-xs--15 {
    padding-right: -15px !important; }
  .pr-xs--20 {
    padding-right: -20px !important; }
  .pr-xs--25 {
    padding-right: -25px !important; }
  .pr-xs--30 {
    padding-right: -30px !important; }
  .pr-xs--40 {
    padding-right: -40px !important; }
  .pr-xs--50 {
    padding-right: -50px !important; }
  .pr-xs--60 {
    padding-right: -60px !important; }
  .pr-xs--70 {
    padding-right: -70px !important; }
  .pr-xs--80 {
    padding-right: -80px !important; }
  .pr-xs--90 {
    padding-right: -90px !important; }
  .pr-xs--100 {
    padding-right: -100px !important; }
  .pl-xs--0 {
    padding-left: 0px !important; }
  .pl-xs-10 {
    padding-left: 10px !important; }
  .pl-xs-15 {
    padding-left: 15px !important; }
  .pl-xs-20 {
    padding-left: 20px !important; }
  .pl-xs-25 {
    padding-left: 25px !important; }
  .pl-xs-30 {
    padding-left: 30px !important; }
  .pl-xs-40 {
    padding-left: 40px !important; }
  .pl-xs-50 {
    padding-left: 50px !important; }
  .pl-xs-60 {
    padding-left: 60px !important; }
  .pl-xs-70 {
    padding-left: 70px !important; }
  .pl-xs-80 {
    padding-left: 80px !important; }
  .pl-xs-90 {
    padding-left: 90px !important; }
  .pl-xs-100 {
    padding-left: 100px !important; }
  .pl-xs-110 {
    padding-left: 110px !important; }
  .pl-xs-120 {
    padding-left: 120px !important; }
  .pl-xs-130 {
    padding-left: 130px !important; }
  .pl-xs-140 {
    padding-left: 140px !important; }
  .pl-xs-150 {
    padding-left: 150px !important; }
  .pl-xs-200 {
    padding-left: 200px !important; }
  .pl-xs-250 {
    padding-left: 250px !important; }
  .pl-xs--10 {
    padding-left: -10px !important; }
  .pl-xs--15 {
    padding-left: -15px !important; }
  .pl-xs--20 {
    padding-left: -20px !important; }
  .pl-xs--25 {
    padding-left: -25px !important; }
  .pl-xs--30 {
    padding-left: -30px !important; }
  .pl-xs--40 {
    padding-left: -40px !important; }
  .pl-xs--50 {
    padding-left: -50px !important; }
  .pl-xs--60 {
    padding-left: -60px !important; }
  .pl-xs--70 {
    padding-left: -70px !important; }
  .pl-xs--80 {
    padding-left: -80px !important; }
  .pl-xs--90 {
    padding-left: -90px !important; }
  .pl-xs--100 {
    padding-left: -100px !important; } }

.tm-responsive-pos-top-0 {
  top: 0px; }

.tm-responsive-pos-top-10 {
  top: 10px; }

.tm-responsive-pos-top-15 {
  top: 15px; }

.tm-responsive-pos-top-20 {
  top: 20px; }

.tm-responsive-pos-top-25 {
  top: 25px; }

.tm-responsive-pos-top-30 {
  top: 30px; }

.tm-responsive-pos-top-40 {
  top: 40px; }

.tm-responsive-pos-top-50 {
  top: 50px; }

.tm-responsive-pos-top-60 {
  top: 60px; }

.tm-responsive-pos-top-70 {
  top: 70px; }

.tm-responsive-pos-top-80 {
  top: 80px; }

.tm-responsive-pos-top-90 {
  top: 90px; }

.tm-responsive-pos-top-100 {
  top: 100px; }

@media (max-width: 991.98px) {
  [class^="tm-responsive-pos-top-"], [class*=" tm-responsive-pos-top-"] {
    top: 0; } }

.tm-responsive-pos-bottom-0 {
  bottom: 0px; }

.tm-responsive-pos-bottom-10 {
  bottom: 10px; }

.tm-responsive-pos-bottom-15 {
  bottom: 15px; }

.tm-responsive-pos-bottom-20 {
  bottom: 20px; }

.tm-responsive-pos-bottom-25 {
  bottom: 25px; }

.tm-responsive-pos-bottom-30 {
  bottom: 30px; }

.tm-responsive-pos-bottom-40 {
  bottom: 40px; }

.tm-responsive-pos-bottom-50 {
  bottom: 50px; }

.tm-responsive-pos-bottom-60 {
  bottom: 60px; }

.tm-responsive-pos-bottom-70 {
  bottom: 70px; }

.tm-responsive-pos-bottom-80 {
  bottom: 80px; }

.tm-responsive-pos-bottom-90 {
  bottom: 90px; }

.tm-responsive-pos-bottom-100 {
  bottom: 100px; }

@media (max-width: 991.98px) {
  [class^="tm-responsive-pos-bottom-"], [class*=" tm-responsive-pos-bottom-"] {
    bottom: 0; } }

.mt-responsive--150 {
  margin-top: -150px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--150 {
      margin-top: -100px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--150 {
      margin-top: -50px; } }

.mt-responsive--200 {
  margin-top: -200px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--200 {
      margin-top: -150px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--200 {
      margin-top: -80px; } }

.mt-responsive--210 {
  margin-top: -210px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--210 {
      margin-top: -150px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--210 {
      margin-top: -80px; } }

.mt-responsive--220 {
  margin-top: -220px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--220 {
      margin-top: -150px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--220 {
      margin-top: -80px; } }

.mt-responsive--230 {
  margin-top: -230px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--230 {
      margin-top: -150px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--230 {
      margin-top: -80px; } }

.mt-responsive--240 {
  margin-top: -240px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--240 {
      margin-top: -150px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--240 {
      margin-top: -80px; } }

.mt-responsive--250 {
  margin-top: -250px; }
  @media (max-width: 1199.98px) {
    .mt-responsive--250 {
      margin-top: -150px; } }
  @media (max-width: 991.98px) {
    .mt-responsive--250 {
      margin-top: -80px; } }

@media (max-width: 767.98px) {
  [class^="mt-responsive-"], [class*=" mt-responsive-"] {
    margin-top: 0; } }

/*
 * ThemeMascot Utility Classes
 * -----------------------------------------------
*/
/* -------- Font Size ---------- */
.font-size-10 {
  font-size: 10px !important; }

.font-size-11 {
  font-size: 11px !important; }

.font-size-12 {
  font-size: 12px !important; }

.font-size-13 {
  font-size: 13px !important; }

.font-size-14 {
  font-size: 14px !important; }

.font-size-15 {
  font-size: 15px !important; }

.font-size-16 {
  font-size: 16px !important; }

.font-size-17 {
  font-size: 17px !important; }

.font-size-18 {
  font-size: 18px !important; }

.font-size-19 {
  font-size: 19px !important; }

.font-size-20 {
  font-size: 20px !important; }

.font-size-21 {
  font-size: 21px !important; }

.font-size-22 {
  font-size: 22px !important; }

.font-size-23 {
  font-size: 23px !important; }

.font-size-24 {
  font-size: 24px !important; }

.font-size-25 {
  font-size: 25px !important; }

.font-size-26 {
  font-size: 26px !important; }

.font-size-27 {
  font-size: 27px !important; }

.font-size-28 {
  font-size: 28px !important; }

.font-size-29 {
  font-size: 29px !important; }

.font-size-30 {
  font-size: 30px !important; }

.font-size-32 {
  font-size: 32px !important; }

.font-size-36 {
  font-size: 36px !important; }

.font-size-38 {
  font-size: 38px !important; }

.font-size-40 {
  font-size: 40px !important; }

.font-size-42 {
  font-size: 42px !important; }

.font-size-44 {
  font-size: 44px !important; }

.font-size-46 {
  font-size: 46px !important; }

.font-size-48 {
  font-size: 48px !important; }

.font-size-50 {
  font-size: 50px !important; }

.font-size-54 {
  font-size: 54px !important; }

.font-size-60 {
  font-size: 60px !important; }

.font-size-64 {
  font-size: 64px !important; }

.font-size-70 {
  font-size: 70px !important; }

.font-size-72 {
  font-size: 72px !important; }

.font-size-78 {
  font-size: 78px !important; }

.font-size-80 {
  font-size: 80px !important; }

.font-size-84 {
  font-size: 84px !important; }

.font-size-86 {
  font-size: 86px !important; }

.font-size-90 {
  font-size: 90px !important; }

.font-size-100 {
  font-size: 100px !important; }

.font-size-120 {
  font-size: 120px !important; }

.font-size-130 {
  font-size: 130px !important; }

.font-size-140 {
  font-size: 140px !important; }

.font-size-150 {
  font-size: 150px !important; }

.font-size-200 {
  font-size: 200px !important; }

.font-size-220 {
  font-size: 220px !important; }

.font-size-240 {
  font-size: 240px !important; }

.font-size-250 {
  font-size: 250px !important; }

/* -------- Text Colors ---------- */
/* Text Black & Gray Color*/
.text-black {
  color: #000 !important; }

.text-black-111 {
  color: #111 !important; }

.text-black-222 {
  color: #222 !important; }

.text-black-333 {
  color: #333 !important; }

.text-black-444 {
  color: #444 !important; }

.text-black-555 {
  color: #555 !important; }

.text-black-666 {
  color: #666 !important; }

.text-black-777 {
  color: #777 !important; }

.text-black-888 {
  color: #888 !important; }

.text-black-999 {
  color: #999 !important; }

.text-gray-dimgray {
  color: #696969 !important; }

.text-gray-light {
  color: #777 !important; }

.text-gray {
  color: #808080 !important; }

.text-gray-darkgray {
  color: #a9a9a9 !important; }

.text-gray-silver {
  color: #c0c0c0 !important; }

.text-gray-lightgray {
  color: #d3d3d3 !important; }

.text-gray-gainsboro {
  color: #fff !important; }

.text-gray-lighter {
  color: #eee !important; }

.text-gray-aaa {
  color: #aaa !important; }

.text-gray-bbb {
  color: #bbb !important; }

.text-gray-ccc {
  color: #ccc !important; }

.text-gray-ddd {
  color: #ddd !important; }

.text-gray-eee {
  color: #eee !important; }

/* Text White Color*/
.text-white-f1 {
  color: #f1f1f1 !important; }

.text-white-f2 {
  color: #f2f2f2 !important; }

.text-white-f3 {
  color: #f3f3f3 !important; }

.text-white-f4 {
  color: #f4f4f4 !important; }

.text-white-f5 {
  color: #f5f5f5 !important; }

.text-white-f6 {
  color: #f6f6f6 !important; }

.text-white-f7 {
  color: #f7f7f7 !important; }

.text-white-f8 {
  color: #f8f8f8 !important; }

.text-white-f9 {
  color: #f9f9f9 !important; }

.text-white-fa {
  color: #fafafa !important; }

.text-white-fc {
  color: #fcfcfc !important; }

.text-white-fd {
  color: #fdfdfd !important; }

.text-white-fe {
  color: #fefefe !important; }

/* -------- Solid Color Background ---------- */
.bg-black {
  background-color: #000 !important; }

.bg-black-111 {
  background-color: #111 !important; }

.bg-black-222 {
  background-color: #222 !important; }

.bg-black-333 {
  background-color: #333 !important; }

.bg-black-444 {
  background-color: #444 !important; }

.bg-black-555 {
  background-color: #555 !important; }

.bg-silver-light {
  background-color: #f6f6f6 !important; }

/* Bg White Color*/
.bg-white {
  background-color: #fff !important; }

.bg-white-f1 {
  background-color: #f1f1f1 !important; }

.bg-white-f2 {
  background-color: #f2f2f2 !important; }

.bg-white-f3 {
  background-color: #f3f3f3 !important; }

.bg-white-f4 {
  background-color: #f4f4f4 !important; }

.bg-white-f5 {
  background-color: #f5f5f5 !important; }

.bg-white-f6 {
  background-color: #f6f6f6 !important; }

.bg-white-f7 {
  background-color: #f7f7f7 !important; }

.bg-white-f8 {
  background-color: #f8f8f8 !important; }

.bg-white-f9 {
  background-color: #f9f9f9 !important; }

.bg-white-fa {
  background-color: #fafafa !important; }

.bg-white-fb {
  background-color: #fbfbfb !important; }

.bg-white-fc {
  background-color: #fcfcfc !important; }

.bg-white-fd {
  background-color: #fdfdfd !important; }

.bg-white-fe {
  background-color: #fefefe !important; }

/* -------- Transparent Background Color ---------- */
.bg-white-transparent-9 {
  background-color: rgba(255, 255, 255, 0.9) !important; }

.bg-white-transparent-8 {
  background-color: rgba(255, 255, 255, 0.8) !important; }

.bg-white-transparent-7 {
  background-color: rgba(255, 255, 255, 0.7) !important; }

.bg-white-transparent-6 {
  background-color: rgba(255, 255, 255, 0.6) !important; }

.bg-white-transparent-5 {
  background-color: rgba(255, 255, 255, 0.5) !important; }

.bg-white-transparent-4 {
  background-color: rgba(255, 255, 255, 0.4) !important; }

.bg-white-transparent-3 {
  background-color: rgba(255, 255, 255, 0.3) !important; }

.bg-white-transparent-2 {
  background-color: rgba(255, 255, 255, 0.2) !important; }

.bg-white-transparent-1 {
  background-color: rgba(255, 255, 255, 0.1) !important; }

.bg-dark-transparent-9 {
  background-color: rgba(0, 0, 0, 0.9) !important; }

.bg-dark-transparent-8 {
  background-color: rgba(0, 0, 0, 0.8) !important; }

.bg-dark-transparent-7 {
  background-color: rgba(0, 0, 0, 0.7) !important; }

.bg-dark-transparent-6 {
  background-color: rgba(0, 0, 0, 0.6) !important; }

.bg-dark-transparent-5 {
  background-color: rgba(0, 0, 0, 0.5) !important; }

.bg-dark-transparent-4 {
  background-color: rgba(0, 0, 0, 0.4) !important; }

.bg-dark-transparent-3 {
  background-color: rgba(0, 0, 0, 0.3) !important; }

.bg-dark-transparent-2 {
  background-color: rgba(0, 0, 0, 0.2) !important; }

.bg-dark-transparent-1 {
  background-color: rgba(0, 0, 0, 0.1) !important; }

/* -------- box-shadow ---------- */
/* -------- Letter Spacing ---------- */
.letter-space-0 {
  letter-spacing: 0px; }

.letter-space-1 {
  letter-spacing: 1px; }

.letter-space-2 {
  letter-spacing: 2px; }

.letter-space-3 {
  letter-spacing: 3px; }

.letter-space-4 {
  letter-spacing: 4px; }

.letter-space-5 {
  letter-spacing: 5px; }

.letter-space-6 {
  letter-spacing: 6px; }

.letter-space-7 {
  letter-spacing: 7px; }

.letter-space-8 {
  letter-spacing: 8px; }

.letter-space-9 {
  letter-spacing: 9px; }

.letter-space-10 {
  letter-spacing: 10px; }

/* -------- z-index ---------- */
.z-index--1 {
  z-index: -1 !important; }

.z-index-0 {
  z-index: 0 !important; }

.z-index-1 {
  z-index: 1 !important; }

.z-index-2 {
  z-index: 2 !important; }

.z-index-3 {
  z-index: 3 !important; }

.z-index-4 {
  z-index: 4 !important; }

.z-index-5 {
  z-index: 5 !important; }

.z-index-99 {
  z-index: 99 !important; }

.z-index-111 {
  z-index: 111 !important; }

.z-index-1111 {
  z-index: 1111 !important; }

.z-index-9999 {
  z-index: 9999 !important; }

/* -------- Font Weight ---------- */
.font-weight-100 {
  font-weight: 100 !important; }

.font-weight-200 {
  font-weight: 200 !important; }

.font-weight-300 {
  font-weight: 300 !important; }

.font-weight-400 {
  font-weight: 400 !important; }

.font-weight-500 {
  font-weight: 500 !important; }

.font-weight-600 {
  font-weight: 600 !important; }

.font-weight-700 {
  font-weight: 700 !important; }

.font-weight-800 {
  font-weight: 800 !important; }

.font-weight-900 {
  font-weight: 900 !important; }

/* -------- Line Height ---------- */
.line-height-0 {
  line-height: 0px; }

.line-height-1 {
  line-height: 1 !important; }

.line-height-1-5 {
  line-height: 1.5 !important; }

.line-height-2 {
  line-height: 2 !important; }

/* -------- Border ---------- */
.no-border {
  border: none !important; }

.border-1px {
  border: 1px solid #f6f6f6 !important; }

.border-2px {
  border: 2px solid #f6f6f6 !important; }

.border-3px {
  border: 3px solid #f6f6f6 !important; }

.border-4px {
  border: 4px solid #f6f6f6 !important; }

.border-5px {
  border: 5px solid #f6f6f6 !important; }

.border-6px {
  border: 6px solid #f6f6f6 !important; }

.border-7px {
  border: 7px solid #f6f6f6 !important; }

.border-8px {
  border: 8px solid #f6f6f6 !important; }

.border-9px {
  border: 9px solid #f6f6f6 !important; }

.border-10px {
  border: 10px solid #f6f6f6 !important; }

.border-8px-white {
  border: 8px solid #fff !important; }

.border-top-1px {
  border-top: 1px solid #eee !important; }

.border-top-2px {
  border-top: 2px solid #eee !important; }

.border-top-3px {
  border-top: 3px solid #eee !important; }

.border-top-5px {
  border-top: 5px solid #f6f6f6 !important; }

.border-right-1px {
  border-right: 1px solid #eee !important; }

.border-right-2px {
  border-right: 2px solid #eee !important; }

.border-right-3px {
  border-right: 3px solid #eee !important; }

.border-bottom-1px {
  border-bottom: 1px solid #eee !important; }

.border-bottom-2px {
  border-bottom: 2px solid #eee !important; }

.border-bottom-3px {
  border-bottom: 3px solid #eee !important; }

.border-left-1px {
  border-left: 1px solid #eee !important; }

.border-left-2px {
  border-left: 2px solid #eee !important; }

.border-left-3px {
  border-left: 3px solid #eee !important; }

/* -------- Border Outline---------- */
.outline-border {
  outline: 5px solid #f1f1f1;
  outline-offset: 5px; }

.outline-border-1px {
  outline: 1px solid #f1f1f1;
  outline-offset: 1px; }

.outline-border-2px {
  outline: 2px solid #f1f1f1;
  outline-offset: 2px; }

.outline-border-3px {
  outline: 3px solid #f1f1f1;
  outline-offset: 3px; }

.outline-border-4px {
  outline: 4px solid #f1f1f1;
  outline-offset: 4px; }

.outline-border-5px {
  outline: 5px solid #f1f1f1;
  outline-offset: 5px; }

/* -------- Background Image ---------- */
.no-bg {
  background: none !important; }

@media (max-width: 1199.98px) {
  .lg-no-bg {
    background: none !important; } }

@media (max-width: 991.98px) {
  .md-no-bg {
    background: none !important; } }

@media (max-width: 767.98px) {
  .sm-no-bg {
    background: none !important; } }

@media (max-width: 575.98px) {
  .xs-no-bg {
    background: none !important; } }

.bg-no-repeat, .bg-img-no-repeat {
  background-repeat: no-repeat !important; }

.bg-img-fixed {
  background-attachment: fixed !important; }

.bg-img-cover {
  background-size: cover !important; }

.bg-img-contain {
  background-size: contain !important; }

.bg-img-center {
  background-position: center !important; }

.bg-img-center-top {
  background-position: center top !important; }

.bg-img-center-bottom {
  background-position: center bottom !important; }

.bg-img-left {
  background-position: left !important; }

.bg-img-left-top {
  background-position: left top !important; }

.bg-img-left-bottom {
  background-position: left bottom !important; }

.bg-img-right {
  background-position: right !important; }

.bg-img-right-top {
  background-position: right top !important; }

.bg-img-right-bottom {
  background-position: right bottom !important; }

.tm-fullwidth, .img-fullwidth {
  width: 100% !important; }

/* -------- Absolute Image Positioning ---------- */
.overflow-visible {
  overflow: visible !important; }

.overflow-hidden {
  overflow: hidden !important; }

.overflow-x-hidden {
  overflow-x: hidden !important; }

.overflow-y-hidden {
  overflow-y: hidden !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

@media (max-width: 767.98px) {
  .float-xs-center {
    display: table;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important; }
  .xs-fullwidth {
    width: 100%; }
  .xs-height-auto {
    min-height: auto !important; }
  .xs-hide-bg-img {
    background: none !important; }
  .xs-hide-child-bg-img > div {
    background: none !important; } }

@media (max-width: 767.98px) {
  .float-sm-center {
    display: table;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important; }
  .sm-fullwidth {
    width: 100%; }
  .sm-height-auto {
    min-height: auto !important; }
  .sm-hide-bg-img {
    background: none !important; }
  .sm-hide-child-bg-img > div {
    background: none !important; } }

@media (max-width: 991.98px) {
  .float-md-center {
    display: table;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important; }
  .md-fullwidth {
    width: 100%; }
  .md-height-auto {
    min-height: auto !important; }
  .md-hide-bg-img {
    background: none !important; }
  .md-hide-child-bg-img > div {
    background: none !important; } }

@media (max-width: 1199.98px) {
  .float-lg-center {
    display: table;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important; }
  .lg-fullwidth {
    width: 100%; }
  .lg-height-auto {
    min-height: auto !important; }
  .lg-hide-bg-img {
    background: none !important; }
  .lg-hide-child-bg-img > div {
    background: none !important; } }

.position-inherit {
  position: inherit !important; }

/* 
/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global Settings
4. Main Header / TwO
5. Sticky Header
6. Mobile Menu
7. Section Title
8. Main Slider
9. Banner Section
10. Project Section
11. Features Section / TwO / Three / Four / Five
12. About Section / Two
13. Services Section / Two
14. Call To Action / Two
15. FAQ's Sectiom
16. Marquee Section
17. Fun Fact Section
18. Testimonial Section / Two
19. team Section
20, Contact Section / Two
21. Why Choose Us / Two
22. News Section / Two
23. Video Section
24. Map Section
25. Clients Section
26. Main Footer
**********************************************/

:root {
    --theme-color-light: #ffffff;
    --theme-color-white: #ffffff;
    --theme-color-white-rgb: 255, 255, 255;
    --theme-color-dark: #1a3841;
    --theme-color-gray: #f1f1f2;
    --theme-color-gray2: #f8f5f2;
    --theme-color-light-green: #F0F7F3;
    --theme-color-black: #000000;
    --theme-color-black-rgb: 0, 0, 0;
    --theme-color-silver: #C4C4C4;
    --theme-color1: #0d8494;
    --theme-color1-rgb: 198, 217, 54;
    --theme-color2: #003150;
    --theme-color2-rgb: 26, 65, 55;
    --theme-color3: #102930;
    --theme-color3-rgb: 16, 41, 48;
    --theme-color4: #163839;
    --theme-color4-rgb: 22, 56, 57;
    --theme-color5: #001726;
    --theme-color5-rgb: 0, 23, 38;
    --theme-color6: #E34B1B;
    --theme-color6-rgb: 227, 75, 27;
    --theme-color7: #063232;
    --theme-color7-rgb: 6, 50, 50;
    --theme-color8: #B4E717;
    --theme-color9: #EDC701;
    --theme-color10: #122F2A;
    --theme-color11: #595B62;
    --bg-theme-color1: var(--theme-color1);
    --bg-theme-color2: var(--theme-color2);
    --text-color-bg-theme-color1: var(--theme-color-dark);
    --text-color-bg-theme-color2: var(--theme-color-white);
    --text-color-bg-theme-color6: var(--theme-color-white);
    --text-color: #595b62;
    --text-color2: #636776;
    --text-color3: #6B7280;
    --headings-color: #003150;
    --paragraph-light: var(--theme-color-silver);
    --review-color: #ffc737;
    --border-light: rgb(255 255 255 / 10%);
    --link-color: var(--headings-color);
    --link-hover-color: var(--headings-color);
    --title-font: "DM Sans", sans-serif;
    --text-font: "Inter", sans-serif;
    --body-font-size: 18px;
    --body-line-height: 36px;
    --body-font-weight: 400;
    --h1-font-size: 90px;
    --h2-font-size: 48px;
    --h3-font-size: 32px;
    --h4-font-size: 24px;
    --h5-font-size: 18px;
    --h6-font-size: 14px;
    --line-height-heading-h1: 100px;
    --line-height-heading-h2: 60px;
    --line-height-heading-h3: 36px;
    --line-height-heading-h4: 36px;
    --line-height-heading-h5: 32px;
    --line-height-heading-h6: 28px;
    --h1-font-weight: 700;
    --h2-font-weight: 700;
    --h3-font-weight: 700;
    --h4-font-weight: 700;
    --h5-font-weight: 700;
    --h6-font-weight: 700;
    --container-width: 1344px;
    --small-container-width: 1000px;
    --large-container-width: 1760px;
    --darkBlue: #003150;
    --darkGreen: #0d8494;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p,
.text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading-h2);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading-h3);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading-h4);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading-h5);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-h6);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b,
a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol,
ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b,
strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/* -------- Dark Theme Styling ---------- */
.dark-layout {
  background-color: var(--theme-color-dark) !important;
  --sec-title-color: var(--theme-color-light);
}
.dark-layout .sticky-header .main-menu .navigation > li > a,
.dark-layout h1, .dark-layout h2, .dark-layout h3, .dark-layout h4, .dark-layout h5, .dark-layout h6 {
  color: var(--theme-color-light);
}
.dark-layout .preloader {
  background-color: var(--theme-color-dark);
}
    .dark-layout .preloader:after {
        background-image: url(/images/accusolve-icon.png);
        background-size: contain
    }
.dark-layout .sticky-header {
  background-color: var(--theme-color-dark);
}
.dark-layout .hidden-bar .upper-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links li {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/***

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/***

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

figure.image {
  margin-bottom: 0;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  z-index: 99;
  overflow-x: hidden;
  background-color: #ffffff;
}
.page-wrapper.gray-bg {
  background-color: #f4f3ee;
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-pattern-1 {
  background-image: url(/images/pattern-1.png);
}

.text-theme-color1 {
  color: var(--theme-color1);
}

.bg-theme-color1 {
  background-color: var(--theme-color1);
}

.text-theme-color2 {
  color: var(--theme-color2);
}

.bg-theme-color2 {
  background-color: var(--theme-color2);
}

.bg-theme-color6 {
  background-color: var(--theme-color6);
}

.bg-theme-color7 {
  background-color: var(--theme-color7);
}

/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}
    .preloader:after {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 150px;
        margin-left: -75px;
        margin-top: -30px;
        height: 50px;
        background-position: center center;
        background-repeat: no-repeat;
        -webkit-animation: pulse 1s infinite linear;
        animation: pulse 1s infinite linear;
        background-image: url(/images/accusolve-icon.png);
        background-size:contain;
        content: "";
    }
.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--theme-color-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: var();
  text-align: center;
  cursor: pointer;
  background-color: var(--theme-color-white);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*======================
    Tabs Box
======================*/
.tabs-box {
  position: relative;
}
.tabs-box .tab {
  display: none;
}
.tabs-box .tab.active-tab {
  display: block;
}

/*=======================
    List Styles
=======================*/
.list-style-one {
  position: relative;
}
.list-style-one li {
  position: relative;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-color);
  margin-right: 50px;
  margin-bottom: 7px;
  padding-left: 22px;
}
.list-style-one li .icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-color1);
}

/*=======================
    List Styles
=======================*/
.list-style-two {
  margin-top: 28px;
}
.list-style-two li {
  font-size: 16px;
  color: var(--text-color);
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.list-style-two li .icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-color1);
}

/*===========================
    Social Icons Styles
============================*/
.social-icon-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.social-icon-one li {
  position: relative;
  margin-left: 20px;
}
.social-icon-one li:first-child {
  margin-left: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 30px;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: var(--theme-color1);
}

/*======================
    Play Buttons
======================*/
.play-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.play-btn .icon {
  position: relative;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--theme-color1);
  background-color: var(--theme-color-light);
  border: 1px solid var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-btn .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 25px;
  text-transform: capitalize;
  padding-left: 30px;
  margin-left: -10px;
  color: var(--theme-color2);
  background: var(--theme-color-gray);
  border-radius: 0px 22px 22px 0px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-btn:hover .icon {
  background-color: var(--bg-theme-color1);
  color: var(--theme-color-light);
}
.play-btn:hover .title {
  background-color: var(--bg-theme-color2);
  color: var(--theme-color-light);
}

/*======================
    Media Play Button
======================*/
.play-now {
  position: relative;
  display: block;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-now .icon {
  position: relative;
  display: inline-block;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 85px;
  background-color: #ffffff;
  color: var(--bg-theme-color2);
  z-index: 1;
  font-size: 18px;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.play-now .ripple:before, .play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 70px;
  width: 70px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
          animation: ripple 3s infinite;
  content: "";
}
.play-now .ripple.light {
  -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
          box-shadow: 0 0 0 0 rgb(255, 255, 255);
}
.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.play-now .ripple::after {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}
/*======================
    Carousel Navs
======================*/
.default-navs .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-navs .owl-next,
.default-navs .owl-prev {
  display: block;
  width: 60px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 58px;
  color: var(--theme-color-dark);
  background: #fff;
  border: 1px solid #e3e3e3;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  margin-left: 20px;
}
.default-navs .owl-next:hover,
.default-navs .owl-prev:hover {
  border-color: var(--theme-color1);
}
.default-navs .owl-prev {
  margin-left: 0;
}

.disable-navs .owl-nav {
  display: none;
}

.disable-dots .owl-dots {
  display: none;
}

/*==========================
	Default Tabs
===========================*/
.default-tabs {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.default-tabs .tab-buttons {
  position: relative;
  margin-bottom: 30px;
}
.default-tabs .tab-btn {
  position: relative;
  float: left;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 35px;
  color: var(--theme-color1);
  line-height: 20px;
  border-radius: 5px;
  background-color: #ffffff;
  cursor: pointer;
  margin-right: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-tabs .tab-btn:last-child {
  margin-right: 0;
}
.default-tabs .tab-btn.active-btn {
  background: var(--gradient-1);
  color: #ffffff;
}
.default-tabs .tabs-content {
  position: relative;
  width: 100%;
}

/*================================
    Progress Bar
=================================*/
.skills {
  position: relative;
  margin-bottom: 50px;
}
.skills .skill-item {
  position: relative;
  margin-bottom: 25px;
}
.skills .skill-item:last-child {
  margin-bottom: 0px;
}
.skills .skill-item .skill-header {
  position: relative;
  margin-bottom: 0px;
}
.skills .skill-item .skill-header .skill-title {
  font-weight: 600;
  color: var(--theme-color-dark);
  letter-spacing: 0;
  margin-bottom: 10px;
}
.skills .skill-item .skill-bar {
  position: relative;
  width: 100%;
  height: 14px;
  border-radius: 10px;
}
.skills .skill-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
  height: 14px;
  background: #f2f3f6;
  border-radius: 10px;
}
.skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 14px;
  width: 0px;
  -webkit-transition: all 3000ms ease;
  transition: all 3000ms ease;
  border-radius: 10px;
  background: var(--bg-theme-color1);
}
.skills .skill-item .skill-bar .bar-inner .skill-percentage {
  position: absolute;
  right: 0;
  bottom: 100%;
  font-weight: 400;
  color: #6f7174;
  line-height: 25px;
  margin-bottom: 10px;
}

.before-none:before,
.before_none:before {
  display: none;
}

.after-none:after,
.after_none:after {
  display: none;
}

.overlay-anim {
  position: relative;
}
.overlay-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

section {
  position: relative;
}

.checkout-form-section-two .checkout-form .checkout-field .chk-field select option {
  font-size: 14px;
  padding: 0 10px;
  text-align: center;
}

.checkout-form-section-two {
  width: auto;
}

.checkout-form-section-two .checkout-form .btn-style-one {
  padding: 0 50px !important;
  width: auto !important;
}
@media (max-width: 991.98px) {
  .checkout-form-section-two .checkout-form .btn-style-one {
    width: 100% !important;
  }
}

/*================================
    Swiper Slider
=================================*/
.swiper-dot .swiper-pagination-bullet, .swiper-dot-light .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: transparent;
  opacity: 1;
  position: relative;
  border: 1px solid transparent;
  margin: 0 2px !important;
}
.swiper-dot .swiper-pagination-bullet::before, .swiper-dot-light .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d6d1d1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--theme-color1);
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before, .swiper-dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--theme-color2);
}

.swiper-dot-light .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid transparent;
}
.swiper-dot-light .swiper-pagination-bullet::before {
  background-color: var(--white);
}
.swiper-dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--white);
}
.swiper-dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--white);
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.sticky-style {
  position: sticky;
  top: 100px;
}

.btn-one {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  display: inline-block;
  font-family: var(--title-font);
  background-color: var(--theme-color1);
  color: var(--link-color);
  text-align: center;
  min-width: 220px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
}
.btn-one::after {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  padding-top: 150%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-black);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: ease-in 500ms;
  transition: ease-in 500ms;
}
.btn-one:hover {
  color: var(--link-hover-color);
}
.btn-one:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .btn-one {
    min-width: 150px;
    padding: 14px;
  }
}

.btn-one-rounded {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  display: inline-block;
  font-family: var(--title-font);
  background-color: var(--theme-color1);
  color: var(--theme-color2);
  text-align: center;
  min-width: 208px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
}
.btn-one-rounded i {
  margin-left: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn-one-rounded::after {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  padding-top: 150%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-black);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: ease-in 500ms;
  transition: ease-in 500ms;
}
.btn-one-rounded:hover {
  color: var(--theme-color2);
}
.btn-one-rounded:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn-one-rounded:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .btn-one-rounded {
    min-width: 150px;
    padding: 14px 25px;
  }
}

.btn-one-light {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  display: inline-block;
  font-family: var(--title-font);
  background-color: var(--theme-color-white);
  color: var(--theme-color5);
  border: 1px solid var(--theme-color-black);
  text-align: center;
  min-width: 200px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
}
.btn-one-light i {
  margin-left: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn-one-light::after {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  padding-top: 150%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-black);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: ease-in 500ms;
  transition: ease-in 500ms;
}
.btn-one-light:hover {
  color: var(--theme-color5);
}
.btn-one-light:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn-one-light:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .btn-one-light {
    min-width: 150px;
    padding: 14px 25px;
  }
}

.btn-two {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  display: inline-block;
  font-family: var(--title-font);
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
  text-align: center;
  min-width: 200px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
}
.btn-two::after {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  padding-top: 150%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-white);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: ease-in 500ms;
  transition: ease-in 500ms;
}
.btn-two:hover {
  color: var(--theme-color-white);
}
.btn-two:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .btn-two {
    min-width: 150px;
    padding: 14px;
  }
}

.btn-two-rounded {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  display: inline-block;
  font-family: var(--title-font);
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
  text-align: center;
  min-width: 220px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: capitalize;
}
.btn-two-rounded i {
  margin-left: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn-two-rounded::after {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  padding-top: 150%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-white);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: ease-in 500ms;
  transition: ease-in 500ms;
}
.btn-two-rounded:hover {
  color: var(--theme-color-white);
}
.btn-two-rounded:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn-two-rounded:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .btn-two-rounded {
    min-width: 150px;
    padding: 14px 25px;
  }
}

.btn-three {
  background-color: var(--theme-color6);
  border-radius: 30px;
  color: var(--theme-color-white);
  display: inline-block;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  max-width: 100%;
  min-width: 220px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-transform: capitalize;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.btn-three i {
  margin-left: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn-three::after {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  padding-top: 150%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-white);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.btn-three:hover {
  color: var(--theme-color-white);
}
.btn-three:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn-three:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .btn-three {
    min-width: 150px;
    padding: 14px 25px;
  }
}

.playbtnanim {
  position: relative;
  z-index: 1;
}
.playbtnanim::after, .playbtnanim::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 0.3;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: video-animation;
  animation-name: video-animation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  z-index: -1;
}
@-webkit-keyframes video-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes video-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.playbtnanim::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
}

@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce-z {
  -webkit-animation: fa-spin 70s infinite;
  animation: fa-spin 70s infinite;
}

.reveal-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-left.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-right.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-top {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-top.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-bottom {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-bottom.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-anim {
  position: relative;
}
.btn-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.btn-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.splt-txt span {
  display: inline-block;
}
.splt-txt .whitespace {
  width: 8px;
}
.splt-txt.animated .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}
.splt-txt.animated .char:first-child {
  text-transform: capitalize;
}

.imageUpToDown {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.imageUpToDown.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imageDownToUP {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.imageDownToUP.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imageLeftToRight {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.imageLeftToRight.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imageRightToLeft {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.imageRightToLeft.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@-webkit-keyframes sway {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes sway {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.sway__animation {
  -webkit-animation: sway 3s linear infinite alternate;
          animation: sway 3s linear infinite alternate;
}

@-webkit-keyframes swayX {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes swayX {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.sway__animationX {
  -webkit-animation: swayX 3s linear infinite alternate;
          animation: swayX 3s linear infinite alternate;
}

@-webkit-keyframes footer__shadow {
  0% {
    margin-left: -200px;
  }
  100% {
    margin-right: -200px;
  }
}

@keyframes footer__shadow {
  0% {
    margin-left: -200px;
  }
  100% {
    margin-right: -200px;
  }
}
@-webkit-keyframes sway_Y {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes sway_Y {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.sway_Y__animation {
  -webkit-animation: sway_Y 3s linear infinite alternate;
          animation: sway_Y 3s linear infinite alternate;
}

@-webkit-keyframes sway_YY {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes sway_YY {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.sway_Y__animationY {
  -webkit-animation: sway_YY 3s linear infinite alternate;
          animation: sway_YY 3s linear infinite alternate;
}

@-webkit-keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animation__sunMove {
  -webkit-animation: sunMove 10s linear infinite;
  animation: sunMove 10s linear infinite;
}

@-webkit-keyframes floatBob {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes floatBob {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
.animation__floatBob {
  -webkit-animation-name: floatBob;
  animation-name: floatBob;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes arryUpDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes arryUpDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.animation__arryUpDown {
  -webkit-animation: arryUpDown 2s ease infinite alternate;
          animation: arryUpDown 2s ease infinite alternate;
}

@-webkit-keyframes arryLeftRight {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@keyframes arryLeftRight {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  -webkit-animation: arryLeftRight 2s ease infinite alternate;
          animation: arryLeftRight 2s ease infinite alternate;
}

@-webkit-keyframes pxl_zoom_reverse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes pxl_zoom_reverse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.pxl-image-zoom {
  -webkit-animation: pxl_zoom_reverse 5s linear infinite;
          animation: pxl_zoom_reverse 5s linear infinite;
}

@-webkit-keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
  }
}
.pxl-image-zoom2 {
  -webkit-animation: zoom-in-zoom-out 20s linear infinite;
          animation: zoom-in-zoom-out 20s linear infinite;
}

@-webkit-keyframes pxl_zigzag {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@keyframes pxl_zigzag {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
.pxl__zigzag {
  animation: pxl_zigzag 1s ease-out infinite;
  -webkit-animation: pxl_zigzag 1s ease-out infinite;
}

@-webkit-keyframes pxl_right_left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes pxl_right_left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slide-right-to-left {
  animation: pxl_right_left 12s ease-out infinite;
  -webkit-animation: pxl_right_left 12s ease-out infinite;
}

@-webkit-keyframes pxl_left_right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes pxl_left_right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slide-left-to-right {
  animation: pxl_left_right 12s ease-out infinite;
  -webkit-animation: pxl_left_right 12s ease-out infinite;
}

@-webkit-keyframes pxl_float_two {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes pxl_float_two {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.slide-up-down {
  -webkit-animation: pxl_float_two 2s ease infinite alternate;
          animation: pxl_float_two 2s ease infinite alternate;
}

@-webkit-keyframes pxl_bottom_top {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pxl_bottom_top {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slide-bottom-to-top {
  animation: pxl_bottom_top 12s ease-out infinite;
  -webkit-animation: pxl_bottom_top 12s ease-out infinite;
}

@-webkit-keyframes pxl_effect1 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(40px, -5px);
            transform: translate(40px, -5px);
  }
  40% {
    -webkit-transform: translate(60px, 40px);
            transform: translate(60px, 40px);
  }
  60% {
    -webkit-transform: translate(40px, 60px);
            transform: translate(40px, 60px);
  }
  80% {
    -webkit-transform: translate(-40px, 60px);
            transform: translate(-40px, 60px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes pxl_effect1 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(40px, -5px);
            transform: translate(40px, -5px);
  }
  40% {
    -webkit-transform: translate(60px, 40px);
            transform: translate(60px, 40px);
  }
  60% {
    -webkit-transform: translate(40px, 60px);
            transform: translate(40px, 60px);
  }
  80% {
    -webkit-transform: translate(-40px, 60px);
            transform: translate(-40px, 60px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.slide-effect1 {
  animation: pxl_effect1 12s ease-out infinite;
  -webkit-animation: pxl_effect1 12s ease-out infinite;
}

@-webkit-keyframes pxl_effect2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(-30px, 40px);
            transform: translate(-30px, 40px);
  }
  40% {
    -webkit-transform: translate(60px, 60px);
            transform: translate(60px, 60px);
  }
  60% {
    -webkit-transform: translate(70px, 40px);
            transform: translate(70px, 40px);
  }
  80% {
    -webkit-transform: translate(40px, -70px);
            transform: translate(40px, -70px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes pxl_effect2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(-30px, 40px);
            transform: translate(-30px, 40px);
  }
  40% {
    -webkit-transform: translate(60px, 60px);
            transform: translate(60px, 60px);
  }
  60% {
    -webkit-transform: translate(70px, 40px);
            transform: translate(70px, 40px);
  }
  80% {
    -webkit-transform: translate(40px, -70px);
            transform: translate(40px, -70px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.slide-effect2 {
  animation: pxl_effect2 12s ease-out infinite;
  -webkit-animation: pxl_effect2 12s ease-out infinite;
}

@-webkit-keyframes pxl_effect3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(40px, 60px);
            transform: translate(40px, 60px);
  }
  45% {
    -webkit-transform: translate(80px, 90px);
            transform: translate(80px, 90px);
  }
  65% {
    -webkit-transform: translate(40px, 110px);
            transform: translate(40px, 110px);
  }
  75% {
    -webkit-transform: translate(20px, 800px);
            transform: translate(20px, 800px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes pxl_effect3 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(40px, 60px);
            transform: translate(40px, 60px);
  }
  45% {
    -webkit-transform: translate(80px, 90px);
            transform: translate(80px, 90px);
  }
  65% {
    -webkit-transform: translate(40px, 110px);
            transform: translate(40px, 110px);
  }
  75% {
    -webkit-transform: translate(20px, 800px);
            transform: translate(20px, 800px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.slide-effect3 {
  animation: pxl_effect3 12s ease-out infinite;
  -webkit-animation: pxl_effect3 12s ease-out infinite;
}

@-webkit-keyframes pxl_top_bottom {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pxl_top_bottom {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slide-top-to-bottom {
  animation: pxl_top_bottom 12s ease-out infinite;
  -webkit-animation: pxl_top_bottom 12s ease-out infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.animation__rotate {
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}

@-webkit-keyframes rotateY {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateY {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.animation__rotateY {
  -webkit-animation: rotateY 30s linear infinite;
          animation: rotateY 30s linear infinite;
}

@-webkit-keyframes rotateAndScale {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.8);
            transform: rotate(180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes rotateAndScale {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.8);
            transform: rotate(180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}
.animation__rotateAndScale {
  -webkit-animation: rotateAndScale 20s linear infinite;
          animation: rotateAndScale 20s linear infinite;
}

@-webkit-keyframes rotateAndScaleY {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(-180deg) scale(0.8);
            transform: rotate(-180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotate(-360deg) scale(1);
            transform: rotate(-360deg) scale(1);
  }
}

@keyframes rotateAndScaleY {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(-180deg) scale(0.8);
            transform: rotate(-180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotate(-360deg) scale(1);
            transform: rotate(-360deg) scale(1);
  }
}
.animation__rotateAndScaleY {
  -webkit-animation: rotateAndScaleY 20s linear infinite;
          animation: rotateAndScaleY 20s linear infinite;
}

@-webkit-keyframes ring-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
            transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes ring-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
            transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}
.ring__animation {
  -webkit-animation: ring-animation 1.5s ease-in-out infinite;
          animation: ring-animation 1.5s ease-in-out infinite;
}

@-webkit-keyframes bobble {
  0% {
    -webkit-transform: translateY(0) scale(0.9);
            transform: translateY(0) scale(0.9);
  }
  100% {
    -webkit-transform: translateY(-20px) scale(1);
            transform: translateY(-20px) scale(1);
  }
}

@keyframes bobble {
  0% {
    -webkit-transform: translateY(0) scale(0.9);
            transform: translateY(0) scale(0.9);
  }
  100% {
    -webkit-transform: translateY(-20px) scale(1);
            transform: translateY(-20px) scale(1);
  }
}
.bobble__animation {
  -webkit-animation: bobble 3s ease-in-out infinite alternate;
          animation: bobble 3s ease-in-out infinite alternate;
}

@-webkit-keyframes video-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}
@keyframes video-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}
@-webkit-keyframes goAll {
  0% {
    -webkit-transform: translate(400px, 200px);
            transform: translate(400px, 200px);
    opacity: 30%;
  }
  17% {
    -webkit-transform: translate(600px, 400px);
            transform: translate(600px, 400px);
    opacity: 40%;
  }
  33% {
    -webkit-transform: translate(600px, 600px);
            transform: translate(600px, 600px);
    opacity: 70%;
  }
  50% {
    -webkit-transform: translate(400px, 800px);
            transform: translate(400px, 800px);
    opacity: 20%;
  }
  66% {
    -webkit-transform: translate(200px, 600px);
            transform: translate(200px, 600px);
    opacity: 60%;
  }
  83% {
    -webkit-transform: translate(200px, 400px);
            transform: translate(200px, 400px);
    opacity: 30%;
  }
  100% {
    -webkit-transform: translate(400px, 200px);
            transform: translate(400px, 200px);
    opacity: 30%;
  }
}
@keyframes goAll {
  0% {
    -webkit-transform: translate(400px, 200px);
            transform: translate(400px, 200px);
    opacity: 30%;
  }
  17% {
    -webkit-transform: translate(600px, 400px);
            transform: translate(600px, 400px);
    opacity: 40%;
  }
  33% {
    -webkit-transform: translate(600px, 600px);
            transform: translate(600px, 600px);
    opacity: 70%;
  }
  50% {
    -webkit-transform: translate(400px, 800px);
            transform: translate(400px, 800px);
    opacity: 20%;
  }
  66% {
    -webkit-transform: translate(200px, 600px);
            transform: translate(200px, 600px);
    opacity: 60%;
  }
  83% {
    -webkit-transform: translate(200px, 400px);
            transform: translate(200px, 400px);
    opacity: 30%;
  }
  100% {
    -webkit-transform: translate(400px, 200px);
            transform: translate(400px, 200px);
    opacity: 30%;
  }
}
@-webkit-keyframes goAll2 {
  0% {
    top: 800px;
    left: 845px;
    opacity: 30%;
  }
  25% {
    top: 400px;
    left: 845px;
    opacity: 40%;
  }
  50% {
    top: 800px;
    left: 845px;
    opacity: 100%;
  }
  75% {
    top: 1200px;
    left: 845px;
    opacity: 20%;
  }
  100% {
    top: 800px;
    left: 845px;
    opacity: 30%;
  }
}
@keyframes goAll2 {
  0% {
    top: 800px;
    left: 845px;
    opacity: 30%;
  }
  25% {
    top: 400px;
    left: 845px;
    opacity: 40%;
  }
  50% {
    top: 800px;
    left: 845px;
    opacity: 100%;
  }
  75% {
    top: 1200px;
    left: 845px;
    opacity: 20%;
  }
  100% {
    top: 800px;
    left: 845px;
    opacity: 30%;
  }
}
@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes left {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.animation__goLeft {
  -webkit-animation: left infinite 6s;
          animation: left infinite 6s;
}

@-webkit-keyframes top-bottom {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes top-bottom {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
.animation__topBottom {
  -webkit-animation: top-bottom 2s infinite;
          animation: top-bottom 2s infinite;
}

@-webkit-keyframes goAll3 {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    opacity: 100%;
  }
  33% {
    -webkit-transform: translate(100px, 100px);
            transform: translate(100px, 100px);
    opacity: 30%;
  }
  66% {
    -webkit-transform: translate(0px, 200px);
            transform: translate(0px, 200px);
    opacity: 70%;
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    opacity: 100%;
  }
}

@keyframes goAll3 {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    opacity: 100%;
  }
  33% {
    -webkit-transform: translate(100px, 100px);
            transform: translate(100px, 100px);
    opacity: 30%;
  }
  66% {
    -webkit-transform: translate(0px, 200px);
            transform: translate(0px, 200px);
    opacity: 70%;
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    opacity: 100%;
  }
}
.animation__goAll {
  -webkit-animation: goAll 30s infinite linear;
          animation: goAll 30s infinite linear;
}

.animation__goAll2 {
  -webkit-animation: goAll2 50s infinite linear;
          animation: goAll2 50s infinite linear;
}

.animation__goAll3 {
  -webkit-animation: goAll3 30s infinite linear;
          animation: goAll3 30s infinite linear;
}

@-webkit-keyframes iconHover1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  40% {
    -webkit-transform: translate(-10px);
            transform: translate(-10px);
  }
}

@keyframes iconHover1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  40% {
    -webkit-transform: translate(-10px);
            transform: translate(-10px);
  }
}
@-webkit-keyframes iconBounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes iconBounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.gsap__parallax {
  overflow: hidden;
}
.gsap__parallax-zoom {
  overflow: hidden;
}

.accordion-area .accordion .accordion-item {
  border: none;
  border-radius: 7px;
}
.accordion-area .accordion .accordion-item .accordion-header button {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0 !important;
  padding: 30px 40px;
  padding-bottom: 10px;
  font-family: var(--title-font);
  color: var(--headings-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.accordion-area .accordion .accordion-item .accordion-body {
  padding: 30px 40px;
  padding-top: 0;
}
.accordion-area .accordion .accordion-item .accordion-body .text {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
.accordion-area .accordion .accordion-button {
  background-color: transparent;
}
.accordion-area .accordion .accordion-button::after {
  display: none;
}
.accordion-area .accordion .accordion-button::before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 30px;
  right: 30px;
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0px;
  color: var(--headings-color);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion-area .accordion .accordion-button.collapsed {
  background-color: var(--theme-color-gray);
  padding: 25px 40px !important;
}
.accordion-area .accordion .accordion-button.collapsed::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion-box {
  position: relative;
}
.accordion-box .block {
  background-color: var(--theme-color-gray);
  -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
}

    .bg-light .accordion-box .block {
        background-color:#fff;
    }

    .accordion-box .block .acc-btn {
        position: relative;
        color: var(--text-color-white);
        font-family: var(--title-font);
        font-weight: var(--h4-font-weight);
        font-size: 20px;
        cursor: pointer;
        padding: 20px 30px;
        padding-right: 70px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        border-bottom: 1px solid rgba(4, 18, 31, 0.08);
    }
.accordion-box .block .acc-btn .icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--headings-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  height: 35px;
  line-height: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active .icon {
  color: var(--theme-color2);
}
.accordion-box .block .acc-btn.active .icon:before {
  content: "\f068";
}
.accordion-box .block.active {
  -webkit-box-shadow: 0px 14px 50px rgba(4, 11, 17, 0.12);
          box-shadow: 0px 14px 50px rgba(4, 11, 17, 0.12);
}
.accordion-box .block .acc-content {
  display: none;
  position: relative;
}
.accordion-box .block .acc-content .content {
  padding: 25px 30px;
  position: relative;
}
.accordion-box .block .acc-content .content .text {
  display: block;
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #6B7280;
  margin-bottom: 0;
}
.accordion-box .block .acc-content.current {
  display: block;
}

/*** 

====================================================================
  Search Popup
====================================================================

***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.search-popup .search-back-drop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color-dark);
  opacity: 0.95;
}
.search-popup .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 26px;
  color: var(--theme-color-light);
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .search-inner {
  position: relative;
  display: block;
  top: 40%;
  height: auto;
  z-index: 1;
  width: calc(100% - 60px);
  max-width: 800px;
  margin: auto;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-popup .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-popup .form-group input[type=search],
.search-popup .form-group input[type=text] {
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: 1px solid #e1e6dc;
  padding: 15px 20px;
  color: #707070;
  background: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .form-group input[type=search]:focus,
.search-popup .form-group input[type=text]:focus {
  border-color: var(--border-theme-color2);
}
.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 40px;
  width: 40px;
  display: block;
  font-size: 18px;
  color: var(--theme-color-dark);
  line-height: 40px;
  border-radius: 5px;
  font-weight: normal;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .form-group button:hover {
  color: var(--theme-color-dark);
}
.search-popup textarea::-webkit-input-placeholder, .search-popup input::-webkit-input-placeholder {
  color: inherit;
}
.search-popup textarea::-moz-placeholder, .search-popup input::-moz-placeholder {
  color: inherit;
}
.search-popup textarea:-ms-input-placeholder, .search-popup input:-ms-input-placeholder {
  color: inherit;
}
.search-popup textarea::-ms-input-placeholder, .search-popup input::-ms-input-placeholder {
  color: inherit;
}
.search-popup textarea::placeholder,
.search-popup input::placeholder {
  color: inherit;
}

.moblie-search-active .search-popup {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 0%;
}
.moblie-search-active .search-popup .search-inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

/*** 

====================================================================
Main Header
====================================================================

***/
.logo {
  width: 181px;
}
.logo a {
  display: block;
}
.logo a img {
  width: 100%;
}

.header-span {
  position: relative;
  height: 110px;
  display: block;
  width: 100%;
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
}

.header-top {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid #e7e7e8;
}
.header-top .auto-container {
  max-width: 1450px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-top .top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top .top-left .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: var(--theme-color-black);
  font-size: 14px;
  font-weight: 500;
}
.header-top .top-left .info-list a {
  color: inherit;
  font-weight: 500;
}
.header-top .top-left .info-list i {
  color: #0c6460;
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}
.header-top .top-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header-top .top-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header-top .top-right ul li a {
  color: var(--theme-color-black);
  font-size: 14px;
  font-weight: 500;
}
.header-top .top-right ul li a:hover {
  color: #0c6460;
}
.header-top .top-right ul.top-social-icon li a {
  display: inline-block;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.header-top .top-right ul.top-social-icon li a:hover {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}

.main-header .header-lower {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .header-lower .logo-box {
  position: relative;
}

.main-header {
  width: 100%;
  z-index: 999;
}
.main-header .logo {
  position: relative;
  display: block;
}
.main-header .logo img {
  max-width: 100%;
  height: auto;
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .main-box .nav-outer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.main-menu {
  position: relative;
}
@media (max-width: 991.98px) {
  .main-menu {
    display: none;
  }
}

.main-menu .navbar-header {
  display: none;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 25px 0px;
  margin-right: 35px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--text-font);
  letter-spacing: 1.3px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > a:hover {
  color: var(--theme-color1);
}
.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 220px;
  z-index: 100;
  padding: 10px 0 0;
  background-color: #ffffff;
  margin-top: 30px;
  opacity: 0;
  display: none;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0px;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 29px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li:hover > a {
  color: var(--theme-color2);
  padding-left: 5px;
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 15px;
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 300;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0px;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 220px;
  z-index: 100;
  display: none;
  background-color: #ffffff;
  opacity: 0;
  padding: 10px 0 0;
  margin-top: 10px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  border-bottom: 1px solid #ebf1f5;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--theme-color2);
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.main-header .outer-box .header-btn {
  display: inline-block;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15px;
  padding: 0 5px 0 38px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #fff;
  border-radius: 50px;
  position: relative;
}
.main-header .outer-box .header-btn span {
  margin-left: 10px;
  position: relative;
  top: -2px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
}
.main-header .outer-box .header-btn span i {
  color: #000;
  font-size: 22px;
  font-weight: 900;
  top: 4px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-header .outer-box .header-btn:hover {
  background-color: var(--theme-color1);
  border-color: transparent;
}

.main-header .ui-btn-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 17px;
  position: relative;
  right: 117px;
}

.main-header .ui-btn {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: none;
  font-size: 26px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .ui-btn:hover {
  color: var(--theme-color1);
}

.main-header .info-btn {
  position: relative;
  font-size: 16px;
  padding-left: 44px;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  line-height: 20px;
}
.main-header .info-btn small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color1);
}
.main-header .info-btn .icon {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  line-height: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1em;
  margin-right: 20px;
  padding-right: 20px;
}
.main-header .info-btn:hover {
  color: var(--theme-color-light);
}

.main-menu .navigation > li.dropdown:hover > ul {
  margin-top: 0;
  opacity: 1;
  top: 100%;
  visibility: visible;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    opacity: 0;
    visibility: hidden;
  }
}
/*** 

====================================================================
    header-style-one
====================================================================

***/
.header-style-one.style-dark, .style-dark.header-style-seven, .style-dark.header-style-six, .style-dark.header-style-five, .style-dark.header-style-four, .style-dark.header-style-three, .style-dark.header-style-two {
  background-color: var(--theme-color-black1);
  position: relative;
}
.header-style-one.style-dark.style-home5 .main-box, .style-dark.style-home5.header-style-seven .main-box, .style-dark.style-home5.header-style-six .main-box, .style-dark.style-home5.header-style-five .main-box, .style-dark.style-home5.header-style-four .main-box, .style-dark.style-home5.header-style-three .main-box, .style-dark.style-home5.header-style-two .main-box {
  padding: 30px 40px;
}
@media (max-width: 991.98px) {
  .header-style-one.style-dark.style-home5 .main-box, .style-dark.style-home5.header-style-seven .main-box, .style-dark.style-home5.header-style-six .main-box, .style-dark.style-home5.header-style-five .main-box, .style-dark.style-home5.header-style-four .main-box, .style-dark.style-home5.header-style-three .main-box, .style-dark.style-home5.header-style-two .main-box {
    padding: 30px 15px;
  }
}
.header-style-one.style-dark.style-home5 .main-box.style-two, .style-dark.style-home5.header-style-seven .main-box.style-two, .style-dark.style-home5.header-style-six .main-box.style-two, .style-dark.style-home5.header-style-five .main-box.style-two, .style-dark.style-home5.header-style-four .main-box.style-two, .style-dark.style-home5.header-style-three .main-box.style-two, .style-dark.style-home5.header-style-two .main-box.style-two {
  border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
  padding: 29px 40px 30px;
  margin-bottom: 94px;
}
@media (max-width: 1399.98px) {
  .header-style-one.style-dark.style-home5 .main-box.style-two, .style-dark.style-home5.header-style-seven .main-box.style-two, .style-dark.style-home5.header-style-six .main-box.style-two, .style-dark.style-home5.header-style-five .main-box.style-two, .style-dark.style-home5.header-style-four .main-box.style-two, .style-dark.style-home5.header-style-three .main-box.style-two, .style-dark.style-home5.header-style-two .main-box.style-two {
    padding: 29px 15px 30px;
  }
}
@media (max-width: 1199.98px) {
  .header-style-one.style-dark.style-home5 .main-box.style-two, .style-dark.style-home5.header-style-seven .main-box.style-two, .style-dark.style-home5.header-style-six .main-box.style-two, .style-dark.style-home5.header-style-five .main-box.style-two, .style-dark.style-home5.header-style-four .main-box.style-two, .style-dark.style-home5.header-style-three .main-box.style-two, .style-dark.style-home5.header-style-two .main-box.style-two {
    margin-bottom: 15px;
  }
}
.header-style-one.style-dark .header-top, .style-dark.header-style-seven .header-top, .style-dark.header-style-six .header-top, .style-dark.header-style-five .header-top, .style-dark.header-style-four .header-top, .style-dark.header-style-three .header-top, .style-dark.header-style-two .header-top {
  background-color: #1c1c1c;
  display: block;
  padding: 0;
}
@media (max-width: 991.98px) {
  .header-style-one.style-dark .header-top, .style-dark.header-style-seven .header-top, .style-dark.header-style-six .header-top, .style-dark.header-style-five .header-top, .style-dark.header-style-four .header-top, .style-dark.header-style-three .header-top, .style-dark.header-style-two .header-top {
    display: none;
  }
}
.header-style-one.style-dark .header-top .info-user, .style-dark.header-style-seven .header-top .info-user, .style-dark.header-style-six .header-top .info-user, .style-dark.header-style-five .header-top .info-user, .style-dark.header-style-four .header-top .info-user, .style-dark.header-style-three .header-top .info-user, .style-dark.header-style-two .header-top .info-user {
  background-color: var(--theme-color-white);
}
.header-style-one.style-dark .header-top .inner-box, .style-dark.header-style-seven .header-top .inner-box, .style-dark.header-style-six .header-top .inner-box, .style-dark.header-style-five .header-top .inner-box, .style-dark.header-style-four .header-top .inner-box, .style-dark.header-style-three .header-top .inner-box, .style-dark.header-style-two .header-top .inner-box {
  padding: 0;
}
.header-style-one.style-dark .header-top .inner-box .top-right .social-icon-one li a, .style-dark.header-style-seven .header-top .inner-box .top-right .social-icon-one li a, .style-dark.header-style-six .header-top .inner-box .top-right .social-icon-one li a, .style-dark.header-style-five .header-top .inner-box .top-right .social-icon-one li a, .style-dark.header-style-four .header-top .inner-box .top-right .social-icon-one li a, .style-dark.header-style-three .header-top .inner-box .top-right .social-icon-one li a, .style-dark.header-style-two .header-top .inner-box .top-right .social-icon-one li a {
  color: var(--theme-color-white);
}
.header-style-one.style-dark .header-top .inner-box .top-left, .style-dark.header-style-seven .header-top .inner-box .top-left, .style-dark.header-style-six .header-top .inner-box .top-left, .style-dark.header-style-five .header-top .inner-box .top-left, .style-dark.header-style-four .header-top .inner-box .top-left, .style-dark.header-style-three .header-top .inner-box .top-left, .style-dark.header-style-two .header-top .inner-box .top-left {
  color: var(--theme-color-white);
}
.header-style-one.style-dark .header-top .inner-box .top-left span, .style-dark.header-style-seven .header-top .inner-box .top-left span, .style-dark.header-style-six .header-top .inner-box .top-left span, .style-dark.header-style-five .header-top .inner-box .top-left span, .style-dark.header-style-four .header-top .inner-box .top-left span, .style-dark.header-style-three .header-top .inner-box .top-left span, .style-dark.header-style-two .header-top .inner-box .top-left span {
  color: var(--theme-color-white);
  font-size: 16px;
  margin-right: 20px;
}
.header-style-one.style-dark .header-top .inner-box .top-left span .icon, .style-dark.header-style-seven .header-top .inner-box .top-left span .icon, .style-dark.header-style-six .header-top .inner-box .top-left span .icon, .style-dark.header-style-five .header-top .inner-box .top-left span .icon, .style-dark.header-style-four .header-top .inner-box .top-left span .icon, .style-dark.header-style-three .header-top .inner-box .top-left span .icon, .style-dark.header-style-two .header-top .inner-box .top-left span .icon {
  background-color: rgba(var(--theme-color-white-rgb), 1);
  border-radius: 50%;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: var(--theme-color1);
  margin-right: 7px;
}
.header-style-one.style-dark .main-box, .style-dark.header-style-seven .main-box, .style-dark.header-style-six .main-box, .style-dark.header-style-five .main-box, .style-dark.header-style-four .main-box, .style-dark.header-style-three .main-box, .style-dark.header-style-two .main-box {
  background-color: transparent;
  padding: 30px 36px 30px 40px;
}
@media (max-width: 575.98px) {
  .header-style-one.style-dark .main-box, .style-dark.header-style-seven .main-box, .style-dark.header-style-six .main-box, .style-dark.header-style-five .main-box, .style-dark.header-style-four .main-box, .style-dark.header-style-three .main-box, .style-dark.header-style-two .main-box {
    padding: 24px 15px;
  }
}
.header-style-one.style-dark .mobile-nav-toggler, .style-dark.header-style-seven .mobile-nav-toggler, .style-dark.header-style-six .mobile-nav-toggler, .style-dark.header-style-five .mobile-nav-toggler, .style-dark.header-style-four .mobile-nav-toggler, .style-dark.header-style-three .mobile-nav-toggler, .style-dark.header-style-two .mobile-nav-toggler {
  color: var(--theme-color1);
  margin-left: 35px;
}
@media (max-width: 575.98px) {
  .header-style-one .auto-container, .header-style-seven .auto-container, .header-style-six .auto-container, .header-style-five .auto-container, .header-style-four .auto-container, .header-style-three .auto-container, .header-style-two .auto-container {
    padding: 0;
  }
}
.header-style-one .header-top, .header-style-seven .header-top, .header-style-six .header-top, .header-style-five .header-top, .header-style-four .header-top, .header-style-three .header-top, .header-style-two .header-top {
  padding: 8px 0;
}
.header-style-one .header-top::after, .header-style-seven .header-top::after, .header-style-six .header-top::after, .header-style-five .header-top::after, .header-style-four .header-top::after, .header-style-three .header-top::after, .header-style-two .header-top::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 31%;
  height: 100%;
  content: "";
  background-color: var(--theme-color1);
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .header-style-one .header-top::after, .header-style-seven .header-top::after, .header-style-six .header-top::after, .header-style-five .header-top::after, .header-style-four .header-top::after, .header-style-three .header-top::after, .header-style-two .header-top::after {
    width: 35%;
  }
}
@media (max-width: 991.98px) {
  .header-style-one .header-top, .header-style-seven .header-top, .header-style-six .header-top, .header-style-five .header-top, .header-style-four .header-top, .header-style-three .header-top, .header-style-two .header-top {
    display: none;
  }
}
.header-style-one .header-top .inner-box, .header-style-seven .header-top .inner-box, .header-style-six .header-top .inner-box, .header-style-five .header-top .inner-box, .header-style-four .header-top .inner-box, .header-style-three .header-top .inner-box, .header-style-two .header-top .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0 11px;
}
.header-style-one .header-top .inner-box .top-left span, .header-style-seven .header-top .inner-box .top-left span, .header-style-six .header-top .inner-box .top-left span, .header-style-five .header-top .inner-box .top-left span, .header-style-four .header-top .inner-box .top-left span, .header-style-three .header-top .inner-box .top-left span, .header-style-two .header-top .inner-box .top-left span {
  color: #adadad;
}
.header-style-one .header-top .inner-box .top-left span .icon, .header-style-seven .header-top .inner-box .top-left span .icon, .header-style-six .header-top .inner-box .top-left span .icon, .header-style-five .header-top .inner-box .top-left span .icon, .header-style-four .header-top .inner-box .top-left span .icon, .header-style-three .header-top .inner-box .top-left span .icon, .header-style-two .header-top .inner-box .top-left span .icon {
  color: var(--theme-color1);
  margin-right: 18px;
}
.header-style-one .header-top .inner-box .top-right .social-icon-one li a, .header-style-seven .header-top .inner-box .top-right .social-icon-one li a, .header-style-six .header-top .inner-box .top-right .social-icon-one li a, .header-style-five .header-top .inner-box .top-right .social-icon-one li a, .header-style-four .header-top .inner-box .top-right .social-icon-one li a, .header-style-three .header-top .inner-box .top-right .social-icon-one li a, .header-style-two .header-top .inner-box .top-right .social-icon-one li a {
  font-size: 16px;
  color: #adadad;
}
.header-style-one .header-top .social-icon-one li, .header-style-seven .header-top .social-icon-one li, .header-style-six .header-top .social-icon-one li, .header-style-five .header-top .social-icon-one li, .header-style-four .header-top .social-icon-one li, .header-style-three .header-top .social-icon-one li, .header-style-two .header-top .social-icon-one li {
  color: #adadad;
  margin-left: 0;
  margin-right: 18px;
}
.header-style-one .header-top .social-icon-one li:last-child, .header-style-seven .header-top .social-icon-one li:last-child, .header-style-six .header-top .social-icon-one li:last-child, .header-style-five .header-top .social-icon-one li:last-child, .header-style-four .header-top .social-icon-one li:last-child, .header-style-three .header-top .social-icon-one li:last-child, .header-style-two .header-top .social-icon-one li:last-child {
  margin-right: 0;
}
.header-style-one .header-top .info-language, .header-style-seven .header-top .info-language, .header-style-six .header-top .info-language, .header-style-five .header-top .info-language, .header-style-four .header-top .info-language, .header-style-three .header-top .info-language, .header-style-two .header-top .info-language {
  margin-left: 30px;
}
.header-style-one .header-top .info-language .select-language, .header-style-seven .header-top .info-language .select-language, .header-style-six .header-top .info-language .select-language, .header-style-five .header-top .info-language .select-language, .header-style-four .header-top .info-language .select-language, .header-style-three .header-top .info-language .select-language, .header-style-two .header-top .info-language .select-language {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  padding: 15.75px 20px;
  cursor: pointer;
}
.header-style-one .header-top .info-language .select-language .icon, .header-style-seven .header-top .info-language .select-language .icon, .header-style-six .header-top .info-language .select-language .icon, .header-style-five .header-top .info-language .select-language .icon, .header-style-four .header-top .info-language .select-language .icon, .header-style-three .header-top .info-language .select-language .icon, .header-style-two .header-top .info-language .select-language .icon {
  margin-left: 6px;
}
.header-style-one .header-top .info-user, .header-style-seven .header-top .info-user, .header-style-six .header-top .info-user, .header-style-five .header-top .info-user, .header-style-four .header-top .info-user, .header-style-three .header-top .info-user, .header-style-two .header-top .info-user {
  background-color: rgba(var(--theme-color-white-rgb), 0.1);
  color: var(--theme-color1);
  font-size: 24px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}
.header-style-one .main-box, .header-style-seven .main-box, .header-style-six .main-box, .header-style-five .main-box, .header-style-four .main-box, .header-style-three .main-box, .header-style-two .main-box {
  background-color: var(--theme-color-light);
  padding: 20px;
  max-width: 1450px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .header-style-one .main-box, .header-style-seven .main-box, .header-style-six .main-box, .header-style-five .main-box, .header-style-four .main-box, .header-style-three .main-box, .header-style-two .main-box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 575.98px) {
  .header-style-one .main-box, .header-style-seven .main-box, .header-style-six .main-box, .header-style-five .main-box, .header-style-four .main-box, .header-style-three .main-box, .header-style-two .main-box {
    padding: 24px 15px;
  }
}
.header-style-one .main-box .nav-outer .nav .navigation li, .header-style-seven .main-box .nav-outer .nav .navigation li, .header-style-six .main-box .nav-outer .nav .navigation li, .header-style-five .main-box .nav-outer .nav .navigation li, .header-style-four .main-box .nav-outer .nav .navigation li, .header-style-three .main-box .nav-outer .nav .navigation li, .header-style-two .main-box .nav-outer .nav .navigation li {
  margin-right: 50px;
}
.header-style-one .main-box .nav-outer .nav .navigation li:last-child, .header-style-seven .main-box .nav-outer .nav .navigation li:last-child, .header-style-six .main-box .nav-outer .nav .navigation li:last-child, .header-style-five .main-box .nav-outer .nav .navigation li:last-child, .header-style-four .main-box .nav-outer .nav .navigation li:last-child, .header-style-three .main-box .nav-outer .nav .navigation li:last-child, .header-style-two .main-box .nav-outer .nav .navigation li:last-child {
  margin-right: 0;
}
    .nav-link.active,
    .header-style-one .main-box .nav-outer .nav .navigation li a:hover, .header-style-seven .main-box .nav-outer .nav .navigation li a:hover, .header-style-six .main-box .nav-outer .nav .navigation li a:hover, .header-style-five .main-box .nav-outer .nav .navigation li a:hover, .header-style-four .main-box .nav-outer .nav .navigation li a:hover, .header-style-three .main-box .nav-outer .nav .navigation li a:hover, .header-style-two .main-box .nav-outer .nav .navigation li a:hover {
        color: var(--theme-color1) !important;
    }
.header-style-one .outer-box, .header-style-seven .outer-box, .header-style-six .outer-box, .header-style-five .outer-box, .header-style-four .outer-box, .header-style-three .outer-box, .header-style-two .outer-box {
  margin-left: 0;
  margin-right: 0;
}
.header-style-one .outer-box .info-box, .header-style-seven .outer-box .info-box, .header-style-six .outer-box .info-box, .header-style-five .outer-box .info-box, .header-style-four .outer-box .info-box, .header-style-three .outer-box .info-box, .header-style-two .outer-box .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-style-one .outer-box .info-box .call-info, .header-style-seven .outer-box .info-box .call-info, .header-style-six .outer-box .info-box .call-info, .header-style-five .outer-box .info-box .call-info, .header-style-four .outer-box .info-box .call-info, .header-style-three .outer-box .info-box .call-info, .header-style-two .outer-box .info-box .call-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-style-one .outer-box .info-box .call-info i, .header-style-seven .outer-box .info-box .call-info i, .header-style-six .outer-box .info-box .call-info i, .header-style-five .outer-box .info-box .call-info i, .header-style-four .outer-box .info-box .call-info i, .header-style-three .outer-box .info-box .call-info i, .header-style-two .outer-box .info-box .call-info i {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  color: var(--headings-color);
  font-size: 18px;
  display: inline-block;
  background-color: var(--theme-color1);
}
.header-style-one .outer-box .info-box .call-info .title, .header-style-seven .outer-box .info-box .call-info .title, .header-style-six .outer-box .info-box .call-info .title, .header-style-five .outer-box .info-box .call-info .title, .header-style-four .outer-box .info-box .call-info .title, .header-style-three .outer-box .info-box .call-info .title, .header-style-two .outer-box .info-box .call-info .title {
  margin-bottom: 0;
  color: #0c6460;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 16px;
}
.header-style-one .outer-box .info-box .call-info a, .header-style-seven .outer-box .info-box .call-info a, .header-style-six .outer-box .info-box .call-info a, .header-style-five .outer-box .info-box .call-info a, .header-style-four .outer-box .info-box .call-info a, .header-style-three .outer-box .info-box .call-info a, .header-style-two .outer-box .info-box .call-info a {
  font-size: 16px;
  color: var(--theme-color-dark);
  font-weight: 600;
}
@media (max-width: 1399.98px) {
  .header-style-one .outer-box .info-box .call-info, .header-style-seven .outer-box .info-box .call-info, .header-style-six .outer-box .info-box .call-info, .header-style-five .outer-box .info-box .call-info, .header-style-four .outer-box .info-box .call-info, .header-style-three .outer-box .info-box .call-info, .header-style-two .outer-box .info-box .call-info {
    display: none;
  }
}
.header-style-one .outer-box .info-box .btn-two, .header-style-seven .outer-box .info-box .btn-two, .header-style-six .outer-box .info-box .btn-two, .header-style-five .outer-box .info-box .btn-two, .header-style-four .outer-box .info-box .btn-two, .header-style-three .outer-box .info-box .btn-two, .header-style-two .outer-box .info-box .btn-two {
  margin-left: 50px;
}
@media (max-width: 1199.98px) {
  .header-style-one .outer-box .info-box, .header-style-seven .outer-box .info-box, .header-style-six .outer-box .info-box, .header-style-five .outer-box .info-box, .header-style-four .outer-box .info-box, .header-style-three .outer-box .info-box, .header-style-two .outer-box .info-box {
    display: none;
  }
}
.header-style-one .outer-box .search-btn, .header-style-seven .outer-box .search-btn, .header-style-six .outer-box .search-btn, .header-style-five .outer-box .search-btn, .header-style-four .outer-box .search-btn, .header-style-three .outer-box .search-btn, .header-style-two .outer-box .search-btn {
  position: relative;
  background-color: unset;
  margin-right: 75px;
}
@media (max-width: 575.98px) {
  .header-style-one .outer-box .search-btn, .header-style-seven .outer-box .search-btn, .header-style-six .outer-box .search-btn, .header-style-five .outer-box .search-btn, .header-style-four .outer-box .search-btn, .header-style-three .outer-box .search-btn, .header-style-two .outer-box .search-btn {
    margin-right: 20px;
  }
}
.header-style-one .outer-box .search-btn::before, .header-style-seven .outer-box .search-btn::before, .header-style-six .outer-box .search-btn::before, .header-style-five .outer-box .search-btn::before, .header-style-four .outer-box .search-btn::before, .header-style-three .outer-box .search-btn::before, .header-style-two .outer-box .search-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -52px;
  width: 1px;
  height: 40px;
  background-color: #ababab;
}
@media (max-width: 575.98px) {
  .header-style-one .outer-box .search-btn::before, .header-style-seven .outer-box .search-btn::before, .header-style-six .outer-box .search-btn::before, .header-style-five .outer-box .search-btn::before, .header-style-four .outer-box .search-btn::before, .header-style-three .outer-box .search-btn::before, .header-style-two .outer-box .search-btn::before {
    right: -20px;
  }
}
.header-style-one .outer-box .search-btn .flaticon-search, .header-style-seven .outer-box .search-btn .flaticon-search, .header-style-six .outer-box .search-btn .flaticon-search, .header-style-five .outer-box .search-btn .flaticon-search, .header-style-four .outer-box .search-btn .flaticon-search, .header-style-three .outer-box .search-btn .flaticon-search, .header-style-two .outer-box .search-btn .flaticon-search {
  font-size: 21px;
  color: #000000;
}
.header-style-one .outer-box .login-btn, .header-style-seven .outer-box .login-btn, .header-style-six .outer-box .login-btn, .header-style-five .outer-box .login-btn, .header-style-four .outer-box .login-btn, .header-style-three .outer-box .login-btn, .header-style-two .outer-box .login-btn {
  position: relative;
  margin-right: 18px;
  background-color: unset;
}
.header-style-one .outer-box .login-btn::before, .header-style-seven .outer-box .login-btn::before, .header-style-six .outer-box .login-btn::before, .header-style-five .outer-box .login-btn::before, .header-style-four .outer-box .login-btn::before, .header-style-three .outer-box .login-btn::before, .header-style-two .outer-box .login-btn::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -1px;
  width: 1px;
  height: 27px;
  background-color: #000000;
}
.header-style-one .outer-box .login-btn .flaticon-user, .header-style-seven .outer-box .login-btn .flaticon-user, .header-style-six .outer-box .login-btn .flaticon-user, .header-style-five .outer-box .login-btn .flaticon-user, .header-style-four .outer-box .login-btn .flaticon-user, .header-style-three .outer-box .login-btn .flaticon-user, .header-style-two .outer-box .login-btn .flaticon-user {
  font-size: 21px;
  color: #000000;
}
.header-style-one .outer-box .header-btn, .header-style-seven .outer-box .header-btn, .header-style-six .outer-box .header-btn, .header-style-five .outer-box .header-btn, .header-style-four .outer-box .header-btn, .header-style-three .outer-box .header-btn, .header-style-two .outer-box .header-btn {
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  line-height: 45px;
  background-color: var(--theme-color1);
  border-color: transparent;
  padding: 0;
  width: 140px;
  text-align: center;
  margin-top: -8px;
  height: 50px;
}
.header-style-one .outer-box .header-btn:before, .header-style-seven .outer-box .header-btn:before, .header-style-six .outer-box .header-btn:before, .header-style-five .outer-box .header-btn:before, .header-style-four .outer-box .header-btn:before, .header-style-three .outer-box .header-btn:before, .header-style-two .outer-box .header-btn:before {
  display: none;
}
.header-style-one .main-menu .navigation > li, .header-style-seven .main-menu .navigation > li, .header-style-six .main-menu .navigation > li, .header-style-five .main-menu .navigation > li, .header-style-four .main-menu .navigation > li, .header-style-three .main-menu .navigation > li, .header-style-two .main-menu .navigation > li {
  padding: 0;
  margin-right: 58px;
}
.header-style-one .main-menu .navigation > li:last-child, .header-style-seven .main-menu .navigation > li:last-child, .header-style-six .main-menu .navigation > li:last-child, .header-style-five .main-menu .navigation > li:last-child, .header-style-four .main-menu .navigation > li:last-child, .header-style-three .main-menu .navigation > li:last-child, .header-style-two .main-menu .navigation > li:last-child {
  margin-right: 0;
}
.header-style-one .main-menu .navigation > li > a, .header-style-seven .main-menu .navigation > li > a, .header-style-six .main-menu .navigation > li > a, .header-style-five .main-menu .navigation > li > a, .header-style-four .main-menu .navigation > li > a, .header-style-three .main-menu .navigation > li > a, .header-style-two .main-menu .navigation > li > a {
  color: var(--headings-color);
  text-transform: capitalize;
  position: relative;
  font-weight: 500;
}
    .navigation > li > a.active:before,
    .header-style-one .main-menu .navigation > li > a:before, .header-style-seven .main-menu .navigation > li > a:before, .header-style-six .main-menu .navigation > li > a:before, .header-style-five .main-menu .navigation > li > a:before, .header-style-four .main-menu .navigation > li > a:before, .header-style-three .main-menu .navigation > li > a:before, .header-style-two .main-menu .navigation > li > a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--theme-color1);
        height: 1px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .navigation > li > a.active,
    .header-style-one .main-menu .navigation > li > a:hover, .header-style-seven .main-menu .navigation > li > a:hover, .header-style-six .main-menu .navigation > li > a:hover, .header-style-five .main-menu .navigation > li > a:hover, .header-style-four .main-menu .navigation > li > a:hover, .header-style-three .main-menu .navigation > li > a:hover, .header-style-two .main-menu .navigation > li > a:hover {
        color: var(--theme-color1);
    }
.header-style-one .main-menu .navigation > li > a:hover:before, .header-style-seven .main-menu .navigation > li > a:hover:before, .header-style-six .main-menu .navigation > li > a:hover:before, .header-style-five .main-menu .navigation > li > a:hover:before, .header-style-four .main-menu .navigation > li > a:hover:before, .header-style-three .main-menu .navigation > li > a:hover:before, .header-style-two .main-menu .navigation > li > a:hover:before {
  width: 100%;
}
.header-style-one .main-menu .navigation li.dropdown .dropdown-btn, .header-style-seven .main-menu .navigation li.dropdown .dropdown-btn, .header-style-six .main-menu .navigation li.dropdown .dropdown-btn, .header-style-five .main-menu .navigation li.dropdown .dropdown-btn, .header-style-four .main-menu .navigation li.dropdown .dropdown-btn, .header-style-three .main-menu .navigation li.dropdown .dropdown-btn, .header-style-two .main-menu .navigation li.dropdown .dropdown-btn {
  display: inline-block;
  border: 2px;
  top: auto;
  bottom: 1px;
  right: -14px;
  width: auto;
  height: unset;
  font-size: 10px;
  color: var(--headings-color);
}
.header-style-one .main-menu .navigation li.dropdown ul .dropdown-btn, .header-style-seven .main-menu .navigation li.dropdown ul .dropdown-btn, .header-style-six .main-menu .navigation li.dropdown ul .dropdown-btn, .header-style-five .main-menu .navigation li.dropdown ul .dropdown-btn, .header-style-four .main-menu .navigation li.dropdown ul .dropdown-btn, .header-style-three .main-menu .navigation li.dropdown ul .dropdown-btn, .header-style-two .main-menu .navigation li.dropdown ul .dropdown-btn {
  display: none;
}
.header-style-one .main-menu .navigation > li > ul > li > a:hover, .header-style-seven .main-menu .navigation > li > ul > li > a:hover, .header-style-six .main-menu .navigation > li > ul > li > a:hover, .header-style-five .main-menu .navigation > li > ul > li > a:hover, .header-style-four .main-menu .navigation > li > ul > li > a:hover, .header-style-three .main-menu .navigation > li > ul > li > a:hover, .header-style-two .main-menu .navigation > li > ul > li > a:hover {
  color: var(--theme-color-v2);
}
.header-style-one .mobile-nav-toggler, .header-style-seven .mobile-nav-toggler, .header-style-six .mobile-nav-toggler, .header-style-five .mobile-nav-toggler, .header-style-four .mobile-nav-toggler, .header-style-three .mobile-nav-toggler, .header-style-two .mobile-nav-toggler {
  display: inline-block;
  -webkit-box-ordinal-group: unset;
      -ms-flex-order: unset;
          order: unset;
  font-size: 24px;
  color: #000;
}
.header-style-one .sticky-header, .header-style-seven .sticky-header, .header-style-six .sticky-header, .header-style-five .sticky-header, .header-style-four .sticky-header, .header-style-three .sticky-header, .header-style-two .sticky-header {
  background-color: var(--theme-color-v2);
  /*.main-menu .navigation > li.current > a,*/
}
@media (max-width: 575.98px) {
  .header-style-one .sticky-header .auto-container, .header-style-seven .sticky-header .auto-container, .header-style-six .sticky-header .auto-container, .header-style-five .sticky-header .auto-container, .header-style-four .sticky-header .auto-container, .header-style-three .sticky-header .auto-container, .header-style-two .sticky-header .auto-container {
    padding: 0 15px;
  }
}
.header-style-one .sticky-header .mobile-nav-toggler, .header-style-seven .sticky-header .mobile-nav-toggler, .header-style-six .sticky-header .mobile-nav-toggler, .header-style-five .sticky-header .mobile-nav-toggler, .header-style-four .sticky-header .mobile-nav-toggler, .header-style-three .sticky-header .mobile-nav-toggler, .header-style-two .sticky-header .mobile-nav-toggler {
  display: none;
}
@media (max-width: 991.98px) {
  .header-style-one .sticky-header .mobile-nav-toggler, .header-style-seven .sticky-header .mobile-nav-toggler, .header-style-six .sticky-header .mobile-nav-toggler, .header-style-five .sticky-header .mobile-nav-toggler, .header-style-four .sticky-header .mobile-nav-toggler, .header-style-three .sticky-header .mobile-nav-toggler, .header-style-two .sticky-header .mobile-nav-toggler {
    color: var(--theme-color2);
    display: block;
  }
}
.header-style-one .sticky-header .main-menu .navigation > li > a, .header-style-seven .sticky-header .main-menu .navigation > li > a, .header-style-six .sticky-header .main-menu .navigation > li > a, .header-style-five .sticky-header .main-menu .navigation > li > a, .header-style-four .sticky-header .main-menu .navigation > li > a, .header-style-three .sticky-header .main-menu .navigation > li > a, .header-style-two .sticky-header .main-menu .navigation > li > a {
  color: var(--theme-color-black);
}
.header-style-one .sticky-header .main-menu .navigation > li.current > a, .header-style-seven .sticky-header .main-menu .navigation > li.current > a, .header-style-six .sticky-header .main-menu .navigation > li.current > a, .header-style-five .sticky-header .main-menu .navigation > li.current > a, .header-style-four .sticky-header .main-menu .navigation > li.current > a, .header-style-three .sticky-header .main-menu .navigation > li.current > a, .header-style-two .sticky-header .main-menu .navigation > li.current > a,
.header-style-one .sticky-header .main-menu .navigation > li:hover > a,
.header-style-seven .sticky-header .main-menu .navigation > li:hover > a,
.header-style-six .sticky-header .main-menu .navigation > li:hover > a,
.header-style-five .sticky-header .main-menu .navigation > li:hover > a,
.header-style-four .sticky-header .main-menu .navigation > li:hover > a,
.header-style-three .sticky-header .main-menu .navigation > li:hover > a,
.header-style-two .sticky-header .main-menu .navigation > li:hover > a {
  color: var(--headings-color);
}
.header-style-one .sticky-header .main-menu .navigation > li, .header-style-seven .sticky-header .main-menu .navigation > li, .header-style-six .sticky-header .main-menu .navigation > li, .header-style-five .sticky-header .main-menu .navigation > li, .header-style-four .sticky-header .main-menu .navigation > li, .header-style-three .sticky-header .main-menu .navigation > li, .header-style-two .sticky-header .main-menu .navigation > li {
  padding: 0;
}
.header-style-one .sticky-header.fixed-header, .header-style-seven .sticky-header.fixed-header, .header-style-six .sticky-header.fixed-header, .header-style-five .sticky-header.fixed-header, .header-style-four .sticky-header.fixed-header, .header-style-three .sticky-header.fixed-header, .header-style-two .sticky-header.fixed-header {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.header-style-one .sticky-header .main-menu, .header-style-seven .sticky-header .main-menu, .header-style-six .sticky-header .main-menu, .header-style-five .sticky-header .main-menu, .header-style-four .sticky-header .main-menu, .header-style-three .sticky-header .main-menu, .header-style-two .sticky-header .main-menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .header-style-one .sticky-header .main-menu, .header-style-seven .sticky-header .main-menu, .header-style-six .sticky-header .main-menu, .header-style-five .sticky-header .main-menu, .header-style-four .sticky-header .main-menu, .header-style-three .sticky-header .main-menu, .header-style-two .sticky-header .main-menu {
    display: none;
  }
}
.header-style-one .sticky-header .main-menu .navigation li.dropdown .dropdown-btn, .header-style-seven .sticky-header .main-menu .navigation li.dropdown .dropdown-btn, .header-style-six .sticky-header .main-menu .navigation li.dropdown .dropdown-btn, .header-style-five .sticky-header .main-menu .navigation li.dropdown .dropdown-btn, .header-style-four .sticky-header .main-menu .navigation li.dropdown .dropdown-btn, .header-style-three .sticky-header .main-menu .navigation li.dropdown .dropdown-btn, .header-style-two .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
  color: var(--headings-color);
}
.header-style-one .sticky-header .inner-container, .header-style-seven .sticky-header .inner-container, .header-style-six .sticky-header .inner-container, .header-style-five .sticky-header .inner-container, .header-style-four .sticky-header .inner-container, .header-style-three .sticky-header .inner-container, .header-style-two .sticky-header .inner-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*** 

====================================================================
    header-style-two
====================================================================

***/
.header-style-two {  
  border-bottom: 1px solid #e5e7eb;
}
.header-style-two .header-top {
  overflow: unset;
  padding: 0;  
  position: relative;
  z-index: 2;
}
.header-style-two .header-top .auto-container {
  padding: 0 12px;
  max-width: 1344px;
}
.header-style-two .header-top::after {
  display: none;
}
.header-style-two .header-top .select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-style-two .header-top .select-box .nice-select {
  border: none;
  background-color: transparent;
  height: 45px;
  line-height: 45px;
  padding-left: 10px;
}
.header-style-two .header-top .select-box .nice-select::before {
  color: var(--theme-color-white);
  font-size: 12px;
}
.header-style-two .header-top .select-box .nice-select .current {
  font-size: 14px;
  color: var(--theme-color-white);
}
.header-style-two .header-top .select-box .nice-select .list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.header-style-two .header-top .top-left .info-list li {
  color: var(--theme-color-white);
}
.header-style-two .header-top .top-left .info-list i {
  color: var(--theme-color1);
}
.header-style-two .header-top .top-left .info-list a {
  color: var(--theme-color-white);
}
.header-style-two .header-top .top-right .top-social-icon li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--theme-color-white);
}
.header-style-two .header-top .top-right .top-social-icon li a:hover {
  color: var(--theme-color1);
  -webkit-transform: unset;
          transform: unset;
}
.header-style-two .main-box {
  max-width: 1344px;
  padding: 20px 12px;  
}
.header-style-two .main-box .outer-box .info-box .btn-one-light {
  min-width: 160px;
  padding: 16px;
}
.header-style-two .main-box .outer-box .mobile-nav-toggler {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;  
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--theme-color1);
  font-size: 20px;
  color:#fff
}
.header-style-two .main-box .outer-box .mobile-nav-toggler:hover {
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
}

/*** 

====================================================================
    header-style-three
====================================================================

***/
.header-style-three {
  background-color: #faf0e7;
}
.header-style-three .header-top {
  padding: 2px 0;
  border: none;
}
.header-style-three .header-top .auto-container {
  padding: 0 12px;
  max-width: 1700px;
  margin: 0;
  padding-left: 60px !important;
}
.header-style-three .header-top .top-left {
  width: 88%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-style-three .header-top .top-left .info-list i {
  color: var(--theme-color2);
}
.header-style-three .header-top .top-left .info-list span {
  color: var(--theme-color1);
}
@media (max-width: 1599.98px) {
  .header-style-three .header-top .top-left {
    width: 100%;
  }
}
.header-style-three .header-top .top-right .top-social-icon {
  gap: 25px;
}
.header-style-three .header-top .top-right .top-social-icon li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--theme-color-white);
}
.header-style-three .header-top .top-right .top-social-icon li a:hover {
  -webkit-transform: unset;
          transform: unset;
  color: var(--theme-color1);
}
@media (max-width: 1599.98px) {
  .header-style-three .header-top .top-right {
    display: none;
  }
}
.header-style-three .header-top::after {
  background-color: var(--theme-color2);
  width: 20%;
}
@media (max-width: 1599.98px) {
  .header-style-three .header-top::after {
    display: none;
  }
}
.header-style-three .main-box {
  max-width: 1700px;
  margin: 0;
  padding-left: 60px !important;
  padding: 20px 12px;
  background-color: transparent;
}
.header-style-three .main-box .outer-box .info-box .con-btn {
  display: inline-block;
  margin-left: 50px;
  font-weight: 500;
  font-size: 16px;
  color: var(--headings-color);
  text-decoration: underline;
  text-transform: capitalize;
  padding-left: 5px;
}
.header-style-three .main-box .outer-box .info-box .con-btn i {
  display: inline-block;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-style-three .main-box .outer-box .info-box .con-btn:hover i {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.header-style-three .main-box .outer-box .info-box .call-info .title {
  color: var(--headings-color);
}
.header-style-three .main-box .outer-box .info-box .call-info a {
  color: var(--theme-color2);
}
.header-style-three .main-box .nav-outer .nav {
  background-color: var(--theme-color-white);
  padding: 20px 70px;
  border-radius: 38px;
}

/*** 

====================================================================
    header-style-four
====================================================================

***/
.header-style-four {
  background-color: var(--theme-color2);
  border-bottom: 1px solid #29564a;
}
.header-style-four .main-box {
  background-color: var(--theme-color2);
  max-width: 100%;
  padding: 0;
}
.header-style-four .main-box .mobile-nav-toggler {
  border-right: 1px solid #29564a;
  padding: 35px 30px;
  margin-left: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color-white);
  margin-right: 20px;
}
.header-style-four .main-box .mobile-nav-toggler i {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .header-style-four .main-box .mobile-nav-toggler {
    width: 100%;
  }
}
.header-style-four .main-menu .navigation li a {
  color: var(--theme-color-white);
}
.header-style-four .main-menu .navigation li a:hover {
  color: var(--theme-color-white) !important;
}
.header-style-four .main-menu .navigation li .dropdown-btn {
  color: var(--theme-color-white) !important;
}
.header-style-four .main-menu .navigation li.dropdown ul li a {
  color: var(--headings-color) !important;
}
.header-style-four .sticky-header .main-menu .navigation li a {
  color: var(--headings-color);
}
.header-style-four .sticky-header .main-menu .navigation li a:hover {
  color: var(--headings-color) !important;
}
.header-style-four .sticky-header .main-menu .navigation li .dropdown-btn {
  color: var(--headings-color) !important;
}
.header-style-four .outer-box .info-box .call-info {
  padding: 18px;
  padding-left: 25px;
  padding-right: 45px;
  border-left: 1px solid #29564a;
}
.header-style-four .outer-box .info-box .call-info i {
  color: var(--theme-color-white);
  background-color: rgba(var(--theme-color-white-rgb), 0.05);
}
.header-style-four .outer-box .info-box .call-info .title {
  color: var(--theme-color-white);
}
.header-style-four .outer-box .info-box .call-info a {
  color: var(--theme-color-white);
}
.header-style-four .outer-box .btn-one {
  border-radius: 0;
  min-width: 240px;
  padding: 38px 20px;
}

/*** 

====================================================================
    header-style-five
====================================================================

***/
.header-style-five {
  background-color: transparent;
  border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
}
.header-style-five .main-box {
  background-color: var(--theme-color-light);
  max-width: 100%;
  padding: 0;
}
.header-style-five .main-box .logo-box {
  padding-left: 30px;
}
@media (max-width: 575.98px) {
  .header-style-five .main-box .logo-box {
    padding-left: 15px;
  }
}
.header-style-five .main-box .nav-outer {
  padding: 20px 0;
}
.header-style-five .main-box .mobile-nav-toggler {
  padding: 35px 30px;
  margin-left: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color-dark);
}
.header-style-five .main-box .mobile-nav-toggler i {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .header-style-five .main-box .mobile-nav-toggler {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .header-style-five .main-box .mobile-nav-toggler {
    padding: 30px 15px;
  }
}
.header-style-five .outer-box .search-btn {
  position: relative;
  background-color: unset;
  margin-right: 25px;
  color: var(--link-color);
}
@media (max-width: 991.98px) {
  .header-style-five .outer-box .search-btn {
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .header-style-five .outer-box .search-btn {
    display: none;
  }
}
.header-style-five .outer-box .search-btn::before {
  display: none;
}
.header-style-five .outer-box .search-btn .flaticon-search {
  font-size: 20px;
  color: #000000;
}
.header-style-five .main-menu .navigation li a {
  color: var(--headings-color);
}
.header-style-five .main-menu .navigation li a:hover {
  color: var(--headings-color) !important;
}
.header-style-five .main-menu .navigation li .dropdown-btn {
  color: var(--headings-color) !important;
}
.header-style-five .main-menu .navigation li.dropdown ul li a {
  color: var(--headings-color) !important;
}
.header-style-five .sticky-header .main-menu .navigation li a {
  color: var(--headings-color);
}
.header-style-five .sticky-header .main-menu .navigation li a:hover {
  color: var(--headings-color) !important;
}
.header-style-five .sticky-header .main-menu .navigation li .dropdown-btn {
  color: var(--headings-color) !important;
}
.header-style-five .outer-box .info-box .call-info {
  padding: 18px;
  padding-left: 25px;
  padding-right: 45px;
  border-left: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
}
.header-style-five .outer-box .info-box .call-info i {
  color: var(--theme-color-dark);
  background-color: rgba(var(--theme-color-black-rgb), 0.05);
}
.header-style-five .outer-box .info-box .call-info .title {
  color: var(--theme-color-dark);
}
.header-style-five .outer-box .info-box .call-info a {
  color: var(--theme-color-dark);
}
.header-style-five .outer-box .btn-one {
  border-radius: 0;
  min-width: 240px;
  padding: 38px 20px;
}

/*** 

====================================================================
    header-style-six
====================================================================

***/
.header-style-six {
  background-color: var(--theme-color7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  left: 0;
  max-width: 1350px;
  margin: 0 auto;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: 30px;
}
@media (max-width: 991.98px) {
  .header-style-six {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header-style-six .main-box {
  background-color: var(--theme-color7);
  border-radius: 50px;
  max-width: 100%;
  padding: 0;
}
.header-style-six .main-box .mobile-nav-toggler {
  border-right: 1px solid #29564a;
  color: var(--theme-color-white);
  font-size: 20px;
  font-weight: 500;
  margin-left: 0;
  margin-right: 20px;
  padding: 35px 30px;
}
.header-style-six .main-box .mobile-nav-toggler i {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .header-style-six .main-box .mobile-nav-toggler {
    border: none;
    margin-right: 0;
    padding: 20px 10px;
    width: 100%;
  }
}
.header-style-six .main-menu .navigation li a {
  color: var(--theme-color-white);
}
.header-style-six .main-menu .navigation li a:hover {
  color: var(--theme-color-white) !important;
}
.header-style-six .main-menu .navigation li .dropdown-btn {
  color: var(--theme-color-white) !important;
}
.header-style-six .main-menu .navigation li.dropdown ul li a {
  color: var(--headings-color) !important;
}
.header-style-six .sticky-header .main-menu .navigation li a {
  color: var(--headings-color);
}
.header-style-six .sticky-header .main-menu .navigation li a:hover {
  color: var(--headings-color) !important;
}
.header-style-six .sticky-header .main-menu .navigation li .dropdown-btn {
  color: var(--headings-color) !important;
}
.header-style-six .outer-box .info-box .call-info {
  padding: 18px;
  padding-left: 25px;
  padding-right: 45px;
  border-left: 1px solid #29564a;
}
.header-style-six .outer-box .info-box .call-info i {
  color: var(--theme-color-white);
  background-color: rgba(var(--theme-color-white-rgb), 0.05);
}
.header-style-six .outer-box .info-box .call-info .title {
  color: var(--theme-color-white);
}
.header-style-six .outer-box .info-box .call-info a {
  color: var(--theme-color-white);
}
.header-style-six .outer-box .btn-one {
  border-radius: 0;
  min-width: 240px;
  padding: 38px 20px;
}

/*** 

====================================================================
    header-style-seven
====================================================================

***/
.header-style-seven {
  position: absolute;
  top: 30px;
  left: 25px;
  right: 25px;
  width: auto;
}
.header-style-seven .main-box {
  max-width: 100%;
  padding: 0;
  padding-right: 40px;
  background-color: transparent;
}
@media (max-width: 991.98px) {
  .header-style-seven .main-box {
    padding: 10px 0;
    padding-right: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header-style-seven .main-box .logo-box {
  position: relative;
  max-width: 214px;
  height: 76px;
  line-height: 76px;
  width: 100%;
  margin-top: -20px;
  border-radius: 0px 0px 30px 0px;
  background-color: #F4F3EE;
}
.header-style-seven .main-box .logo-box::after {
  position: absolute;
  bottom: -30px;
  left: -18px;
  width: 50px;
  height: 50px;
  content: "";
  background-color: transparent;
  border: solid;
  border-top-width: 20px;
  border-left-width: 20px;
  border-right-width: 0;
  border-bottom-width: 0;
  border-color: #F4F3EE;
  border-radius: 48px 0 0 0;
}
.header-style-seven .main-box .logo-box::before {
  position: absolute;
  top: -18px;
  right: -30px;
  width: 50px;
  height: 50px;
  content: "";
  background-color: transparent;
  border: solid;
  border-top-width: 20px;
  border-left-width: 20px;
  border-right-width: 0;
  border-bottom-width: 0;
  border-color: #F4F3EE;
  border-radius: 48px 0 0 0;
}
@media (max-width: 991.98px) {
  .header-style-seven .main-box .nav-outer {
    margin-right: 0;
  }
}
.header-style-seven .main-box .mobile-nav-toggler {
  padding: 25px 30px;
  font-size: 20px;
  font-weight: 500;
  margin-left: 0;
  border-radius: 15px;
  color: var(--theme-color-white);
  background-color: var(--theme-color4);
}
.header-style-seven .main-box .mobile-nav-toggler i {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .header-style-seven .main-box .mobile-nav-toggler {
    width: 100%;
  }
}
.header-style-seven .main-menu {
  padding: 20px 48px;
  border-radius: 30px;
  margin: 10px 0;
  background-color: rgba(5, 27, 5, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.header-style-seven .main-menu .navigation li a {
  color: var(--theme-color-white);
}
.header-style-seven .main-menu .navigation li a:hover {
  color: var(--theme-color-white) !important;
}
.header-style-seven .main-menu .navigation li .dropdown-btn {
  color: var(--theme-color-white) !important;
}
.header-style-seven .main-menu .navigation li.dropdown ul li a {
  color: var(--headings-color) !important;
}
.header-style-seven .sticky-header .main-menu {
  background-color: transparent;
}
.header-style-seven .sticky-header .main-menu .navigation li a {
  color: var(--headings-color);
}
.header-style-seven .sticky-header .main-menu .navigation li a:hover {
  color: var(--headings-color) !important;
}
.header-style-seven .sticky-header .main-menu .navigation li .dropdown-btn {
  color: var(--headings-color) !important;
}
.header-style-seven .outer-box .info-box .call-info {
  padding: 18px;
  padding-left: 25px;
  padding-right: 45px;
}
.header-style-seven .outer-box .info-box .call-info i {
  color: var(--theme-color-white);
  background-color: var(--theme-color1);
}
.header-style-seven .outer-box .info-box .call-info .title {
  color: var(--theme-color-white);
}
.header-style-seven .outer-box .info-box .call-info a {
  color: var(--theme-color-white);
}
.header-style-seven .outer-box .btn-one {
  border-radius: 0;
  min-width: 240px;
  padding: 38px 20px;
}

/*** 

====================================================================
Sticky Header
====================================================================

***/
.sticky-header {
  background: #000;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  left: 0px;
  opacity: 0;
  padding: 0px 0px;
  position: fixed;
  top: 0px;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}
.sticky-header .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sticky-header.fixed-header {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.sticky-header .logo {
  padding: 10px 0;
}
.sticky-header .logo img {
  max-height: 40px;
}
.sticky-header .nav-outer {
  background: none;
  margin-left: auto;
  position: relative;
}

.sticky-header .main-menu .navigation > li {
  margin: 0;
  margin-left: 50px;
  padding: 20px 0;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--theme-color1);
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
  display: none;
}

/*** 

====================================================================
      Mobile Menu
====================================================================

***/
.mobile-nav-toggler {
  position: relative;
  font-size: 28px;
  line-height: 20px;
  cursor: pointer;
  color: var(--theme-color1);
  display: none;
  top: 0;
  margin-left: 30px;
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
@media (max-width: 991.98px) {
  .mobile-nav-toggler {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .mobile-nav-toggler {
    margin-left: 20px;
  }
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
}
.mobile-menu .close-btn {
  position: relative;
  top: 0px;
  right: -5px;
  text-align: center;
  font-size: 18px;  
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile-menu .nav-logo img {
  max-height: 50px;
}
.mobile-menu .menu-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background-color: #222;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease 200ms;
  transition: all 0.4s ease 200ms;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .content-box {
  padding: 30px 20px;
  border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
}
.mobile-menu-visible .mobile-menu .content-box .title {
  color: var(--theme-color-white);
  margin-bottom: 10px;
}
.mobile-menu-visible .mobile-menu .content-box .text {
  font-size: 16px;
  line-height: 28px;
  color: rgba(var(--theme-color-white-rgb), 0.5);
  margin-bottom: 0;
  max-width: 245px;
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid #999;
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;  
  font-weight: 400;
  text-transform: capitalize;
}
    .mobile-menu .navigation li:hover > a, .mobile-menu .navigation li.current > a {
        color: #0d8494;
    }
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}

.contact-list-one {
  position: relative;
  padding: 30px 20px 20px;
}
.contact-list-one li {
  position: relative;
  padding-left: 54px;
  min-height: 50px;
  margin-bottom: 20px;
}
.contact-list-one li .icon {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 34px;
  line-height: 50px;
  color: #ffffff;
}
.contact-list-one li .title {
  display: block;
  font-size: 12px;
  color: var(--theme-color1);
  font-weight: 400;
  text-transform: uppercase;
}

.contact-list-one li .text {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.contact-list-one li .text a {
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}



.mobile-menu .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #222;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.mobile-menu .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
  color: var(--theme-color2);
}

/***

====================================================================
  Hidden Sidebar style
====================================================================

***/
.toggle-hidden-bar {
  position: relative;
}

.hidden-bar {
  position: fixed;
  right: 0;
  top: 0px;
  height: 100%;
  overflow-y: auto;
  z-index: 99999;
  max-width: 320px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  visibility: hidden;
  background: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hidden-bar::-webkit-scrollbar {
  width: 2px;
}
.hidden-bar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px #cecece;
  box-shadow: inset 0 0 2px #cecece;
  border-radius: 10px;
}
.hidden-bar::-webkit-scrollbar-thumb {
  background: #7a7a7a;
  border-radius: 10px;
}
.hidden-bar::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}
.hidden-bar .inner-box {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--theme-color-dark);
  height: 100%;
}
.hidden-bar .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 30px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hidden-bar .upper-box .close-btn {
  position: relative;
  top: -5px;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color1);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hidden-bar .upper-box .close-btn:hover {
  opacity: 0.5;
}
.hidden-bar .upper-box .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.hidden-bar .upper-box .nav-logo img {
  max-height: 40px;
}
.hidden-bar .text-box {
  position: relative;
  padding: 25px 30px 25px;
}
.hidden-bar .text-box .title {
  color: var(--theme-color-light);
}
.hidden-bar .text-box .text {
  color: var(--theme-color-light);
}

.hidden-bar-back-drop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.active-hidden-bar .hidden-bar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.active-hidden-bar .hidden-bar-back-drop {
  opacity: 1;
  visibility: visible;
}

.hidden-bar .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--theme-color-dark);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: auto;
}
.hidden-bar .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hidden-bar .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.hidden-bar .social-links li a:hover {
  color: var(--theme-color1);
}

/*** 

====================================================================
Section Title
====================================================================

***/
.sec-title .sub-title {
  min-width: 156px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  background-color: var(--theme-color1);
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  text-align: center;
  color:#fff;
}
.sec-title .sub-title.style-red {
  background-color: var(--theme-color6);
  color: var(--theme-color-white);
}
.sec-title .title {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .sec-title .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.sec-title .title.light {
  color: var(--theme-color-light);
}
.sec-title .text {
  margin-top: 20px;
  margin-bottom: 0;
}
.sec-title .text.fs-16 {
  font-size: 16px;
  line-height: 28.8px;
}
.sec-title .flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec-title .flex-content .flex-text {
  max-width: 540px;
  margin-bottom: 0;
}
.sec-title.center {
  text-align: center;
}
.sec-title.center .sub-title {
  margin: 0 auto;
  margin-bottom: 10px;
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1500px) {
  .banner-section .container {
    max-width: 1424px;
  }
}
.banner-section .sec-shape {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2;
}
.banner-section .sec-shape img {
  height: 100%;
}
.banner-section .arry {
  position: absolute;
  top: 33%;
  left: 5%;
  z-index: 2;
}
.banner-section .goBottom-btn {
  display: inline-block;
  width: 54px;
  height: 94px;
  line-height: 95px;
  border-radius: 27px;
  border: 1px dashed rgba(var(--theme-color-white-rgb), 0.3);
  background-color: transparent;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.banner-section .goBottom-btn:hover {
  border: 1px dashed var(--theme-color1);
}
.banner-section .outer-box {
  position: relative;
  z-index: 1;
  padding: 215px 0;
}
.banner-section .content-column .inner-column .sub-title {
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--theme-color1);
  color: var(--theme-color1);
  line-height: 15px;
  display: inline-block;
  margin-bottom: 0;
}
.banner-section .content-column .inner-column .title {
  color: var(--theme-color-white);
  text-transform: capitalize;
  margin-bottom: 30px;
}
.banner-section .content-column .inner-column .title span {
  font-weight: 300;
  display: block;
}
.banner-section .content-column .inner-column .btn-one {
  border-radius: 0;
  color: var(--theme-color-black);
}
@media (max-width: 1199.98px) {
  .banner-section .content-column .inner-column .title {
    line-height: 70px;
  }
}
.banner-section .text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--theme-color-white);
  max-width: 305px;
  margin-bottom: 0;
  margin-left: auto;
}
.banner-section .banner-slider .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.banner-section .banner-slider .slide-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(4, 44, 42, 0.98) 99.98%, rgba(4, 44, 42, 0.98) 99.99%);
  z-index: 1;
}
.banner-section .banner-slider .swiper-slide-active .slide-bg {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}
@media (max-width: 1199.98px) {
  .banner-section .arry {
    left: 2%;
  }
  .banner-section .sec-shape {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .banner-section .outer-box {
    padding: 80px 0;
  }
  .banner-section .content-column .inner-column .title {
    font-size: 46px;
    line-height: 60px;
  }
  .banner-section .text {
    margin-top: 30px;
    margin-left: 0;
  }
  .banner-section .arry {
    display: none;
  }
  .banner-section .goBottom-btn {
    bottom: 20px;
    display: none;
  }
}

/*** 

====================================================================
  Banner Section Two
====================================================================

***/
.banner-section-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 50px;  
}
.banner-section-two .sec-shape {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .banner-section-two .sec-shape {
    display: none;
  }
}
.banner-section-two .content-column .inner-column .content-box .sub-title {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #101249;
  background-color: var(--theme-color1);
  padding: 10px 40px;
  text-transform: inherit;
  border-radius: 16.5px;
  margin-bottom: 10px;
}
.banner-section-two .content-column .inner-column .content-box .title {
  font-size: 75px;
  line-height: 85px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.banner-section-two .content-column .inner-column .content-box .title span {
  font-weight: 400;
  color: inherit;
}
.banner-section-two .content-column .inner-column .content-box .text {
  text-transform: capitalize;
  margin-bottom: 30px;
}
.banner-section-two .content-column .inner-column .content-box .btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.banner-section-two .content-column .inner-column .content-box .btn-wrp .video-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color-white);
  border: 1px solid var(--headings-color);
  color: var(--headings-color);
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .banner-section-two .content-column .inner-column .content-box .title {
    font-size: 46px;
    line-height: 60px;
  }
  .banner-section-two .content-column .inner-column .content-box .text {
    font-size: 15px;
    line-height: 26px;
  }
}
.banner-section-two .image-column .image {
  position: relative;
  z-index: 1;
  max-width: 577px;
  margin-left: auto;
}
.banner-section-two .image-column .image img {
  width: 100%;
}
.banner-section-two .image-column .image .info1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner-section-two .image-column .image .info2 {
  position: absolute;
  top: 20%;
  right: 0;
}
.banner-section-two .image-column .image .info3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-section-two .image-column .image .star1 {
  position: absolute;
  top: 120px;
  left: 0;
  z-index: -1;
  -webkit-animation: starZoom 5s linear infinite;
          animation: starZoom 5s linear infinite;
}
.banner-section-two .image-column .image .star2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-animation: starZoom 7s linear infinite;
          animation: starZoom 7s linear infinite;
}
.banner-section-two .image-column .image .circle-bg {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  min-width: 642px;
  -webkit-animation: forItrotate 20s linear infinite;
          animation: forItrotate 20s linear infinite;
}
@media (max-width: 1399.98px) {
  .banner-section-two .image-column .image .circle-bg {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .banner-section-two .image-column {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .banner-section-two {
    padding: 120px 0;
  }
}
@media (max-width: 575.98px) {
  .banner-section-two {
    padding: 80px 0;
  }
}
@-webkit-keyframes forItrotate {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(360deg);
            transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes forItrotate {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(360deg);
            transform: translateX(-50%) rotate(360deg);
  }
}
@-webkit-keyframes starZoom {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@keyframes starZoom {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

/***

====================================================================
  Banner Section Three
====================================================================

***/
.banner-section-three {
  position: relative;
  z-index: 1;
  padding: 180px 0;
  margin-left: 60px;
}
.banner-section-three::after {
  position: absolute;
  top: 0;
  left: -60px;
  width: 100%;
  height: 120px;
  background-color: #faf0e7;
  content: "";
  z-index: -2;
}
.banner-section-three .arry {
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 0;
}
@media (max-width: 1599.98px) {
  .banner-section-three .arry {
    display: none;
  }
}
.banner-section-three .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  overflow: hidden;
}
.banner-section-three .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-section-three .bg-image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(99.2deg, #093429 32.71%, rgba(9, 52, 41, 0.916807) 40.78%, rgba(9, 52, 41, 0.797132) 45.58%, rgba(64, 95, 9, 0) 77.85%, rgba(196, 196, 196, 0) 103.7%);
  content: "";
  z-index: 1;
}
@media (max-width: 991.98px) {
  .banner-section-three .bg-image {
    border-radius: 0;
  }
}
.banner-section-three .content-column .inner-column .title {
  color: var(--theme-color-white);
  margin-bottom: 30px;
  font-size: 80px;
  line-height: 90px;
}
.banner-section-three .content-column .inner-column .title .whitespace {
  width: 18px;
}
@media (max-width: 991.98px) {
  .banner-section-three .content-column .inner-column .title .whitespace {
    width: 8px;
  }
}
.banner-section-three .content-column .inner-column .text {
  font-weight: 500;
  color: #d9d9d9;
  max-width: 670px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
.banner-section-three .content-column .inner-column .btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.banner-section-three .content-column .inner-column .btn-wrp .video-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color-white);
  border: 1px solid var(--headings-color);
  color: var(--headings-color);
  font-size: 20px;
}
.banner-section-three .content-column .inner-column .btn-wrp .video-btn::after, .banner-section-three .content-column .inner-column .btn-wrp .video-btn::before {
  border: 20px solid rgba(var(--theme-color-white-rgb), 0.5);
}
@media (max-width: 767.98px) {
  .banner-section-three .content-column .inner-column .title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .banner-section-three .content-column .inner-column .text {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199.98px) {
  .banner-section-three .arry {
    left: 3%;
  }
  .banner-section-three .inner-column {
    padding-left: 30px;
  }
}
@media (max-width: 991.98px) {
  .banner-section-three {
    padding: 80px 0;
    margin: 0;
  }
  .banner-section-three .inner-column {
    padding-left: 0;
  }
}

/***

====================================================================
  Banner Section Four
====================================================================

***/
.banner-section-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 370px;
  background-color: var(--theme-color2);
}
.banner-section-four .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.banner-section-four .sec-shape {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.banner-section-four .content-box {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}
.banner-section-four .content-box .title {
  font-size: 85px;
  line-height: 83px;
  margin-bottom: 30px;
  color: var(--theme-color-white);
  text-transform: capitalize;
}
.banner-section-four .content-box .title span {
  font-weight: 300;
}
.banner-section-four .content-box .text {
  max-width: 775px;
  margin: 0 auto;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: #444;
  text-transform: capitalize;
}
.banner-section-four .content-box .btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner-section-four .content-box .btn-wrp .btn-one-rounded {
  color: var(--theme-color-black);
}
.banner-section-four .content-box .btn-wrp .btn-title {
  color: var(--theme-color-white);
  font-size: 16px;
  margin-bottom: 0;
}
.banner-section-four .content-box .btn-wrp .video-btn {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: #264b41;
  border-radius: 50%;
  text-align: center;
  margin-right: 8px;
}
@media (max-width: 575.98px) {
  .banner-section-four .content-box .btn-wrp {
    gap: 10px;
  }
  .banner-section-four .content-box .btn-wrp .btn-title {
    font-size: 12px;
  }
  .banner-section-four .content-box .btn-wrp .video-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-four .content-box .title {
    font-size: 46px;
    line-height: 60px;
  }
  .banner-section-four .content-box .text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-four {
    padding-bottom: 60px;
  }
  .banner-section-four .sec-shape {
    display: none;
  }
}

.banner-hero-four {
  position: relative;
  z-index: 1;
  margin-top: -270px;
}
.banner-hero-four .arry-btn {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  color: var(--theme-color-white);
  border-radius: 50%;
  border: 1px solid rgba(var(--theme-color-white-rgb), 0.28);
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner-hero-four .arry-btn:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-black);
}
.banner-hero-four .arry-btn.banner-slider-four-prev {
  position: absolute;
  top: 15px;
  left: 30px;
}
@media (max-width: 1499.98px) {
  .banner-hero-four .arry-btn.banner-slider-four-prev {
    left: 5px;
  }
}
.banner-hero-four .arry-btn.banner-slider-four-next {
  position: absolute;
  top: 15px;
  right: 30px;
}
@media (max-width: 1499.98px) {
  .banner-hero-four .arry-btn.banner-slider-four-next {
    right: 5px;
  }
}
@media (max-width: 991.98px) {
  .banner-hero-four .arry-btn {
    display: none;
  }
}
.banner-hero-four .image-box {
  background-color: var(--theme-color-black);
  overflow: hidden;
  border-radius: 33px;
}
.banner-hero-four .image-box .image img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .banner-hero-four {
    margin-top: 30px;
  }
}

.banner-section-five {
  padding: 30px 15px;
}
@media (max-width: 991.98px) {
  .banner-section-five {
    padding: 0;
  }
}
.banner-section-five .content-box {
  position: relative;
  padding: 50px 50px 50px 100px;
  border-radius: 30px;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-color: var(--theme-color7);
}
@media (max-width: 1399.98px) {
  .banner-section-five .content-box {
    padding: 50px;
  }
}
@media (max-width: 1199.98px) {
  .banner-section-five .content-box {
    padding: 100px 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .content-box {
    padding: 80px 30px;
  }
}
.banner-section-five .content-box .box-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 198px;
  height: 198px;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .banner-section-five .content-box .box-shape {
    display: none;
  }
}
.banner-section-five .content-box .box-shape .box1 {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 91px;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
}
.banner-section-five .content-box .box-shape .box2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 91px;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
}
.banner-section-five .content-box .shape-image {
  position: absolute;
  top: 40px;
  left: 10px;
  z-index: -1;
}
.banner-section-five .content-box .title {
  font-size: 74px;
  line-height: 90px;
  margin-bottom: 30px;
  color: var(--theme-color-white);
  text-transform: capitalize;
  font-size: clamp(36px, 3.86vw, 74px);
  line-height: 1.2;
}
.banner-section-five .content-box .title span {
  font-weight: 400;
}
@media (max-width: 1199.98px) {
  .banner-section-five .content-box .title {
    max-width: 600px;
  }
}
.banner-section-five .content-box .text {
  max-width: 665px;
  margin-bottom: 37px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: rgba(var(--theme-color-white-rgb), 0.57);
  text-transform: capitalize;
}
@media (max-width: 1399.98px) {
  .banner-section-five .content-box .text {
    margin-bottom: 25px;
  }
}
.banner-section-five .content-box .btn-wrp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-section-five .content-box .btn-wrp .btn-one-rounded {
  color: var(--theme-color-black);
}
.banner-section-five .content-box .btn-wrp .btn-title {
  color: var(--theme-color-white);
  font-size: 16px;
  margin-bottom: 0;
}
.banner-section-five .content-box .btn-wrp .video-btn {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: #264b41;
  border-radius: 50%;
  text-align: center;
  margin-right: 8px;
}
@media (max-width: 575.98px) {
  .banner-section-five .content-box .btn-wrp {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .banner-section-five .content-box .btn-wrp .btn-title {
    font-size: 12px;
  }
  .banner-section-five .content-box .btn-wrp .video-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.banner-section-five .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.banner-section-five .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .banner-section-five .image-box {
    margin-top: 30px;
  }
}

/***

====================================================================
  Banner Section Six
====================================================================

***/
.banner-section-six {
  overflow: hidden;
  position: relative;
}
.banner-section-six .banner-slider {
  background-color: var(--theme-color7);
  position: relative;
}
.banner-section-six .banner-slider .banner-slide {
  height: 100%;
  position: relative;
}
.banner-section-six .banner-slider .banner-slide:before {
  background: rgba(180, 231, 23, 0.2);
  content: "";
  -webkit-filter: blur(150px);
          filter: blur(150px);
  height: 947.86px;
  left: -134px;
  position: absolute;
  top: 0px;
  width: 378px;
}
.banner-section-six .banner-slider .banner-slide:after {
  background-image: url(../images/banner/home6-banne-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
}
.banner-section-six .banner-slider .banner-slide .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1455px;
  padding: 130px 0px 0px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .banner-slide .outer-box {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .banner-slide .outer-box {
    display: block;
    padding: 130px 0 0;
  }
}
.banner-section-six .banner-slider .banner-slide .outer-box .stroke-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: linear-gradient(360deg, rgba(6, 50, 50, 0.2) 1.34%, rgba(250, 250, 250, 0) 100%);
  bottom: -70px;
  font-size: clamp(64px, 17.93vw, 287px);
  line-height: 1.04;
  left: calc(50% + 0px);
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.12;
  position: absolute;
  text-edge: cap;
  text-transform: lowercase;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 991.98px) {
  .banner-section-six .banner-slider .banner-slide .outer-box .stroke-title {
    bottom: -20px;
  }
}
.banner-section-six .banner-slider .info-column {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 27%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .info-column {
    min-width: inherit;
  }
}
.banner-section-six .banner-slider .info-column .info-box {
  left: 45px;
  position: relative;
  top: -121px;
}
@media (max-width: 1599.98px) {
  .banner-section-six .banner-slider .info-column .info-box {
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .info-column .info-box {
    left: 15px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .info-column .info-box {
    padding-right: 20px;
    top: -20px;
  }
}
.banner-section-six .banner-slider .info-column .info-box .inner-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: 0px;
  margin-top: 235px;
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .info-column .info-box .inner-box {
    margin-top: 150px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .info-column .info-box .inner-box {
    margin-top: 50px;
  }
}
.banner-section-six .banner-slider .info-column .info-box .inner-box:after {
  background-image: url(../images/icon/arrow-shape1.png);
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  height: 106px;
  left: -110px;
  position: absolute;
  top: 90%;
  width: 90px;
}
@media (max-width: 1599.98px) {
  .banner-section-six .banner-slider .info-column .info-box .inner-box:after {
    display: none;
  }
}
.banner-section-six .banner-slider .info-column .info-box .inner-box .image-1 {
  margin-bottom: 0;
}
.banner-section-six .banner-slider .info-column .info-box .inner-box .info-year {
  margin-left: -81px;
  margin-top: -3px;
}
.banner-section-six .banner-slider .info-column .info-box .inner-box .info-year .number {
  color: var(--theme-color-white);
  font-family: var(--title-font);
  font-size: 80px;
  line-height: 84px;
  margin-bottom: 13px;
  margin-left: -5px;
}
.banner-section-six .banner-slider .info-column .info-box .inner-box .info-year .text {
  color: var(--theme-color-white);
  font-size: 20px;
  line-height: 30px;
  margin-left: -1px;
}
.banner-section-six .banner-slider .info-column .text2 {
  color: var(--theme-color-white);
  font-family: var(--text-font);
  font-weight: 400;
  line-height: 1.875;
  margin-top: 70px;
  max-width: 440px;
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .info-column .text2 {
    margin-top: 40px;
    max-width: inherit;
  }
}
.banner-section-six .banner-slider .content-column {
  margin-top: 42px;
  position: relative;
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .content-column {
    margin-top: 0;
  }
}
.banner-section-six .banner-slider .content-column .content-box {
  left: 13%;
  position: relative;
}
@media (max-width: 1199.98px) {
  .banner-section-six .banner-slider .content-column .content-box {
    left: 15px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .content-column .content-box {
    margin-left: 0;
    padding-right: 20px;
    margin-top: 120px;
  }
}
.banner-section-six .banner-slider .content-column .content-box .image-shape-1 {
  left: -200px;
  position: absolute;
  top: -100px;
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .content-column .content-box .image-shape-1 {
    display: none;
  }
}
.banner-section-six .banner-slider .content-column .content-info {
  margin-top: 85px;
  position: relative;
}
@media (max-width: 1499.98px) {
  .banner-section-six .banner-slider .content-column .content-info {
    margin-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .content-column .content-info {
    margin-top: 0px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-slider .content-column .content-info {
    margin-top: -80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .content-column .content-info {
    left: 0;
  }
}
.banner-section-six .banner-slider .content-column .content-info .title {
  color: var(--theme-color-white);
  font-size: 150px;
  letter-spacing: -0.02em;
  line-height: 155px;
  margin-bottom: 34px;
  font-size: clamp(40px, 5.62vw, 90px);
  line-height: 1.11;
  text-transform: capitalize;
}
.banner-section-six .banner-slider .content-column .content-info .title span {
  font-weight: 300;
}
.banner-section-six .banner-slider .content-column .content-info .btn-wrp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 1199.98px) {
  .banner-section-six .banner-slider .content-column .content-info .btn-wrp {
    display: block;
  }
}
.banner-section-six .banner-slider .content-column .content-info .btn-wrp .btn-two-rounded {
  background-color: var(--theme-color7);
  border: 1px solid var(--theme-color-white);
}
.banner-section-six .banner-slider .content-column .content-info .btn-wrp .btn-title {
  color: var(--theme-color-white);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.banner-section-six .banner-slider .content-column .content-info .btn-wrp .video-btn {
  background-color: #0F3F3F;
  border-radius: 50%;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  margin-right: 8px;
  text-align: center;
  width: 55px;
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-slider .content-column .content-info .btn-wrp {
    gap: 10px;
  }
  .banner-section-six .banner-slider .content-column .content-info .btn-wrp .btn-title {
    font-size: 12px;
  }
  .banner-section-six .banner-slider .content-column .content-info .btn-wrp .video-btn {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}
.banner-section-six .banner-slider .image-column {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 38%;
}
@media (max-width: 991.98px) {
  .banner-section-six .banner-slider .image-column {
    display: none;
  }
}
.banner-section-six .banner-slider .image-column .inner-column {
  position: relative;
  z-index: 1;
}
.banner-section-six .banner-slider .image-column .inner-column .image-1 {
  margin-bottom: 0;
  text-align: center;
}

/***

====================================================================
  Banner Section Seven
====================================================================

***/
.banner-section-seven .btn-wrp {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 99;
  padding: 10px 45px 0px 20px;
  background-color: #F4F3EE;
  border-radius: 30px 0 0 0;
}
@media (max-width: 1199.98px) {
  .banner-section-seven .btn-wrp {
    display: none;
  }
}
.banner-section-seven .btn-wrp::before {
  position: absolute;
  bottom: -19px;
  left: -30px;
  width: 50px;
  height: 50px;
  content: "";
  background-color: transparent;
  border: solid;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 20px;
  border-bottom-width: 20px;
  border-color: #F4F3EE;
  border-radius: 0 0 45px 0;
}
.banner-section-seven .btn-wrp::after {
  position: absolute;
  top: -30px;
  right: -5px;
  width: 50px;
  height: 50px;
  content: "";
  background-color: transparent;
  border: solid;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 20px;
  border-bottom-width: 20px;
  border-color: #F4F3EE;
  border-radius: 0 0 45px 0;
}
.banner-section-seven .btn-wrp .banner-slider-five-prev,
.banner-section-seven .btn-wrp .banner-slider-five-next {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color2);
  border: 2px solid var(--theme-color2);
  color: var(--theme-color-white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 20px;
}
.banner-section-seven .btn-wrp .banner-slider-five-prev:hover,
.banner-section-seven .btn-wrp .banner-slider-five-next:hover {
  color: var(--headings-color);
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.banner-section-seven .swiper-slide .outer-box {
  position: relative;
  margin: 30px 15px 0;
  border-radius: 30px;
  overflow: hidden;
}
.banner-section-seven .swiper-slide .outer-box .banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner-section-seven .swiper-slide .outer-box .banner-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(248.19deg, rgba(0, 0, 0, 0) 20.61%, #1A4137 81.3%);
}
.banner-section-seven .swiper-slide .outer-box .banner-shape-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.banner-section-seven .swiper-slide .outer-box .banner-recept {
  position: absolute;
  top: 30px;
  right: 32px;
  overflow: hidden;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
@media (max-width: 1199.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-recept {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media (max-width: 991.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-recept {
    display: none;
  }
}
.banner-section-seven .swiper-slide .outer-box .banner-content {
  position: relative;
  max-width: 1150px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 550px;
  padding-left: 90px;
}
@media (max-width: 1199.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content {
    padding: 500px 30px 30px;
  }
}
@media (max-width: 991.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content {
    padding: 250px 30px 30px;
  }
}
.banner-section-seven .swiper-slide .outer-box .banner-content .banner-title {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  color: var(--theme-color-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  font-size: clamp(40px, 5.62vw, 80px);
  line-height: 1.2;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .banner-title span {
  font-weight: 300;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
}
@media (max-width: 1199.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content .info {
    gap: 20px;
  }
}
@media (max-width: 1199.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content .info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 30px 0;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
@media (max-width: 1199.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content .info .user {
    padding-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content .info .user {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .user ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .user ul li {
  width: 66px;
  height: 66px;
  text-align: center;
  border-radius: 50%;
  line-height: 60px;
  margin-left: -15px;
  color: var(--theme-color-black);
  background-color: var(--theme-color1);
  border: 2px solid var(--theme-color-white);
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .user ul li:first-child {
  margin-left: 0;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .user .user-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  max-width: 188px;
  color: var(--theme-color-white);
  margin-bottom: 0;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .user .user-title span {
  font-weight: 700;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .funfact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
@media (max-width: 767.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content .info .funfact-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .funfact-box .content-box {
  padding: 30px 37px 30px 50px;
  border-left: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
}
@media (max-width: 1399.98px) {
  .banner-section-seven .swiper-slide .outer-box .banner-content .info .funfact-box .content-box {
    padding: 10px 30px 10px 0px;
    border-left: 0;
    margin-right: 30px;
  }
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .funfact-box .content-box .count-box {
  font-size: 48px;
  line-height: 62px;
  font-weight: 700;
  letter-spacing: -1.44px;
  color: var(--theme-color-white);
  font-size: clamp(24px, 2.5vw, 48px);
  line-height: 1.5;
}
.banner-section-seven .swiper-slide .outer-box .banner-content .info .funfact-box .content-box .text {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: var(--theme-color-white);
}
.banner-section-seven .swiper-slide-active .outer-box .banner-recept {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 1199.98px) {
  .banner-section-seven .swiper-slide-active .outer-box .banner-recept {
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
}
.banner-section-seven .swiper-slide-active .outer-box .banner-content .banner-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.banner-section-seven .swiper-slide-active .outer-box .banner-content .info .user {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.banner-section-seven .swiper-slide-active .outer-box .banner-content .info .funfact-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.blog-section {
  overflow: hidden;
}

.blog-block .inner-box .image-box {
  overflow: hidden;
}
.blog-block .inner-box .image-box .image {
  position: relative;
  z-index: 1;
}
.blog-block .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-block .inner-box .image-box .image::after {
  background-color: rgba(var(--theme-color-white-rgb), 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
}
.blog-block .inner-box .content-box {
  width: 86%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 14px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0588235294);
  margin-bottom: 5px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-white);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
@media (max-width: 375.98px) {
  .blog-block .inner-box .content-box {
    width: 93%;
  }
}
.blog-block .inner-box .content-box .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}
.blog-block .inner-box .content-box .info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.blog-block .inner-box .content-box .info li svg path {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog-block .inner-box .content-box .info li a {
  font-size: 15px;
}
.blog-block .inner-box .content-box .info li a:hover {
  color: var(--theme-color1) !important;
}
.blog-block .inner-box .content-box .title {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.blog-block .inner-box .content-box .arry-btn {
    font-weight: 500;
    color: #003150;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    font-size: 15px;
}
.blog-block .inner-box .content-box .arry-btn svg path {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog-block .inner-box .content-box .arry-btn:hover {
  gap: 10px;
}
.blog-block .inner-box:hover .image-box .image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-block .inner-box:hover .image-box .image::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.blog-block .inner-box:hover .content-box {
  background-color: var(--theme-color4);
}
.blog-block .inner-box:hover .content-box .info li svg path {
  fill: var(--theme-color-white);
}
.blog-block .inner-box:hover .content-box .info li a {
  color: var(--theme-color-white);
}
.blog-block .inner-box:hover .content-box .title {
  color: var(--theme-color-white);
}
.blog-block .inner-box:hover .content-box .arry-btn {
  color: var(--theme-color-white);
}
.blog-block .inner-box:hover .content-box .arry-btn svg path {
  fill: var(--theme-color-white);
}

.blog-section-two {
  overflow: hidden;
}

.blog-block-two .inner-box {
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
          box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
  background-color: var(--theme-color-white);
}
.blog-block-two .inner-box .image-box {
  position: relative;
  z-index: 1;
}
.blog-block-two .inner-box .image-box .image {
  overflow: hidden;
  border-radius: 5px;
}
.blog-block-two .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-block-two .inner-box .image-box .tag {
  font-size: 16px;
  line-height: 26px;
  padding: 10px 25px;
  border-left: 2px solid var(--theme-color1);
  border-radius: 5px 0 0 5px;
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
  position: absolute;
  top: 20px;
  right: 0;
}
.blog-block-two .inner-box .content-box {
  padding: 30px;
  padding-top: 20px;
}
.blog-block-two .inner-box .content-box .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.blog-block-two .inner-box .content-box .info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.blog-block-two .inner-box .content-box .info li svg path {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog-block-two .inner-box .content-box .info li a {
  font-size: 14px;
  color: #737588;
}
.blog-block-two .inner-box .content-box .info li a:hover {
  color: var(--theme-color1) !important;
}
.blog-block-two .inner-box .content-box .title {
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.blog-block-two .inner-box .content-box .btn-one-rounded {
  min-width: 155px;
  color: #fff;
  text-align: center;
}
.blog-block-two .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1) rotate(-1deg);
          transform: scale(1.1) rotate(-1deg);
}

.blog-section-three {
  overflow: hidden;
}

.blog-block-three .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.blog-block-three .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-block-three .inner-box .image-box .image img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.blog-block-three .inner-box .content-box .content {
  padding: 20px 25px;
}
@media (max-width: 375.98px) {
  .blog-block-three .inner-box .content-box .content {
    padding-left: 0px;
    padding-right: 0;
  }
}
.blog-block-three .inner-box .content-box .content .title {
  margin-bottom: 0;
}
.blog-block-three .inner-box .content-box .content .sub-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--headings-color);
}
.blog-block-three .inner-box .content-box .info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(0, 23, 38, 0.102);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 25px;
  padding-top: 15px;
}
@media (max-width: 375.98px) {
  .blog-block-three .inner-box .content-box .info {
    padding-left: 0px;
  }
}
.blog-block-three .inner-box .content-box .info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.blog-block-three .inner-box .content-box .info li svg path {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog-block-three .inner-box .content-box .info li a {
  font-size: 16px;
  color: #595b62;
}
.blog-block-three .inner-box .content-box .info li a:hover {
  color: var(--theme-color1) !important;
}
.blog-block-three .inner-box:hover .image-box .image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.blog-block-three .inner-box:hover .image-box .image img:last-child {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-section-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#f7f0e1), to(#f8f5f2));
  background: linear-gradient(0deg, #f7f0e1 0%, #f8f5f2 100%);
}
.blog-section-four .sec-shape {
  position: absolute;
  bottom: 15%;
  left: 0;
  z-index: -1;
}
.blog-section-four.have-padding {
  padding-bottom: 600px;
  margin-bottom: -480px;
}

.hzAccordion-area {
  overflow: hidden;
  background-color: var(--theme-color7);
}
.hzAccordion-area .outer-box {
  padding: 0px 50px;
}
@media (max-width: 575.98px) {
  .hzAccordion-area .outer-box {
    padding: 0px;
  }
}
.hzAccordion__wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 700px;
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1399.98px) {
  .hzAccordion__wrp {
    height: 450px;
  }
}
@media (max-width: 991.98px) {
  .hzAccordion__wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.hzAccordion__item {
  -webkit-box-flex: 0.7;
      -ms-flex: 0.7;
          flex: 0.7;
  min-width: 190px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.hzAccordion__item:last-child .content .wrp {
  padding-right: 0;
}
.hzAccordion__item .head .head-title {
  margin: 0;
  padding-left: 25px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  border-left: 1px solid var(--border-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hzAccordion__item .head .head-title .title {
  display: block;
  max-height: 410px;
  text-align: left;
  color: var(--theme-color-white);
}
.hzAccordion__item .head .head-title .number {
  font-size: 150px;
  line-height: 150px;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color-white);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.hzAccordion__item .head .head-title:hover .number {
  color: var(--theme-color-white);
}
.hzAccordion__item .content {
  display: none;
  height: 100%;
  margin-left: 180px;
  position: relative;
  z-index: 1;
}
.hzAccordion__item .content .image {
  height: 100%;
  max-width: 450px;
}
.hzAccordion__item .content .image img {
  height: 100%;
}
.hzAccordion__item .content .wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 60px;
  gap: 60px;
  height: 100%;
}
.hzAccordion__item .content .content-wrp {
  max-width: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hzAccordion__item .content .arry-btn {
  font-size: 70px;
  color: var(--theme-color-silver);
}
.hzAccordion__item .content .arry-btn i {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.hzAccordion__item .content .arry-btn i:hover {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hzAccordion__item .content .shape {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.hzAccordion__item .content .text {
  color: var(--paragraph-light);
}
.hzAccordion__item.last-child .head .head-title {
  padding-left: 0;
  border: 1px solid transparent;
}
.hzAccordion__item.last-child.active .head .head-title {
  padding-left: 25px;
  border-left: 1px solid var(--border-light);
}
.hzAccordion__item.active {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
.hzAccordion__item.active .head .number {
  -webkit-text-fill: var(--theme-color-white);
  color: var(--theme-color-white);
}
.hzAccordion__item.active .content {
  display: block;
}
@media (max-width: 1399.98px) {
  .hzAccordion__item {
    min-width: 75px;
  }
  .hzAccordion__item .head .head-title {
    padding-left: 5px;
  }
  .hzAccordion__item .head .head-title .title {
    font-size: 18px;
    line-height: 30px;
    max-height: 280px;
  }
  .hzAccordion__item .head .head-title .number {
    font-size: 50px;
    line-height: 50px;
  }
  .hzAccordion__item .content {
    margin-left: 75px;
  }
  .hzAccordion__item .content .wrp {
    padding: 0 20px;
    gap: 10px;
  }
  .hzAccordion__item .content .arry-btn {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .hzAccordion__item .head .head-title {
    position: unset;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: unset;
            transform: unset;
    border: none;
    padding: 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
    padding-bottom: 10px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px;
  }
  .hzAccordion__item .head .head-title .number {
    font-size: 30px;
    line-height: 40px;
  }
  .hzAccordion__item .content {
    margin-left: 0;
  }
  .hzAccordion__item .content .wrp {
    padding: 20px 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hzAccordion__item.active .head .head-title {
    margin-bottom: 0px;
  }
  .hzAccordion__item.last-child .head .head-title {
    margin-bottom: 0;
  }
  .hzAccordion__item.last-child.active .head .head-title {
    padding-left: 0;
    border-left: none;
  }
}

/*** 

====================================================================
  brand-section
====================================================================

***/
.brand-section {
  overflow: hidden;
}
.brand-section .sec-title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.brand-section .sec-title .title {
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--theme-color-white);
  margin: 0 auto;
  padding: 0 50px;
  font-size: 14px;
  line-height: 32px;
}
.brand-section .sec-title::after {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  content: "";
}
.brand-section .outer-box {
  max-width: 1240px;
  margin: 0 auto;
}
.brand-section .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-block {
  max-width: 134px;
}
.brand-block a {
  display: block;
}
.brand-block a img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0.5;
}
.brand-block a:hover img {
  opacity: 1;
}

/*** 

====================================================================
  brand-section two
====================================================================

***/
.brand-section-two .outer-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #e7ebef;
}
.brand-section-two .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.brand-section-two .brand-block {
  max-width: auto;
}
.brand-section-two .brand-block a {
  display: block;
}
.brand-section-two .brand-block a img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.brand-section-two .brand-block a:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

/*** 

====================================================================
		About Section
====================================================================

***/
.about-section {
  overflow: hidden;
}
.about-section .image-column .inner-column {
  position: relative;
  z-index: 1;
  max-width: 590px;
}
.about-section .image-column .inner-column .image1 {
  max-width: 500px;
  border-radius: 12px;
  border: 10px solid var(--theme-color-white);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.about-section .image-column .inner-column .image1 img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section .image-column .inner-column .image1:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.about-section .image-column .inner-column .info {
  position: absolute;
  bottom: -15px;
  left: 26%;
  max-width: 202px;
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  z-index: 2;
}
.about-section .image-column .inner-column .image2 {
  max-width: 295px;
  border-radius: 12px;
  border: 10px solid var(--theme-color-white);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
  position: absolute;
  bottom: -120px;
  right: 0;
}
.about-section .image-column .inner-column .image2 img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section .image-column .inner-column .image2:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 991.98px) {
  .about-section .image-column .inner-column {
    margin-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .about-section .image-column .inner-column {
    margin-bottom: 0;
  }
  .about-section .image-column .inner-column .image2 {
    position: unset;
    max-width: 100%;
    margin-top: 20px;
  }
}
.about-section .content-column .inner-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 450px;
}
.about-section .content-column .inner-column .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.about-section .content-column .inner-column .info .user .image {
  overflow: hidden;
  border-radius: 50%;
  max-width: 60px;
  width: 100%;
  height: 60px;
  border: 3px solid var(--theme-color1);
}
.about-section .content-column .inner-column .info .user .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .content-column .inner-column .info .user .sub-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #0c6460;
  margin-bottom: 0;
}

.about-block .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  margin-top: 20px;
}
.about-block .inner-box .icon {
  margin-top: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-block .inner-box .title {
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 5px;
}
.about-block .inner-box .text {
  margin: 0;
}
.about-block .inner-box:hover .icon {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

/*** 

====================================================================
		About Section Two
====================================================================

***/
.about-section-two {
  overflow: hidden;
}
.about-section-two .content-column .inner-column .sec-title .text {
  padding: 20px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #6b7280;
  background-color: #f3f4f6;
  border-radius: 5px;
}
.about-section-two .content-column .inner-column .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.about-section-two .content-column .inner-column .list li {
  font-family: var(--title-font);
  color: var(--headings-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  gap: 10px;
}
@media (max-width: 1199.98px) {
  .about-section-two .content-column .inner-column .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
.about-section-two .content-column .inner-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-section-two .content-column .inner-column .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-section-two .content-column .inner-column .info .user ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-section-two .content-column .inner-column .info .user ul li:not(:first-child) {
  margin-left: -10px;
}
.about-section-two .content-column .inner-column .info .user .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.about-section-two .content-column .inner-column .info .user .title img {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 100%;
}
.about-section-two .image-column .inner-column .image {
  margin-left: 60px;
  position: relative;
  z-index: 1;
  max-width: 482px;
  margin-bottom: 45px;
}
.about-section-two .image-column .inner-column .image img {
  width: 100%;
  border-radius: 15px;
}
.about-section-two .image-column .inner-column .image::after {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background-color: var(--theme-color-gray2);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
.about-section-two .image-column .inner-column .image .info1 {
  position: absolute;
  top: 60px;
  left: -95px;
}
.about-section-two .image-column .inner-column .image .info2 {
  position: absolute;
  bottom: -45px;
  left: -50px;
  width: 275px;
  padding: 40px 20px;
  padding-left: 50px;
  background-color: var(--theme-color1);
  border-radius: 12px;
  color:#fff
}
.about-section-two .image-column .inner-column .image .info2 .title {
  font-size: 65px;
  line-height: 65px;
  font-family: var(--text-font);
  margin-bottom: 5px;
}
.about-section-two .image-column .inner-column .image .info2 .sub-title {
  margin-bottom: 0;
  color: var(--headings-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.about-section-two .image-column .inner-column .image .info2 .sub-title img {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .about-section-two .image-column .inner-column .image {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .about-section-two .image-column .inner-column .image .info1 {
    left: -50px;
    top: -30px;
  }
  .about-section-two .image-column .inner-column .image .info1 img {
    width: 150px;
  }
  .about-section-two .image-column .inner-column .image .info2 {
    padding: 10px 20px;
    width: 200px;
  }
  .about-section-two .image-column .inner-column .image .info2 .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 0;
  }
}

.about-block-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 588px;
}
.about-block-two .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.about-block-two .item .icon {
  width: 78px;
  height: 79px;
  line-height: 78px;
  text-align: center;
  border-radius: 6px;
  background-color: var(--theme-color1);
}
.about-block-two .item .icon svg {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.about-block-two .item .con {
  font-size: 18px;
  font-weight: 600;
  color: var(--headings-color);
  line-height: 28px;
  text-transform: capitalize;
  max-width: 180px;
}
.about-block-two .item:hover .icon svg {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
@media (max-width: 1199.98px) {
  .about-block-two {
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/*** 

====================================================================
		About Section Three
====================================================================

***/
.about-section-three {
  overflow: hidden;
}
.about-section-three .image-column .inner-column {
  position: relative;
  z-index: 1;
}
.about-section-three .image-column .inner-column .image {
  overflow: hidden;
  border-radius: 11px;
  max-width: 581px;
}
.about-section-three .image-column .inner-column .image img {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .about-section-three .image-column .inner-column .image {
    max-width: 100%;
  }
}
.about-section-three .image-column .inner-column .text {
  max-width: 570px;
}
@media (max-width: 1199.98px) {
  .about-section-three .image-column .inner-column .text {
    max-width: 100%;
  }
}
.about-section-three .image-column .inner-column .shape {
  position: absolute;
  top: -62px;
  left: -100px;
}
@media (max-width: 767.98px) {
  .about-section-three .image-column .inner-column .shape {
    display: none;
  }
}
.about-section-three .image-column .inner-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-section-three .image-column .inner-column .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-section-three .image-column .inner-column .info .user ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-section-three .image-column .inner-column .info .user ul li img {
  border: 3px solid var(--theme-color-white);
  border-radius: 50%;
}
.about-section-three .image-column .inner-column .info .user ul li:not(:first-child) {
  margin-left: -15px;
}
.about-section-three .image-column .inner-column .info .user .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.about-section-three .image-column .inner-column .info .user .title img {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 100%;
}
.about-section-three .content-column .sec-title {
  max-width: 570px;
}
@media (max-width: 1199.98px) {
  .about-section-three .content-column .sec-title {
    max-width: 100%;
  }
}

.about-block-three .content-box {
  border-radius: 50%;
  height: 330px;
  padding: 30px;
  padding-top: 50px;
  position: relative;
  text-align: center;
  width: 330px;
  z-index: 1;
}
@media (max-width: 374.98px) {
  .about-block-three .content-box {
    height: 280px;
    width: 280px;
  }
}
.about-block-three .content-box::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #faf0e7;
  border: 1px solid #070505;
  opacity: 0.16;
  border-radius: 50%;
  z-index: -1;
}
.about-block-three .content-box .count-box {
  font-size: 50px;
  font-weight: 500;
  color: var(--headings-color);
  text-align: center;
  font-family: var(--title-font);
  margin-bottom: 20px;
}
@media (max-width: 374.98px) {
  .about-block-three .content-box .count-box {
    margin-bottom: 0;
  }
}
.about-block-three .content-box .count-box .count-text {
  font-size: 130px;
  line-height: 1;
}
@media (max-width: 575.98px) {
  .about-block-three .content-box .count-box .count-text {
    margin-top: 80px;
  }
}
.about-block-three .content-box .text {
  max-width: 150px;
  margin: 0 auto;
  color: #595b62;
}
.about-block-three .content-box.margin-minus {
  margin-left: -35px;
}
@media (max-width: 575.98px) {
  .about-block-three .content-box.margin-minus {
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .about-block-three .content-box {
    margin-left: auto !important;
    margin-right: auto;
  }
}

/*** 

====================================================================
		About Section Four
====================================================================

***/
.about-section-four {
  overflow: hidden;
}
.about-section-four .image-column .inner-column {
  position: relative;
  z-index: 1;
  max-width: 575px;
}
.about-section-four .image-column .inner-column .image1 {
  max-width: 459px;
  overflow: hidden;
  border-radius: 11px;
  margin-left: 40px;
}
.about-section-four .image-column .inner-column .image1 img {
  width: 100%;
}
.about-section-four .image-column .inner-column .image2 {
  max-width: 263px;
  overflow: hidden;
  border-radius: 11px;
  position: absolute;
  bottom: -40px;
  right: 0;
}
.about-section-four .image-column .inner-column .image2 img {
  width: 100%;
}
.about-section-four .image-column .inner-column .info {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--theme-color2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: -40px;
  left: 0;
}
.about-section-four .image-column .inner-column .info .title {
  font-size: 36px;
  line-height: 36px;
  color: var(--theme-color-white);
  margin-bottom: 15px;
}
.about-section-four .image-column .inner-column .info .title span {
  font-size: 14px;
  font-weight: 600;
}
.about-section-four .image-column .inner-column .info .title span span {
  font-size: 28px;
}
.about-section-four .image-column .inner-column .info .users {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.about-section-four .image-column .inner-column .info .users span {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--theme-color-white);
  font-weight: 500;
}
.about-section-four .image-column .inner-column .info .users span svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199.98px) {
  .about-section-four .content-column .inner-column {
    max-width: 84%;
  }
}
.about-section-four .content-column .inner-column .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-section-four .content-column .inner-column .content-box .item {
  max-width: 260px;
}
.about-section-four .content-column .inner-column .content-box .item .title,
.about-section-four .content-column .inner-column .content-box .item .sub-title {
  margin-bottom: 10px;
}
.about-section-four .content-column .inner-column .content-box .item .text {
  font-size: 16px;
  line-height: 28.8px;
  margin-bottom: 0;
}
.about-section-four .content-column .inner-column .number {
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 0;
}
.about-section-four .content-column .inner-column .number a {
  font-weight: 700;
  text-decoration: underline;
}
.about-section-four .content-column .inner-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-section-four .content-column .inner-column .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.about-section-four .content-column .inner-column .info .user .image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #edc701;
  padding: 5px;
}
.about-section-four .content-column .inner-column .info .user .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-wrapper-4 .about-image {
  position: relative;
  max-width: 602px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 602 612"><path fill-rule="evenodd" clip-rule="evenodd" d="M121.603 306L0 233.292L89.6283 72.7081L211.302 145.29L211.371 0H390.629L390.698 145.29L512.371 72.7081L602 233.292L480.396 306L602 378.708L512.371 539.292L390.698 466.71L390.629 612H211.371L211.302 466.71L89.6283 539.292L0 378.708L121.603 306Z" /></svg>');
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 602 612"><path fill-rule="evenodd" clip-rule="evenodd" d="M121.603 306L0 233.292L89.6283 72.7081L211.302 145.29L211.371 0H390.629L390.698 145.29L512.371 72.7081L602 233.292L480.396 306L602 378.708L512.371 539.292L390.698 466.71L390.629 612H211.371L211.302 466.71L89.6283 539.292L0 378.708L121.603 306Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media (max-width: 1199.98px) {
  .about-wrapper-4 .about-image {
    max-width: initial;
  }
}
.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-4 .about-content .sec-title {
  max-width: 600px;
}
.about-wrapper-4 .about-content .about-icon-box {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199.98px) {
  .about-wrapper-4 .about-content .about-icon-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
  }
}
.about-wrapper-4 .about-content .about-icon-box .count-box {
  padding: 23px 0px;
  padding-right: 40px;
  min-width: 220px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199.98px) {
  .about-wrapper-4 .about-content .about-icon-box .count-box {
    border-right: none;
    padding-right: 0;
  }
}
.about-wrapper-4 .about-content .about-icon-box .count-box h2 {
  font-size: 120px;
  font-weight: 500;
  line-height: 120px;
  margin-bottom: 0;
}
.about-wrapper-4 .about-content .about-icon-box .count-box p {
  margin-bottom: 0;
}
.about-wrapper-4 .about-content .about-icon-box .about-block {
  margin-bottom: 15px;
}
.about-wrapper-4 .about-content .about-icon-box .about-block .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 0;
}
.about-wrapper-4 .about-content .about-icon-box .about-block .inner-box .content .title {
  font-size: 18px;
  font-weight: 700;
}
.about-wrapper-4 .about-content .about-icon-box .about-block .inner-box .content p {
  font-size: 16px;
  font-weight: 400;
}
.about-wrapper-4 .about-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 1199.98px) {
  .about-wrapper-4 .about-content .info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-4 .about-content .info .theme-btn {
  position: relative;
}
.about-wrapper-4 .about-content .info .theme-btn.btn-style-one {
  padding: 26px 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 100px;
  height: 70px;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, right top, from(#BEEC6B), to(#169C92));
  background: linear-gradient(90deg, #BEEC6B 0%, #169C92 100%);
  color: var(--theme-color-white);
}
@media only screen and (max-width: 767px) {
  .about-wrapper-4 .about-content .info .theme-btn.btn-style-one {
    height: 60px;
    padding-right: 80px;
  }
  .about-wrapper-4 .about-content .info .theme-btn.btn-style-one .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 10px;
    top: 8px;
  }
  .about-wrapper-4 .about-content .info .theme-btn.btn-style-one .icon svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 575.98px) {
  .about-wrapper-4 .about-content .info .theme-btn.btn-style-one {
    padding: 26px 42px;
    padding-right: 42px;
    padding-right: 88px;
    height: 57px;
  }
}
.about-wrapper-4 .about-content .info .theme-btn.btn-style-one:hover {
  color: var(--headings-color);
}
.about-wrapper-4 .about-content .info .theme-btn .icon {
  width: 62px;
  height: 62px;
  line-height: 62px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
}
.about-wrapper-4 .about-content .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.about-wrapper-4 .about-content .info .user .image {
  overflow: hidden;
  border-radius: 50%;
  max-width: 60px;
  width: 100%;
  height: 60px;
  border: 3px solid var(--theme-color1);
}
.about-wrapper-4 .about-content .info .user .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrapper-4 .about-content .info .user .sub-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #0c6460;
  margin-bottom: 0;
}

/*** 

====================================================================
		About Section Five
====================================================================

***/
.about-section-home6 {
  position: relative;
}
.about-section-home6 .about-image-box {
  position: relative;
}
.about-section-home6 .about-image-box .thumb {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.about-section-home6 .about-image-box .content-box {
  background-color: var(--theme-color7);
  bottom: 0;
  max-width: 476px;
  padding: 65px;
  position: absolute;
  right: 0;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .about-section-home6 .about-image-box .content-box {
    border-radius: 0 0 15px 0;
    max-width: 676px;
  }
}
@media (max-width: 991.98px) {
  .about-section-home6 .about-image-box .content-box {
    bottom: 30px;
    border-radius: 0;
    left: 15px;
    max-width: none;
    position: relative;
    width: 95%;
  }
}
@media (max-width: 575.98px) {
  .about-section-home6 .about-image-box .content-box {
    left: 0;
    padding: 30px;
  }
}
.about-section-home6 .about-image-box .title {
  color: var(--theme-color-white);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 42px;
}
.about-section-home6 .about-image-box .text {
  color: rgba(var(--theme-color-white-rgb), 0.7);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
}
.about-section-home6 .about-image-box .swiper-arry .one-grid-next,
.about-section-home6 .about-image-box .swiper-arry .one-grid-prev {
  background-color: transparent;
  color: #807B7B;
}
.about-section-home6 .about-image-box .swiper-arry .one-grid-next i,
.about-section-home6 .about-image-box .swiper-arry .one-grid-prev i {
  color: var(--theme-color-white);
}

.about-section-seven {
  overflow: hidden;
  padding-bottom: 172px;
}
.about-section-seven .rectangle-shape {
  position: absolute;
  top: 0;
  right: 0;
}
.about-section-seven .image-column .inner-column {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-right: -40px;
}
.about-section-seven .image-column .inner-column .image1 {
  max-width: 492px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(var(--theme-color-black-rgb), 0.1);
          box-shadow: 0px 5px 20px 0px rgba(var(--theme-color-black-rgb), 0.1);
}
.about-section-seven .image-column .inner-column .image1 img {
  width: 100%;
  border-radius: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section-seven .image-column .inner-column .image1:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.about-section-seven .image-column .inner-column .image2 {
  max-width: 275px;
  border-radius: 12px;
  border: 10px solid var(--theme-color-white);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(var(--theme-color-black-rgb), 0.1);
          box-shadow: 0px 5px 20px 0px rgba(var(--theme-color-black-rgb), 0.1);
  position: absolute;
  bottom: -52px;
  right: 0;
}
.about-section-seven .image-column .inner-column .image2 img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section-seven .image-column .inner-column .image2:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 991.98px) {
  .about-section-seven .image-column .inner-column {
    margin-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .about-section-seven .image-column .inner-column {
    margin-bottom: 0;
  }
  .about-section-seven .image-column .inner-column .image2 {
    position: unset;
    max-width: 100%;
    margin-top: 20px;
  }
}
.about-section-seven .content-column .inner-column {
  padding-left: 70px;
  margin-left: -70px;
  border-left: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
}
.about-section-seven .content-column .inner-column .list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-section-seven .content-column .inner-column .list::before {
  position: absolute;
  bottom: 0;
  left: -70px;
  width: calc(100% + 70px);
  height: 1px;
  content: "";
  background: rgba(var(--theme-color-black-rgb), 0.1);
}
.about-section-seven .content-column .inner-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 450px;
}
.about-section-seven .content-column .inner-column .info .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.about-section-seven .content-column .inner-column .info .user .image {
  overflow: hidden;
  border-radius: 50%;
  max-width: 67px;
  width: 100%;
  height: 67px;
  padding: 7px;
  border: 1px solid var(--theme-color9);
}
.about-section-seven .content-column .inner-column .info .user .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.about-section-seven .content-column .inner-column .info .user .sub-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #0c6460;
  margin-bottom: 0;
}

/*** 

====================================================================
  client-section
====================================================================

***/
.client-section {
  position: relative;
  padding: 120px 0 200px;
}
@media (max-width: 575.98px) {
  .client-section {
    padding: 80px 0 190px;
  }
}

.client-block .inner-box {
  position: relative;
  background-color: var(--theme-color-light);
  text-align: center;
  padding: 45px 15px 43px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}
.client-block .inner-box:hover::before {
  opacity: 1;
  visibility: visible;
  left: 50%;
}
.client-block .inner-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95px;
  height: 13px;
  background-color: var(--theme-color1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.client-block .inner-box .title {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .client-block .inner-box .text {
    font-size: 14px;
  }
}
.client-block .inner-box span {
  text-transform: uppercase;
  color: var(--theme-color1);
  font-family: var(--text-font2);
}
.client-block .inner-box .image-box {
  position: relative;
  margin-bottom: 40px;
  margin-top: 21px;
}
.client-block .inner-box .image-box .icon {
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 40px;
  color: var(--theme-color1);
}

/*** 

====================================================================
  offer-section
====================================================================

***/
.offer-banner {
  position: relative;
  margin-top: -120px;
}
.offer-banner .outer-box {
  position: relative;
  background-color: #f8f5f0;
  padding: 74px 103px 78px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .offer-banner .outer-box {
    padding: 44px 46px 50px;
  }
}
.offer-banner .outer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 658px;
  height: 502px;
  background-image: url(../images/resource/pattern3.png);
}
@media (max-width: 575.98px) {
  .offer-banner .outer-box .content-colum .inner-column .content-box .sub-title {
    margin-bottom: 20px;
    display: inline-block;
  }
}
.offer-banner .outer-box .content-colum .inner-column .content-box .title {
  font-size: 48px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .offer-banner .outer-box .content-colum .inner-column .content-box .title {
    font-size: 39px;
  }
}
@media (max-width: 575.98px) {
  .offer-banner .outer-box .content-colum .inner-column .content-box .title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 10px;
  }
}
.offer-banner .outer-box .btn-column .inner-column {
  text-align: right;
  margin-top: 21px;
}
@media (max-width: 991.98px) {
  .offer-banner .outer-box .btn-column .inner-column {
    text-align: center;
  }
}
.offer-banner .outer-box .btn-column .inner-column .read-more {
  padding: 0 47px;
  height: 60px;
  line-height: 60px;
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--text-font2);
  position: relative;
  z-index: 9;
}
.offer-banner .outer-box .btn-column .inner-column .read-more:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--bg-theme-color1);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.offer-banner .outer-box .btn-column .inner-column .read-more:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.offer-banner .outer-box .btn-column .inner-column .read-more:hover {
  background: #000;
}

/*** 

====================================================================
  client-section two
====================================================================

***/
.client-section-two {
  position: relative;
  padding: 80px 0;
}
.client-section-two .client-slider {
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199.98px) {
  .client-section-two .client-slider {
    margin-left: 0;
  }
}
.client-section-two .client-slider .client-block-two:last-child {
  margin-right: 0;
}
.client-section-two .client-slider .client-block-two .inner-box .image img {
  width: unset;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .offer-banner .content-colum {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .client-block-two a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*** 

====================================================================
  Client Section Three
====================================================================

***/
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.client-section-three {
  position: relative;
  padding: 100px 0;
  background-color: var(--theme-color-light);
  z-index: 3;
}
.client-section-three .shape-4 {
  position: absolute;
  top: 0;
  left: -77px;
}
@media only screen and (max-width: 1699px) {
  .client-section-three .shape-4 {
    display: none;
  }
}
.client-section-three .outer-box {
  position: relative;
  border: 1px solid #E6E0FA;
  padding: 31px 38px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .client-section-three .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 15px;
  }
}
.client-section-three .outer-box .title-box {
  position: relative;
  max-width: 216px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 40px;
  margin-right: 25px;
}
@media (max-width: 991.98px) {
  .client-section-three .outer-box .title-box {
    padding-right: 0;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.client-section-three .outer-box .title-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #E6E0FA;
}
@media (max-width: 991.98px) {
  .client-section-three .outer-box .title-box:before {
    display: none;
  }
}
.client-section-three .outer-box .title-box .title {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .client-section-three .outer-box .title-box .title br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .client-section-three .outer-box .title-box .title {
    font-size: 18px;
  }
}
.client-section-three .outer-box .title-box .icon {
  position: relative;
  margin-left: 20px;
  color: var(--theme-color1);
  font-size: 16px;
}
.client-section-three .outer-box .marquee-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.client-section-three .outer-box .marquee-box .clients-marquee {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 90px;
  -webkit-animation: marquee 10s linear infinite;
          animation: marquee 10s linear infinite;
}
@media (max-width: 575.98px) {
  .client-section-three .outer-box .marquee-box .clients-marquee {
    gap: 40px;
  }
}

.client-block-three {
  position: relative;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.client-block-three .image {
  margin-bottom: 0;
}

.consult-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.consult-section.home6-style:after {
  background: rgba(var(--theme-color7-rgb), 0.92);
}
.consult-section .sec-shape {
  position: absolute;
  top: 50%;
  left: -180px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
@media (max-width: 767.98px) {
  .consult-section .sec-shape {
    display: none;
  }
}
.consult-section::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(99.2deg, #1a4137 32.71%, rgba(29, 67, 58, 0.99) 51.92%, rgba(34, 71, 61, 0.797132) 56.74%, rgba(64, 95, 87, 0.25) 77.85%, rgba(196, 196, 196, 0) 103.7%);
  content: "";
  z-index: -1;
}
.consult-section .sec-title {
  max-width: 670px;
  margin: 0 auto;
}
.consult-section .btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 370.98px) {
  .consult-section .btn-wrp {
    display: block;
  }
}
.consult-section .btn-wrp a {
  min-width: 185px;
}
.consult-section .btn-wrp .btn-two-rounded {
  background-color: rgba(var(--theme-color-white-rgb), 0.06);
}
@media (max-width: 575.98px) {
  .consult-section .btn-wrp {
    gap: 10px;
  }
  .consult-section .btn-wrp a {
    min-width: 160px;
    font-size: 14px;
  }
}

/*** 

====================================================================
    Funfact Sectiom
====================================================================

***/
.funfact-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.funfact-section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background-color: var(--theme-color-gray2);
  z-index: -1;
}
.funfact-section .outer-box {
  padding: 60px 90px;
  background-color: var(--theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  border-radius: 28px;
  -webkit-box-shadow: 0px -2px 20px 0px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0px -2px 20px 0px rgba(0, 0, 0, 0.0588235294);
}
@media (max-width: 991.98px) {
  .funfact-section .outer-box {
    padding: 60px 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.funfact-block .inner-box {
  width: 150px;
}
.funfact-block .inner-box .icon {
  margin-bottom: 20px;
}
.funfact-block .inner-box .icon svg,
.funfact-block .inner-box .icon i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.funfact-block .inner-box .content-box .title {
  font-size: 48px;
  line-height: 52px;
  margin: 0;
}
.funfact-block .inner-box .content-box .sub-title {
  color: var(--headings-color);
  font-weight: 600;
}
.funfact-block .inner-box:hover .icon svg,
.funfact-block .inner-box:hover .icon i {
  -webkit-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}
@media (max-width: 991.98px) {
  .funfact-block .inner-box {
    width: 200px;
  }
}
@media (max-width: 575.98px) {
  .funfact-block .inner-box {
    width: 150px;
  }
}

/*** 

====================================================================
    Funfact Sectiom Two
====================================================================

***/
.funfact-section-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.funfact-section-two.have-after::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42%;
  content: "";
  background-color: var(--theme-color-gray2);
  z-index: -1;
}
.funfact-section-two .sec-title .list {
  margin-top: 30px;
}
.funfact-section-two .sec-title .list li {
  color: #444;
  font-weight: 500;
}
.funfact-section-two .sec-title .list li:not(:last-child) {
  margin-bottom: 10px;
}
.funfact-section-two .sec-title .list li i {
  color: var(--theme-color1);
  margin-right: 5px;
}
@media (max-width: 575.98px) {
  .funfact-section-two .sec-title .list {
    margin-top: 20px;
  }
  .funfact-section-two .sec-title .list li {
    font-size: 14px;
  }
  .funfact-section-two .sec-title .list li:not(:last-child) {
    margin-bottom: 0px;
  }
}
.funfact-section-two .outer-box {
  background-color: var(--theme-color2);
  border-radius: 26px 0 0 26px;
  overflow: hidden;
  padding: 60px 80px;
  margin-right: -23%;
}
@media (max-width: 1399.98px) {
  .funfact-section-two .outer-box {
    margin-right: -10%;
  }
}
@media (max-width: 991.98px) {
  .funfact-section-two .outer-box {
    margin-right: 0;
    border-radius: 25px;
    padding: 60px 30px;
  }
}
.funfact-section-two .sec-shape {
  position: absolute;
  right: -200px;
  bottom: -150px;
}

.funfact-block-two .inner-box {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 45px;
  border-radius: 20px;
}
.funfact-block-two .inner-box .icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.funfact-block-two .inner-box .icon svg,
.funfact-block-two .inner-box .icon i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-left: 10px;
}
.funfact-block-two .inner-box .icon svg path,
.funfact-block-two .inner-box .icon i path {
  fill: #fff;
}
.funfact-block-two .inner-box .icon::after {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color1);
  content: "";
  left: 0px;
  bottom: 0;
  opacity: 0.1;
  border-top-left-radius: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 40px;
  z-index: -1;
}
.funfact-block-two .inner-box .content-box .title {
  font-size: 48px;
  line-height: 52px;
  margin: 0;
  color: var(--theme-color-white);
}
.funfact-block-two .inner-box .content-box .sub-title {
  color: var(--theme-color-white);
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .funfact-block-two .inner-box {
    padding: 30px;
    text-align: center;
  }
  .funfact-block-two .inner-box .icon {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.funfact-block-two:hover .inner-box {
  background-color: var(--theme-color1);
}
.funfact-block-two:hover .inner-box .icon svg {
  -webkit-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}
.funfact-block-two:hover .inner-box .icon svg path {
  fill: var(--theme-color-black);
}
.funfact-block-two:hover .inner-box .content-box .title {
  color: var(--headings-color);
}
.funfact-block-two:hover .inner-box .content-box .sub-title {
  color: var(--headings-color);
}

/*** 

====================================================================
    Funfact Sectiom Four
====================================================================

***/
.funfact-section-four {
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .funfact-section-four {
    padding-top: 120px;
  }
  .funfact-section-four .sec-title {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .funfact-section-four {
    padding-top: 60px;
  }
}

.funfact-block-four {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 60px 0;
  padding-left: 40px;
  border-left: 1px solid #d9d9d9;
}
.funfact-block-four .title {
  margin-bottom: 10px;
  margin-top: 20px;
}
.funfact-block-four .sub-title {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .funfact-block-four {
    padding: 30px 0;
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .funfact-block-four {
    padding: 0;
    border: none;
    text-align: center;
  }
}

.gellery-section {
  position: relative;
  z-index: 2;
}
.gellery-section.margin-minus {
  margin-bottom: -240px;
}
.gellery-section .outer-box {
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .gellery-section .outer-box {
    padding: 0 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.gellery-block {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  width: 25%;
  height: 528px;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.gellery-block .image {
  width: 100%;
  height: 100%;
}
.gellery-block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.gellery-block .click-btn {
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color-white);
  color: var(--theme-color1);
  font-size: 30px;
  position: absolute;
  top: -5px;
  border: 1px solid var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.gellery-block .click-btn-wrp {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.gellery-block .click-btn-wrp:hover .click-btn {
  top: 0;
}
.gellery-block.active {
  width: 47%;
}
.gellery-block.active .click-btn-wrp {
  top: 50%;
  visibility: visible;
  opacity: 1;
}
.gellery-block.active .image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 991.98px) {
  .gellery-block {
    height: 500px;
    width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .gellery-block {
    height: 400px;
  }
}

.growth-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.growth-section.style-two::after {
  background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(6, 50, 50, 0.98) 99.98%, rgba(6, 50, 50, 0.98) 99.99%);
}
.growth-section .sec-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.growth-section::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(4, 44, 42, 0.98) 99.98%, rgba(4, 44, 42, 0.98) 99.99%);
  content: "";
  z-index: -1;
}
.growth-section .sec-title {
  border-bottom: 1px solid rgba(230, 230, 230, 0.212);
}

.growth-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.growth-block .pie-graph {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 122px;
}
.growth-block .pie-graph .inner-text {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--theme-color-white);
  font-weight: 700;
  font-size: 20px;
  color: var(--theme-color4);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 50%;
}
.growth-block .content-box .title {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--theme-color-white);
  margin-bottom: 10px;
}
.growth-block .content-box .text {
  font-size: 16px;
  line-height: 28.8px;
  color: #444;
  margin-bottom: 0;
}

.growth-section-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  
}
.growth-section-two.height-auto {
  height: auto;
}
@media (max-width: 1399.98px) {
  .growth-section-two {
    height: 600px;
  }
}
@media (max-width: 1199.98px) {
  .growth-section-two {
    height: auto;
    background-image: none !important;
    background-color: var(--theme-color-gray2);
  }
}
.growth-section-two .bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.growth-section-two .outer-box {
  max-width: 1250px;
  margin: 0 auto;
}
.growth-section-two .growth-block .pie-graph .inner-text {
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
}
.growth-section-two .growth-block .content-box .title {
  color: var(--headings-color);
}
.growth-section-two .growth-block .content-box .text {
  color: var(--text-font);
}

/***

====================================================================
    Marquee Section
====================================================================

***/
.marquee-section {
  position: relative;
  padding: 73px 0;
}
@media (max-width: 767.98px) {
  .marquee-section {
    padding: 50px 0;
  }
}
.marquee-section .bg {
  opacity: 0.03;
}
.marquee-section .marquee.marquee-style-one .text {
  text-transform: uppercase;
}
.marquee-section .marquee.marquee-style-two {
  padding: 40px 0 0;
}
.marquee-section .marquee.marquee-style-two .text {
  font-size: 128px;
  line-height: 110px;
}
@media (max-width: 991.98px) {
  .marquee-section .marquee.marquee-style-two .text {
    font-size: 60px;
    line-height: 1.1;
  }
}
@media (max-width: 575.98px) {
  .marquee-section .marquee.marquee-style-two .text {
    font-size: 36px;
  }
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
}
.marquee .marquee-group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll var(--duration) linear infinite;
          animation: scroll var(--duration) linear infinite;
}
.marquee .text {
  color: rgba(2, 1, 1, 0);
  font-size: 80px;
  font-family: var(--title-font);
  letter-spacing: 0;
  line-height: 84px;
  padding: 0 30px;
  -webkit-text-stroke-width: 1.1px;
  -webkit-text-stroke-color: #D1D1D1;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .marquee .text {
    font-size: 60px;
    line-height: 1.1;
  }
}
@media (max-width: 575.98px) {
  .marquee .text {
    font-size: 36px;
  }
}
.marquee .text.text-style2 {
  -webkit-text-fill-color: var(--theme-color-black);
  -webkit-text-stroke: 1px var(--theme-color-black);
  color: var(--theme-color-black);
}
.marquee .text:after {
  -webkit-text-fill-color: #D9D9D9;
  -webkit-text-stroke: 1px #D9D9D9;
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.marquee .text:hover:after {
  background-color: transparent;
}
.marquee .text:hover:before {
  width: 0;
}
.marquee .text.divider .icon {
  -webkit-text-fill-color: var(--theme-color1);
  -webkit-text-stroke: 1px var(--theme-color1);
  color: var(--theme-color1);
  font-size: 40px;
  position: relative;
  top: -3px;
}
@media (prefers-reduced-motion: reduce) {
  .marquee .marquee-group {
    -webkit-animation-play-state: play;
            animation-play-state: play;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
.marquee.slide-right {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.marquee.slide-right .text {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.case-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.case-section.white-bg {
  margin: 0px 30px;
  border-radius: 30px;
  background-color: var(--theme-color-white);
}
@media (max-width: 767.98px) {
  .case-section.white-bg .title br {
    display: none;
  }
}
.case-section.white-bg .outer-box {
  padding: 0 20px;
}
.case-section .outer-box {
  padding: 0 50px;
}
@media (max-width: 767.98px) {
  .case-section .outer-box {
    padding: 0 12px;
  }
}
.case-section.have-combine::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-gray);
}

.case-block .inner-box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.case-block .inner-box .image img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
}
.case-block .inner-box .content-box {
  background-color: rgba(var(--theme-color-white-rgb), 0.93);
  backdrop-filter: blur(89px);
  border-radius: 8px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 20px;
  width: 90%;
  padding: 30px;
  opacity: 0.95;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
.case-block .inner-box .content-box .sub-title {
  font-weight: 600;
  color: var(--theme-color-dark);
  font-size: 14px;
  line-height: 30px;
}
.case-block .inner-box .content-box .title {
  max-width: 300px;
  margin-bottom: 0;
}
.case-block .inner-box .hover-content {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 10px;
  width: 85%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.case-block .inner-box .hover-content .sub-title {
  font-weight: 600;
  color: var(--theme-color-white);
  font-size: 14px;
  line-height: 30px;
}
.case-block .inner-box .hover-content .title {
  max-width: 300px;
  color: var(--theme-color-white);
  margin-bottom: 0;
}
.case-block .inner-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(19.36%, rgba(0, 0, 0, 0)), color-stop(71.26%, #163839), to(#163839));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 19.36%, #163839 71.26%, #163839 100%);
  z-index: 0;
  content: "";
}
.case-block .inner-box .arry-btn {
  display: block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: var(--theme-color1);
  position: absolute;
  top: 48%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 24px;
  color: #163839;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.case-block .inner-box .arry-btn i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.case-block .inner-box .arry-btn::after {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: var(--theme-color-white);
  position: absolute;
  top: -3px;
  left: 1px;
  border-radius: 50%;
  content: "";
  z-index: -1;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}
.case-block .inner-box .arry-btn:hover i {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.case-block .inner-box .arry-btn:hover::after {
  top: 0;
  left: 0;
}
.case-block .inner-box:hover::after {
  height: 90%;
  opacity: 1;
  visibility: visible;
}
.case-block .inner-box:hover .image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.case-block .inner-box:hover .arry-btn {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.case-block .inner-box:hover .content-box {
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}
.case-block .inner-box:hover .hover-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.case-section-three {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color2);
}
.case-section-three .sec-shape {
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 0;
}
.case-section-three .box-shape {
  width: 189px;
  height: 189px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.case-section-three .box-shape .box1 {
  height: 100%;
  width: 50%;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.case-section-three .box-shape .box2 {
  width: 100%;
  height: 50%;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.case-section-three .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199.98px) {
  .case-section-three .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-section-three .content-column {
  width: 48%;
}
@media (max-width: 1199.98px) {
  .case-section-three .content-column {
    width: 100%;
  }
}
.case-section-three .content-column .inner-column {
  max-width: 510px;
  margin: 60px 120px 60px auto;
}
.case-section-three .content-column .inner-column .text {
  font-size: 16px;
  line-height: 30px;
}
.case-section-three .content-column .inner-column .info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color-white);
}
.case-section-three .content-column .inner-column .info li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .case-section-three .content-column .inner-column {
    margin: 60px 15px;
    max-width: 100%;
  }
}
.case-section-three .image-column {
  width: 52%;
}
@media (max-width: 1199.98px) {
  .case-section-three .image-column {
    width: 100%;
  }
}

.case-block-three {
  position: relative;
  z-index: 1;
}
.case-block-three .image {
  overflow: hidden;
}
.case-block-three .image img {
  width: 100%;
}
.case-block-three .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--headings-color);
  background-color: var(--theme-color1);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.case-block-three .icon i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.case-block-three .icon:hover i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.case-block-three .content {
  max-width: 270px;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 45px;
  z-index: 1;
}
.case-block-three .content .title {
  padding: 5px 20px;
  color: var(--theme-color-white);
  background-color: var(--theme-color2);
  -webkit-transition: all 300ms ease 100ms;
  transition: all 300ms ease 100ms;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  margin-bottom: 0;
}
.case-block-three .content .sub-title {
  display: inline-block;
  padding-left: 20px;
  padding-right: 30px;
  color: var(--theme-color-black);
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease 300ms;
  transition: all 300ms ease 300ms;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  margin-bottom: 0;
}
.case-block-three:hover .icon {
  right: 40px;
  opacity: 1;
  visibility: visible;
}
.case-block-three:hover .content .title,
.case-block-three:hover .content .sub-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.choose-section {
  overflow: hidden;
}
.choose-section .content-column .inner-column {
  max-width: 580px;
}
@media (max-width: 1199.98px) {
  .choose-section .content-column .inner-column {
    max-width: 680px;
  }
}
@media (max-width: 991.98px) {
  .choose-section .content-column .inner-column {
    max-width: 100%;
  }
}
.choose-section .content-column .inner-column .choose-tab .nav {
  border-bottom: 2px solid rgba(2, 6, 38, 0.102);
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 575.98px) {
  .choose-section .content-column .inner-column .choose-tab .nav {
    border-bottom: 1px solid rgba(2, 6, 38, 0.102);
  }
}
.choose-section .content-column .inner-column .choose-tab .nav .nav-item .nav-link {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  padding: 8px 30px;
}
.choose-section .content-column .inner-column .choose-tab .nav .nav-item .nav-link.active {
  background-color: transparent;
  border-bottom: 2px solid #163839;
  color: var(--headings-color);
}
@media (max-width: 575.98px) {
  .choose-section .content-column .inner-column .choose-tab .nav .nav-item .nav-link {
    font-size: 13px;
    padding: 5px;
  }
}
.choose-section .content-column .inner-column .content-box {
  font-size: 16px;
  line-height: 30px;
}
.choose-section .content-column .inner-column .content-box .text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 30px;
}
.choose-section .content-column .inner-column .content-box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991.98px) {
  .choose-section .content-column .inner-column .content-box .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.choose-section .content-column .inner-column .content-box .list ul li {
  color: var(--headings-color);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.choose-section .content-column .inner-column .content-box .list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.choose-section .image-column .inner-column {
  height: 100%;
}
.choose-section .image-column .inner-column .image {
  max-width: 556px;
  float: right;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .choose-section .image-column .inner-column .image {
    float: none;
    max-width: none;
  }
}
.choose-section .image-column .inner-column .image img {
  width: 100%;
}
.choose-section .image-column .inner-column .image .outer-box {
  background-color: var(--theme-color1);
  padding: 40px;
  max-width: 330px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: -100px;
}
@media (max-width: 1399.98px) {
  .choose-section .image-column .inner-column .image .outer-box {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .choose-section .image-column .inner-column .image {
    max-width: 100%;
    float: none;
  }
}

.choose-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.choose-block:first-child {
  border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.2);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.choose-block .pie-graph {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
}
.choose-block .pie-graph .icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--theme-color-black);
}
.choose-block .content-box .inner-text {
  font-size: 34px;
  font-weight: 700;
  color: var(--theme-color-black);
  margin-bottom: 5px;
  font-family: var(--title-font);
}
.choose-block .content-box .title {
  color: var(--theme-color-black);
  margin-bottom: 0;
}

.choose-section-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color2);
}
.choose-section-four .box-shape {
  width: 189px;
  height: 189px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.choose-section-four .box-shape .box1 {
  height: 100%;
  width: 50%;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.choose-section-four .box-shape .box2 {
  width: 100%;
  height: 50%;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.choose-section-four .sec-title {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(230, 230, 230, 0.212);
}
.choose-section-four .image-column .image {
  position: absolute;
  bottom: 0;
  max-width: 450px;
}
.choose-section-four .image-column .image img {
  width: 100%;
}
.choose-section-four .image-column .image .circle-btn {
  max-width: 180px;
  position: absolute;
  top: 52%;
  left: 43%;
}
.choose-section-four .image-column .image .circle-bg {
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: -1;
  width: 480px;
}
.choose-section-four .image-column .image .info {
  position: absolute;
  top: 40px;
  right: -185px;
}
@media (max-width: 1399.98px) {
  .choose-section-four .image-column .image .info {
    top: 100px;
    right: -50px;
  }
}
@media (max-width: 1199.98px) {
  .choose-section-four .image-column {
    display: none;
  }
}

.choose-block-four {
  padding: 30px;
  border-radius: 10px;
  background-color: #245548;
}
.choose-block-four .title {
  margin-bottom: 10px;
  color: var(--theme-color-white);
}
.choose-block-four .text {
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
.choose-block-four .list {
  max-width: 710px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.choose-block-four .list ul li {
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
}
.choose-block-four .list ul li svg {
  margin-right: 8px;
}
.choose-block-four.active {
  background-color: var(--theme-color1);
}
.choose-block-four.active .title,
.choose-block-four.active .text {
  color: var(--headings-color);
}

.choose-section-seven {
  overflow: hidden;
}
.choose-section-seven .content-column .inner-column {
  max-width: 580px;
  margin-top: 30px;
}
@media (max-width: 1599.98px) {
  .choose-section-seven .content-column .inner-column {
    margin-top: 0;
  }
}
@media (max-width: 1199.98px) {
  .choose-section-seven .content-column .inner-column {
    max-width: 680px;
  }
}
@media (max-width: 991.98px) {
  .choose-section-seven .content-column .inner-column {
    max-width: 100%;
  }
}
.choose-section-seven .content-column .inner-column .choose-tab .nav {
  border-bottom: 2px solid rgba(2, 6, 38, 0.102);
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 575.98px) {
  .choose-section-seven .content-column .inner-column .choose-tab .nav {
    border-bottom: 1px solid rgba(2, 6, 38, 0.102);
  }
}
.choose-section-seven .content-column .inner-column .choose-tab .nav .nav-item .nav-link {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  padding: 8px 30px;
}
.choose-section-seven .content-column .inner-column .choose-tab .nav .nav-item .nav-link.active {
  background-color: transparent;
  border-bottom: 2px solid #163839;
  color: var(--headings-color);
}
@media (max-width: 575.98px) {
  .choose-section-seven .content-column .inner-column .choose-tab .nav .nav-item .nav-link {
    font-size: 13px;
    padding: 5px;
  }
}
.choose-section-seven .content-column .inner-column .content-box {
  font-size: 16px;
  line-height: 30px;
}
.choose-section-seven .content-column .inner-column .content-box .text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 30px;
}
.choose-section-seven .content-column .inner-column .content-box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991.98px) {
  .choose-section-seven .content-column .inner-column .content-box .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.choose-section-seven .content-column .inner-column .content-box .list ul li {
  color: var(--headings-color);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.choose-section-seven .content-column .inner-column .content-box .list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.choose-section-seven .image-column .inner-column {
  height: 100%;
}
.choose-section-seven .image-column .inner-column .image {
  max-width: 642px;
  float: right;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .choose-section-seven .image-column .inner-column .image {
    float: none;
    max-width: none;
  }
}
.choose-section-seven .image-column .inner-column .image img {
  width: 100%;
  border-radius: 30px;
}
.choose-section-seven .image-column .inner-column .image .outer-box {
  padding: 43px 50px;
  max-width: 336px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  background-color: rgba(154, 154, 154, 0.3);
  backdrop-filter: blur(20px);
}
.choose-section-seven .image-column .inner-column .image .outer-box .icon {
  width: 112px;
  height: 112px;
  line-height: 112px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 50px;
  color: var(--theme-color2);
  background-color: var(--theme-color1);
  margin-bottom: 20px;
}
.choose-section-seven .image-column .inner-column .image .outer-box .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: var(--theme-color-white);
}
@media (max-width: 991.98px) {
  .choose-section-seven .image-column .inner-column .image {
    max-width: 100%;
    float: none;
  }
}

/*** 

====================================================================
  CONTACT SECTION
====================================================================

***/
.contact-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray2);
}
.contact-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact-section .contact-image {
  position: absolute;
  bottom: 0;
  right: 30px;
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .contact-section .contact-image {
    display: none;
  }
}
.contact-section .content-column .sec-title {
  max-width: 450px;
}
.contact-section .content-column .sec-title .text {
  font-size: 16px;
  line-height: 30px;
}
.contact-section .content-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.contact-section .content-column .info .icon {
  max-width: 70px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme-color-white);
}
.contact-section .content-column .info .title {
  margin-bottom: 0;
  color: var(--theme-color2);
}
.contact-section .content-column .info .sub-title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: var(--headings-color);
}

.contact-block {
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 7px 24px 0px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0px 7px 24px 0px rgba(0, 0, 0, 0.0588235294);
  border-radius: 5px;
  padding: 45px;
  text-align: center;
  max-width: 700px;
}
.contact-block form .input {
  position: relative;
  z-index: 1;
}
.contact-block form .input input {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  font-size: 16px;
  font-weight: normal;
  padding: 8px 20px;
  width: 100%;
}
.contact-block form .input input:focus {
  border: 1px solid var(--theme-color1);
}
.contact-block form .input input::-webkit-input-placeholder {
  color: var(--theme-color-black);
}
.contact-block form .input input::-moz-placeholder {
  color: var(--theme-color-black);
}
.contact-block form .input input:-ms-input-placeholder {
  color: var(--theme-color-black);
}
.contact-block form .input input::-ms-input-placeholder {
  color: var(--theme-color-black);
}
.contact-block form .input input::placeholder {
  color: var(--theme-color-black);
}
.contact-block form .input .icon {
  position: absolute;
  top: 18px;
  right: 20px;
}
.contact-block form textarea {
  border-radius: 5px;
  border: 1px solid #e4e4e4;
  font-size: 16px;
  font-weight: normal;
  height: 125px;
  padding: 8px 20px;
  width: 100%;
}
.contact-block form textarea:focus {
  border: 1px solid var(--theme-color1);
}
.contact-block form textarea::-webkit-input-placeholder {
  color: var(--theme-color-black);
}
.contact-block form textarea::-moz-placeholder {
  color: var(--theme-color-black);
}
.contact-block form textarea:-ms-input-placeholder {
  color: var(--theme-color-black);
}
.contact-block form textarea::-ms-input-placeholder {
  color: var(--theme-color-black);
}
.contact-block form textarea::placeholder {
  color: var(--theme-color-black);
}
@media (max-width: 575.98px) {
  .contact-block {
    padding: 30px 12px;
  }
}

/*** 

====================================================================
  CONTACT SECTION Four
====================================================================

***/
.contact-section-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.contact-section-four .outer-box {
  -webkit-box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.0509803922);
  background-color: var(--theme-color-white);
  padding: 100px 90px;
  border-radius: 13px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .contact-section-four .outer-box {
    padding: 60px 30px;
  }
}
@media (max-width: 575.98px) {
  .contact-section-four .outer-box {
    padding: 60px 12px;
  }
}
.contact-section-four .google-map {
  margin-top: -530px;
}
.contact-section-four .google-map iframe {
  margin-bottom: -12px;
  width: 100%;
  height: 650px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.contact-block-four .input-feild {
  position: relative;
}
.contact-block-four .input-feild input,
.contact-block-four .input-feild textarea {
  width: 100%;
  padding: 15px 25px;
  background-color: #f0f1f6;
  border: 1px solid #444;
  border-radius: 9px;
  font-size: 16px;
}
.contact-block-four .input-feild input::-webkit-input-placeholder, .contact-block-four .input-feild textarea::-webkit-input-placeholder {
  color: var(--headings-color);
}
.contact-block-four .input-feild input::-moz-placeholder, .contact-block-four .input-feild textarea::-moz-placeholder {
  color: var(--headings-color);
}
.contact-block-four .input-feild input:-ms-input-placeholder, .contact-block-four .input-feild textarea:-ms-input-placeholder {
  color: var(--headings-color);
}
.contact-block-four .input-feild input::-ms-input-placeholder, .contact-block-four .input-feild textarea::-ms-input-placeholder {
  color: var(--headings-color);
}
.contact-block-four .input-feild input::placeholder,
.contact-block-four .input-feild textarea::placeholder {
  color: var(--headings-color);
}
.contact-block-four .input-feild input:focus,
.contact-block-four .input-feild textarea:focus {
  border: 1px solid var(--theme-color1);
}
.contact-block-four .input-feild.textarea-feild textarea {
  height: 210px;
}
.contact-block-four .input-feild .icon {
  position: absolute;
  top: 15px;
  right: 25px;
}
.contact-block-four .nice-select {
  height: 68px;
  line-height: 68px;
  background-color: #f0f1f6;
  border: 1px solid #444;
  padding: 0 25px;
  border-radius: 9px;
}
.contact-block-four .nice-select::before {
  right: 25px;
  font-size: 18px;
}

/*** 

====================================================================
CONTACT Details
====================================================================

***/
.contact-details {
  overflow: hidden;
}
.contact-details .content-column .inner-column .google-map iframe {
  width: 100%;
  height: 350px;
}
.contact-details .content-column .inner-column form .type-feild {
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
}
.contact-details .content-column .inner-column form .type-feild input {
  padding-bottom: 15px;
  padding-left: 35px;
  width: 100%;
  border-bottom: 1px solid rgba(92, 92, 91, 0.3);
}
.contact-details .content-column .inner-column form .type-feild textarea {
  padding-bottom: 15px;
  padding-left: 35px;
  width: 100%;
  border-bottom: 1px solid rgba(92, 92, 91, 0.3);
  height: 130px;
}
.contact-details .content-column .inner-column form .type-feild i {
  position: absolute;
  top: 0;
  left: 0;
}
.contact-details .content-column .inner-column.right-column {
  max-width: 590px;
  margin-left: auto;
}
.contact-details .content-column .inner-column.right-column .sec-title {
  margin-bottom: 55px !important;
}

.contact-details-block {
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 15px 10px 0px rgba(188, 194, 198, 0.1803921569);
          box-shadow: 0px 15px 10px 0px rgba(188, 194, 198, 0.1803921569);
  border-radius: 8px;
  padding: 65px 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}
.contact-details-block .inner-box {
  max-width: 260px;
  margin: 0 auto;
}
.contact-details-block .icon {
  margin-bottom: 20px;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.contact-details-block .icon svg,
.contact-details-block .icon i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-details-block .icon svg path,
.contact-details-block .icon i path {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-details-block .title {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.contact-details-block .text {
  margin-bottom: 0;
  color: var(--text-color2);
  font-weight: 500;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  line-height: 28px;
  font-size: 18px;
}
.contact-details-block:hover {
  background-color: var(--theme-color2);
}
.contact-details-block:hover .icon {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.contact-details-block:hover .icon svg,
.contact-details-block:hover .icon i {
  color: var(--theme-color-white);
}
.contact-details-block:hover .icon svg path,
.contact-details-block:hover .icon i path {
  fill: var(--theme-color-white);
}
.contact-details-block:hover .title {
  color: var(--theme-color-white);
}
    .contact-details-block:hover a,
    .contact-details-block:hover .text {
        color: var(--theme-color-white);
    }

.contact-six-aera {
  overflow: hidden;
}
.contact-six__wrp {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 130px 100px;
  margin-right: -20px;
}
@media (max-width: 1199.98px) {
  .contact-six__wrp {
    padding: 60px 30px;
  }
}
.contact-six__wrp:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(6, 50, 50, 0.8);
}
.contact-six__image {
  position: relative;
  z-index: 1;
  height: 100%;
  margin-left: 20px;
}
.contact-six__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-six__image .circle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.2);
  padding-top: 70px;
}
@media (max-width: 767.98px) {
  .contact-six__image .circle-btn {
    padding-top: 40px;
  }
}
.contact-six__image .circle-btn span {
  display: block;
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.contact-six__image .circle-btn span i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-six__image .circle-btn:hover span i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.contact-six__item .section-header {
  max-width: 860px;
}
.contact-six__item .section-header .title {
  font-size: 80px;
  line-height: 90px;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 80px);
  line-height: 1.2;
}
.contact-six__item .section-header .text {
  font-size: 16px;
}
.contact-six__item .wrp {
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px;
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767.98px) {
  .contact-six__item .wrp {
    gap: 20px;
  }
}

.service-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray);
}
.service-section .sec-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.service-section .sec-line {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 0;
}
.service-section::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  content: "";
  background-color: var(--theme-color2);
}
@media (max-width: 991.98px) {
  .service-section::after {
    display: none;
  }
}
.service-section .sec-title {
  position: relative;
  z-index: 1;
}
.service-section .sec-title .arry {
  position: absolute;
  z-index: -1;
  right: -75px;
  top: -15px;
}
@media (max-width: 991.98px) {
  .service-section .sec-title .arry {
    display: none;
  }
}
.service-section .service-slider {
  margin-right: -35%;
}
@media (max-width: 1399.98px) {
  .service-section .service-slider {
    margin: 0;
  }
}

.service-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  height: 100%;
}
.service-block .arry-btn {
  font-size: 14px;
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
  border-radius: 30px;
  width: 64px;
  height: 135px;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 210px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 767.98px) {
  .service-block .arry-btn {
    right: 125px;
    height: 80px;
    line-height: 80px;
  }
}
@media (max-width: 575.98px) {
  .service-block .arry-btn {
    right: 100px;
  }
}
.service-block .content-box {
  background-color: var(--theme-color3);
  padding: 50px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.service-block .content-box .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-44%, -68%);
          transform: translate(-44%, -68%);
  z-index: -1;
}
.service-block .content-box .icon {
  margin-bottom: 30px;
}
.service-block .content-box .icon svg,
.service-block .content-box .icon i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.service-block .content-box .content .number {
  font-size: 22px;
  color: var(--theme-color1);
  font-weight: 700;
}
.service-block .content-box .content .title {
  color: var(--theme-color-white);
  margin: 10px 0;
}
.service-block .content-box .content .title a {
  text-transform: capitalize;
}
.service-block .content-box .content .text {
  color: #d9d9d9;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .service-block .content-box {
    padding: 30px;
    width: 100%;
  }
}
.service-block .image-box {
  min-width: 240px;
  height: 100%;
  overflow: hidden;
}
.service-block .image-box .image img {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 767.98px) {
  .service-block .image-box {
    min-width: 130px;
    height: 100%;
  }
  .service-block .image-box .image {
    height: 100%;
  }
  .service-block .image-box .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575.98px) {
  .service-block .image-box {
    width: 130px;
  }
}
.service-block:hover .content-box .icon i,
.service-block:hover .content-box .icon svg {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.service-block:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.service-block:hover .arry-btn {
  background-color: var(--theme-color1);
  color: var(--theme-color-black);
}
@media (max-width: 575.98px) {
  .service-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-block .image-box {
    width: 100%;
    height: 350px;
  }
  .service-block .image-box img {
    width: 100%;
  }
  .service-block .arry-btn {
    right: 20px;
    top: 60px;
  }
  .service-block .content-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .service-block .content-box .icon {
    margin-bottom: 0;
  }
}

.service-section-two {
  overflow: hidden;
  background-color: var(--theme-color-gray2);
}
.service-section-two .outer-box {
  border-radius: 13px;
  overflow: hidden;
}
.service-section-two.home6-style .service-block-two .inner-box .icon {
  background-color: var(--theme-color7);
}
.service-section-two.home6-style .service-block-two .inner-box .icon svg path {
  fill: var(--theme-color-white);
}
.service-section-two.home6-style .service-block-two .inner-box:hover {
  background-color: var(--theme-color7);
}
.service-section-two.home6-style .service-block-two .inner-box:hover .icon:after {
  background-color: var(--theme-color6);
}
.service-section-two.home6-style .service-block-two .inner-box:hover .btn-two-rounded {
  background-color: var(--theme-color6);
}
.service-section-two.home6-style .service-block-two .inner-box:hover .content-box .title,
.service-section-two.home6-style .service-block-two .inner-box:hover .content-box .text {
  color: var(--theme-color-white);
}

.service-block-two {
  height: 100%;
}
.service-block-two .inner-box {
  padding: 60px 30px;
  padding-top: 50px;
  background-color: var(--theme-color-white);
  border-right: 1px solid #d9d9d9;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-block-two .inner-box .icon {
  width: 134px;
  height: 134px;
  line-height: 134px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-block-two .inner-box .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--theme-color2);
  content: "";
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: scale(0);
          transform: scale(0);
}


    .service-block-two .inner-box:hover .text,
    .service-block-two .inner-box:hover .title {
        color: #fff !important
    }


    .service-block-two .inner-box .icon svg,
    .service-block-two .inner-box .icon i {
        width: 70px;
        -webkit-transition: all 900ms ease;
        transition: all 900ms ease;
    }
.service-block-two .inner-box .icon svg path,
.service-block-two .inner-box .icon i path {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-block-two .inner-box .content-box .title {
  margin-bottom: 20px;
}
.service-block-two .inner-box .content-box .text {
  max-width: 345px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-two .inner-box .content-box .btn-two-rounded {
  min-width: 174px;
  margin-top: 30px;
  background-color: var(--theme-color-white);
  border: 1px solid rgba(32, 33, 36, 0.102);
  color: var(--headings-color);
}
.service-block-two .inner-box .block-bg {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 310px;
}
.service-block-two .inner-box .block-bg img {
  width: 100%;
}
.service-block-two .inner-box:hover {
  background-color: var(--theme-color1);
}
.service-block-two .inner-box:hover .icon i,
.service-block-two .inner-box:hover .icon svg {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.service-block-two .inner-box:hover .icon i path,
.service-block-two .inner-box:hover .icon svg path {
  fill: var(--theme-color-white);
}
.service-block-two .inner-box:hover .icon::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.service-block-two .inner-box:hover .text {
  color: var(--headings-color);
}
.service-block-two .inner-box:hover .btn-two-rounded {
  background-color: var(--headings-color);
  color: var(--theme-color-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 991.98px) {
  .service-block-two .inner-box {
    border: none;
    padding: 25px 15px;
  }
}

.service-section-three {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray2);
}
.service-section-three.have-pb {
  padding-bottom: 200px;
}
@media (max-width: 767.98px) {
  .service-section-three.have-pb {
    padding-bottom: 150px;
  }
}
.service-section-three .sec-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.service-section-three .outer-box {
  max-width: 1230px;
  margin: 0 auto;
}
.service-section-three .content-column .sec-title .text {
  font-size: 16px;
  line-height: 30px;
  margin-top: 40px;
}

.service-list-three {
  background-color: #eee9e9;
  padding: 60px;
  margin-right: 70px;
}
.service-list-three ul li:not(:last-child) {
  margin-bottom: 30px;
}
.service-list-three ul li a {
  display: block;
  border-radius: 7px;
  padding: 20px 40px;
  background-color: var(--theme-color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  color: #150e3d;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--title-font);
  text-transform: capitalize;
}
.service-list-three ul li a svg,
.service-list-three ul li a i {
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.service-list-three ul li a:hover {
  background-color: var(--theme-color1);
}
.service-list-three ul li a:hover svg,
.service-list-three ul li a:hover i {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}
@media (max-width: 575.98px) {
  .service-list-three ul li a {
    padding: 20px;
  }
}
@media (max-width: 1199.98px) {
  .service-list-three {
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .service-list-three {
    padding: 30px 15px;
  }
}

.service-block-three {
  background-color: var(--theme-color-white);
  border-radius: 5px;
  padding: 40px;
}
.service-block-three .image {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.service-block-three .image img {
  width: 100%;
}
.service-block-three .image .video-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--headings-color);
  background-color: var(--theme-color1);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.service-block-three .image .video-btn::after, .service-block-three .image .video-btn::before {
  opacity: 1;
  border: 20px solid rgba(var(--theme-color1-rgb), 0.5);
}
.service-block-three .content .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
.service-block-three .content .list li i {
  color: var(--theme-color-black);
}
@media (max-width: 575.98px) {
  .service-block-three {
    padding: 30px 15px;
  }
}

.service-section-four {
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray2);
}
@media (max-width: 991.98px) {
  .service-section-four {
    overflow: hidden;
  }
}
.service-section-four .sec-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .service-section-four .sec-shape {
    display: none;
  }
}
.service-section-four .content-column .inner-column {
  max-width: 580px;
  position: sticky;
  top: 120px;
}
.service-section-four .content-column .inner-column .text {
  font-size: 16px;
  line-height: 28.8px;
}
.service-section-four .content-column .inner-column .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-section-four .content-column .inner-column .info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--headings-color);
}
.service-section-four .content-column .inner-column .info ul li:not(:last-child) {
  margin-bottom: 10px;
}
.service-section-four .content-column .inner-column .info ul li .title {
  margin-bottom: 0;
}

.service-block-four .acc {
  border-radius: 14px;
  border: 1px solid #d9d9d9;
}
.service-block-four .acc .acc-item {
  background-color: transparent;
  border: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-four .acc .acc-item .acc-header {
  margin-bottom: 0;
}
.service-block-four .acc .acc-item .acc-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
}
@media (max-width: 575.98px) {
  .service-block-four .acc .acc-item .acc-btn {
    padding: 20px 15px;
  }
}
.service-block-four .acc .acc-item .acc-btn.collapsed {
  padding: 30px 50px;
}
@media (max-width: 575.98px) {
  .service-block-four .acc .acc-item .acc-btn.collapsed {
    padding: 20px 15px;
  }
}
.service-block-four .acc .acc-item .acc-btn span {
  display: block;
}
.service-block-four .acc .acc-item .acc-btn span.icon {
  width: 60px;
}
.service-block-four .acc .acc-item .acc-btn .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.service-block-four .acc .acc-item .acc-btn .content-box .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--headings-color);
}
@media (max-width: 575.98px) {
  .service-block-four .acc .acc-item .acc-btn .content-box {
    gap: 10px;
  }
  .service-block-four .acc .acc-item .acc-btn .content-box .title {
    font-size: 18px;
    line-height: 30px;
  }
  .service-block-four .acc .acc-item .acc-btn .content-box .icon {
    width: 30px;
  }
  .service-block-four .acc .acc-item .acc-btn .content-box .icon svg {
    width: 30px;
    height: 30px;
  }
}
.service-block-four .acc .acc-item .acc-btn .number {
  font-size: 20px;
  font-weight: 600;
  color: var(--headings-color);
}
.service-block-four .acc .acc-item .acc-btn::after {
  display: none;
}
.service-block-four .acc .acc-item .acc-body {
  padding: 30px;
  padding-top: 0;
}
.service-block-four .acc .acc-item .acc-body .text {
  margin-left: 85px;
  max-width: 430px;
  margin-bottom: 0;
  color: var(--theme-color-white);
}
@media (max-width: 575.98px) {
  .service-block-four .acc .acc-item .acc-body .text {
    margin-left: 0;
    font-size: 16px;
    line-height: 28px;
  }
}
.service-block-four .acc .acc-item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.service-block-four .acc .acc-item.active {
  background-color: var(--theme-color2);
  border-radius: 14px;
}
.service-block-four .acc .acc-item.active .title,
.service-block-four .acc .acc-item.active .text,
.service-block-four .acc .acc-item.active .number {
  color: var(--theme-color-white) !important;
}
.service-block-four .acc .acc-item.active .icon svg path {
  fill: var(--theme-color-white);
}
.service-block-four .acc .acc-item.active .acc-btn {
  padding-bottom: 0 !important;
}

.service-section-five {
  position: relative;
  z-index: 9;
  margin: 0 30px;
  border-radius: 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
@media (max-width: 767.98px) {
  .service-section-five .title br {
    display: none;
  }
}
.service-section-five:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -2;
  background: linear-gradient(280.47deg, rgba(20, 68, 67, 0.85) 15.04%, #144443 65.71%);
}
.service-section-five .shape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.service-section-five .service-wrapper {
  margin: 0px 15px;
}
.service-section-five .service-know-box {
  border-radius: 100px;
  padding: 5px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  max-width: 705px;
  margin: 60px auto 0;
  border: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
}
@media (max-width: 767.98px) {
  .service-section-five .service-know-box {
    display: block;
    margin: 40px auto 0;
    text-align: center;
    padding: 14px;
  }
}
.service-section-five .service-know-box .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  background-color: var(--theme-color1);
}
@media (max-width: 767.98px) {
  .service-section-five .service-know-box .icon {
    margin: 0 auto;
  }
}
.service-section-five .service-know-box p {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  color: var(--theme-color-white);
  text-transform: capitalize;
  margin-bottom: 0;
}
.service-section-five .service-know-box p a {
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
  color: var(--theme-color1);
  text-decoration: underline;
  margin-left: 20px;
}
.service-section-five .service-know-box p a i {
  margin-left: 15px;
  font-size: 19px;
}

.service-card-items {
  margin-top: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  padding-bottom: 30px;
  padding: 25px;
}
@media (max-width: 1599.98px) {
  .service-card-items {
    padding: 35px;
  }
}
@media (max-width: 575.98px) {
  .service-card-items {
    padding: 30px;
  }
}
.service-card-items .icon {
  width: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(99deg, #C8F169 0%, #039397 93.92%);
}
.service-card-items .icon svg {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.service-card-items .content {
  margin-top: 35px;
}
.service-card-items .content h3 a {
  color: #fff;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-card-items .content h3 a:hover {
  background-size: 100% 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(180deg, #fff 0%, #fff 100%);
}
.service-card-items .content p {
  color: #C4C4C4;
}
.service-card-items .content .link-btn {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: inline-block;
  margin-top: 20px;
  line-height: 1;
}
.service-card-items .content .link-btn:hover {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.service-card-items:hover .icon svg {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.steps-section .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .steps-section .outer-box {
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.steps-section.style-two {
  position: relative;
  z-index: 9;
  overflow: hidden;
  margin: 0px 30px;
  padding-top: 380px;
  padding-bottom: 70px;
  border-radius: 30px;
}
@media (max-width: 1199.98px) {
  .steps-section.style-two {
    margin: 0px 15px;
  }
}
@media (max-width: 1199.98px) {
  .steps-section.style-two .outer-box {
    gap: 80px;
  }
}
@media (max-width: 575.98px) {
  .steps-section.style-two .outer-box {
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.steps-section.style-two .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -3;
}
.steps-section.style-two::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -2;
  background: linear-gradient(179.28deg, rgba(20, 68, 67, 0) 0.5%, #144443 99.22%);
}
.steps-section.style-two .shape-bg {
  position: absolute;
  top: -111px;
  right: -87px;
  z-index: -1;
}
.steps-section.style-two .steps-block .line {
  right: -115%;
}
@media (max-width: 1399.98px) {
  .steps-section.style-two .steps-block .line {
    display: none;
  }
}

.steps-block {
  max-width: 310px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.steps-block .icon {
  width: 180px;
  height: 180px;
  line-height: 180px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  background-color: var(--theme-color1);
  position: relative;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.steps-block .icon svg,
.steps-block .icon i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.steps-block .icon svg path,
.steps-block .icon i path {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.steps-block .icon .number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color: var(--text-color1);
  background-color: var(--theme-color-white);
  position: absolute;
  bottom: 10px;
  right: -30px;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--theme-color2);
  -webkit-box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.0509803922);
}
.steps-block .title {
  margin-top: 30px;
  margin-bottom: 15px;
}
.steps-block .text {
  font-size: 14.77px;
  line-height: 26.59px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .steps-block {
    max-width: 45%;
  }
}
@media (max-width: 767.98px) {
  .steps-block {
    max-width: 100%;
  }
}
.steps-block .line {
  position: absolute;
  right: -65%;
  top: 75px;
  z-index: -1;
}
@media (max-width: 1599.98px) {
  .steps-block .line {
    right: -40%;
  }
}
@media (max-width: 991.98px) {
  .steps-block .line.item-middle {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .steps-block .line {
    display: none;
  }
}
.steps-block.active .icon {
  background-color: var(--theme-color2);
}
.steps-block:hover .icon {
  background-color: var(--theme-color2);
}
.steps-block:hover .icon svg {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.steps-block:hover .icon svg path {
  fill: var(--theme-color-white);
}
.steps-block:hover .icon .number {
  -webkit-animation: bounceIn 1s forwards;
          animation: bounceIn 1s forwards;
}

.strategy-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray);
}
.strategy-section.style-two {
  background-color: var(--theme-color7);
}
.strategy-section.style-two .image-column .inner-column {
  max-width: 877px;
}
@media (max-width: 1199.98px) {
  .strategy-section.style-two .image-column .inner-column {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.strategy-section.style-two .image-column .inner-column .image {
  overflow: visible;
}
@media (max-width: 1199.98px) {
  .strategy-section.style-two .image-column .inner-column .image {
    overflow: hidden;
  }
}
.strategy-section.style-two .content-column .inner-column {
  padding: 80px 0;
}
@media (max-width: 1199.98px) {
  .strategy-section.style-two .content-column .inner-column {
    padding: 50px 15px;
  }
}
.strategy-section.style-two .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --bs-gutter-y: 0;
}
.strategy-section.style-two .row * {
  margin-top: 0;
}
.strategy-section.style-two .accordion-area {
  margin-bottom: 0;
}
.strategy-section.style-two .accordion-area .accordion {
  border-radius: 7px;
  overflow: hidden;
  --bs-accordion-bg: transparent;
}
.strategy-section.style-two .accordion-area .accordion .accordion-item {
  border-radius: 7px;
  overflow: hidden;
}
.strategy-section.style-two .accordion-area .accordion .accordion-button {
  color: var(--theme-color-black);
  background: var(--theme-color-light);
}
.strategy-section.style-two .accordion-area .accordion .accordion-button.collapsed {
  color: var(--theme-color-light);
  background-color: transparent;
}
.strategy-section.style-two .accordion-area .accordion .accordion-button.collapsed::before {
  color: var(--theme-color-light);
}
.strategy-section.style-two .accordion-area .accordion .show .accordion-body {
  background-color: var(--theme-color-light);
}
.strategy-section.style-two .accordion-area .accordion .show .accordion-body .text {
  color: var(--theme-color-black);
}
.strategy-section.style-two .accordion-area .accordion .accordion-body .text {
  color: var(--theme-color-light);
}
.strategy-section .sec-shape {
  position: absolute;
  bottom: 0;
  right: -290px;
  z-index: -1;
}
.strategy-section .image-column .inner-column {
  max-width: 869px;
}
.strategy-section .image-column .inner-column .image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.strategy-section .image-column .inner-column .image img {
  width: 100%;
}
.strategy-section .image-column .inner-column .image .info {
  position: absolute;
  bottom: 60px;
  right: 60px;
}
@media (max-width: 1199.98px) {
  .strategy-section .image-column .inner-column {
    max-width: 100%;
  }
}
.strategy-section .content-column .inner-column {
  max-width: 620px;
}
@media (max-width: 1199.98px) {
  .strategy-section .content-column .inner-column {
    padding: 0px 12px;
    padding-bottom: 30px;
    max-width: 100%;
  }
}
@media (max-width: 1599.98px) {
  .strategy-section .content-column .inner-column .accordion-area {
    padding-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .strategy-section .content-column .inner-column .accordion-area {
    padding-bottom: 0;
  }
}

.strategy-section-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .strategy-section-two {
    padding-bottom: 60px;
  }
}
.strategy-section-two .content-column .inner-column {
  max-width: 564px;
}
@media (max-width: 1199.98px) {
  .strategy-section-two .content-column .inner-column {
    max-width: 100%;
  }
}
.strategy-section-two .content-column .inner-column .sec-title {
  max-width: 500px;
}
@media (max-width: 1199.98px) {
  .strategy-section-two .content-column .inner-column .sec-title {
    max-width: 100%;
  }
}
.strategy-section-two .content-column .inner-column .sec-title .text {
  font-size: 16px;
  line-height: 29px;
  padding-left: 12px;
  border-left: 2px solid var(--theme-color1);
}
.strategy-section-two .content-column .inner-column .image img {
  width: 100%;
}
.strategy-section-two .image-column {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.strategy-section-two .image-column .inner-column {
  height: 100%;
}
.strategy-section-two .image-column .inner-column .image {
  height: 100%;
  overflow: hidden;
}
.strategy-section-two .image-column .inner-column .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199.98px) {
  .strategy-section-two .image-column {
    position: unset;
  }
}

.strategy-block-two {
  position: absolute;
  bottom: 60px;
  left: 60px;
  width: 100%;
  max-width: 610px;
}
.strategy-block-two .item {
  background-color: var(--theme-color1);
  padding: 40px 30px;
  border-radius: 10px;
}
.strategy-block-two .item .title {
  color: #0e2d3a;
  margin-bottom: 15px;
}
.strategy-block-two .item .text {
  color: #0e2d3a;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
}
.strategy-block-two .item.light {
  background-color: var(--theme-color2);
}
.strategy-block-two .item.light .title,
.strategy-block-two .item.light .text {
  color: var(--theme-color-white);
}
@media (max-width: 767.98px) {
  .strategy-block-two {
    position: unset;
    margin-top: 24px;
  }
}

.progress {
  background-color: transparent;
  position: relative;
  display: block;
  height: auto;
  width: 100%;
  border-radius: 0;
}
.progress .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #e8e8e8;
  border-radius: 13px;
  overflow: hidden;
}
.progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 100%;
  border-radius: 13px;
  background-color: #0c6460;
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}
.progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 21px;
  color: var(--theme-color-white);
  background-color: #0c6460;
  border-radius: 3px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 5px 13px;
  z-index: 1;
}
.progress .count-text::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: #0c6460;
  width: 14px;
  height: 14px;
  content: "";
  z-index: -1;
}
.progress .bar-inner.counted .count-text {
  opacity: 1;
  bottom: 25px;
  right: -35px;
}
.progress .bar.marb-0 {
  margin-bottom: 0;
}
.progress .progress-single {
  position: relative;
  display: block;
}
.progress .progress-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  color: var(--headings-color);
  margin-bottom: 10px;
}

/***

====================================================================
    Product Section One
====================================================================

***/
.gallery-section-one {
  padding: 120px 0;
}

.gallery-block-one .inner-box {
  overflow: hidden;
  position: relative;
}
.gallery-block-one .inner-box:hover .content-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.gallery-block-one .inner-box:hover .content-box .title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.gallery-block-one .inner-box:hover .content-box .theme-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.gallery-block-one .inner-box:hover .image-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery-block-one .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
}
.gallery-block-one .inner-box .image-box .image img {
  height: 430px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .gallery-block-one .inner-box .image-box .image img {
    height: auto;
  }
}
.gallery-block-one .content-box {
  background-color: #222222;
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 30px;
  position: absolute;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .gallery-block-one .content-box {
    padding: 20px;
  }
}
.gallery-block-one .content-box .title {
  color: var(--theme-color-light);
  font-family: "Gilda Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .gallery-block-one .content-box .title {
    font-size: 20px;
  }
}
.gallery-block-one .content-box .theme-btn {
  color: #6A6F78;
  font-family: "Barlow";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.gallery-block-one .content-box .theme-btn:before {
  display: none;
}

/***

==================================================================
    Offer Section One
==================================================================

***/
.objective-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.objective-section::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58%;
  background-color: var(--theme-color-gray2);
  z-index: -1;
  content: "";
}
.objective-section .content-column .inner-column {
  padding: 50px;
  background-color: var(--theme-color-white);
  border-radius: 5px;
  -webkit-box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.0392156863);
          box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.0392156863);
  overflow: hidden;
  height: 100%;
}
.objective-section .content-column .inner-column .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.objective-section .content-column .inner-column .content .image {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.objective-section .content-column .inner-column .content .image img {
  width: 100%;
}
.objective-section .content-column .inner-column .content .image .btn-play {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.objective-section .content-column .inner-column .content .image .btn-play::after, .objective-section .content-column .inner-column .content .image .btn-play::before {
  opacity: 1;
  border: 20px solid rgba(var(--theme-color2-rgb), 0.5);
}
.objective-section .content-column .inner-column .content ul li {
  font-size: 16px;
}
.objective-section .content-column .inner-column .progress .progress-title {
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.objective-section .content-column .inner-column .progress .bar {
  height: 2.21px;
  border-radius: 3px;
}
.objective-section .content-column .inner-column .progress .bar .bar-inner {
  border-radius: 3px;
  background-color: var(--theme-color1);
}
.objective-section .content-column .inner-column .nav.nav-tabs {
  border-bottom: 1px solid rgba(2, 6, 38, 0.102);
}
.objective-section .content-column .inner-column .nav.nav-tabs .nav-item .nav-link {
  padding: 8px 50px;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: capitalize;
  border-radius: 2px;
  color: var(--headings-color);
  background-color: transparent;
  border: none;
}
.objective-section .content-column .inner-column .nav.nav-tabs .nav-item .nav-link.active {
  color: var(--theme-color-white);
  background-color: var(--theme-color2);
}
@media (max-width: 575.98px) {
  .objective-section .content-column .inner-column .nav.nav-tabs .nav-item .nav-link {
    padding: 6px 20px;
  }
}
@media (max-width: 575.98px) {
  .objective-section .content-column .inner-column .nav.nav-tabs {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .objective-section .content-column .inner-column {
    padding: 30px 12px;
  }
}
@media (max-width: 575.98px) {
  .objective-section .content-column .inner-column .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .objective-section .content-column .inner-column .content .image {
    width: 100%;
  }
}

.objective-block {
  padding: 70px 45px;
  padding-bottom: 90px;
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.0392156863);
          box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.0392156863);
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  position: relative;
  z-index: 1;
}
.objective-block .title {
  padding-left: 15px;
  border-left: 2.25px solid var(--theme-color1);
}
.objective-block .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 499.98px) {
  .objective-block .outer-box {
    display: block;
  }
}
.objective-block .outer-box .item {
  width: 100%;
}
.objective-block .outer-box .item .icon {
  margin-bottom: 10px;
}
@media (max-width: 499.98px) {
  .objective-block .outer-box .item {
    padding-left: 5px;
  }
}
.objective-block .outer-box .item:not(:first-child) {
  border-left: 1px solid #ebebeb;
  padding-left: 40px;
}
@media (max-width: 499.98px) {
  .objective-block .outer-box .item:not(:first-child) {
    border: none;
    padding-left: 5px;
  }
}
.objective-block .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.objective-block .info .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--theme-color-black-rgb), 0.09);
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.0901960784);
}
.objective-block .info .text {
  color: var(--headings-color);
  margin-bottom: 0;
}
.objective-block .info .text a {
  font-weight: 500;
  text-decoration: underline;
}
.objective-block .triangle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .objective-block {
    padding: 30px 12px;
  }
  .objective-block .triangle {
    display: none;
  }
}

.testimonial-section {
  overflow: hidden;
  padding: 120px 12px;
}
@media (max-width: 767.98px) {
  .testimonial-section {
    padding: 60px 12px;
  }
}
.testimonial-section .outer-box {
  max-width: 1540px;
  margin: 0 auto;
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.0588235294);
  padding: 120px 30px;
  position: relative;
  z-index: 1;
}
.testimonial-section .outer-box .shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  left: 0;
  z-index: -1;
}
.testimonial-section .outer-box .shape img {
  width: 100%;
}
@media (max-width: 991.98px) {
  .testimonial-section .outer-box {
    padding: 60px 15px;
  }
}

.testimonial-slider {
  padding-top: 20px;
  position: relative;
}
.testimonial-slider .swiper-arry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 30px;
  right: 10%;
  z-index: 1;
}
.testimonial-slider .swiper-arry button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme-color-black);
  background-color: #f1f1f1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-slider .swiper-arry button:hover {
  background-color: var(--theme-color1);
}
@media (max-width: 1199.98px) {
  .testimonial-slider .swiper-arry {
    position: unset;
    margin: 0 auto;
    margin-top: 30px;
  }
}

.testimonial-block .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .testimonial-block .inner-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.testimonial-block .inner-box .image-box {
  max-width: 300px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-block .inner-box .image-box .quate {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
  position: absolute;
  top: -15px;
  right: 5px;
}
.testimonial-block .inner-box .image-box .image {
  overflow: hidden;
  border-radius: 50%;
}
.testimonial-block .inner-box .image-box .image img {
  width: 100%;
}
.testimonial-block .inner-box .image-box .image::after {
  background-color: rgba(var(--theme-color-white-rgb), 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.testimonial-block .inner-box .image-box .star {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-top: 35px;
  border: 1px solid #e1e1e1;
  padding: 5px 35px;
  border-radius: 30px;
  width: 190px;
  font-size: 16px;
}
.testimonial-block .inner-box .image-box .star i {
  color: #ff8c22;
}
.testimonial-block .inner-box .image-box .star::after {
  position: absolute;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  background-color: var(--theme-color-white);
  width: 25px;
  height: 25px;
  content: "";
}
@media (max-width: 991.98px) {
  .testimonial-block .inner-box .image-box {
    margin: 0 auto;
  }
}
.testimonial-block .inner-box .content-box {
  max-width: 810px;
}
.testimonial-block .inner-box .content-box .text {
  font-size: 30px;
  line-height: 50px;
  font-weight: 500;
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(var(--theme-color2-rgb), 0.1);
}
@media (max-width: 767.98px) {
  .testimonial-block .inner-box .content-box .text {
    font-size: 20px;
    line-height: 30px;
  }
}
.testimonial-block .inner-box .content-box .title {
  margin-bottom: 0;
}
.testimonial-block .inner-box .content-box .title span {
  font-family: var(--text-font);
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .testimonial-block .inner-box .content-box {
    max-width: 100%;
    text-align: center;
  }
}
.testimonial-block .inner-box:hover .image-box .quate svg {
  -webkit-animation: iconBounceIn 1s forwards;
          animation: iconBounceIn 1s forwards;
}
.testimonial-block .inner-box:hover .image-box .image::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.testimonial-section-two {
  position: relative;
  z-index: 1;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -80px;
  padding-top: 80px;
}
@media (max-width: 1399.98px) {
  .testimonial-section-two {
    padding-bottom: 60px;
  }
}
.testimonial-section-two .testimonial-slider-two {
  position: relative;
  z-index: 1;
}
.testimonial-section-two .testimonial-slider-two .btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .testimonial-section-two .testimonial-slider-two .btn-wrp {
    display: none;
  }
}
.testimonial-section-two .testimonial-slider-two .testimonial-prev-two,
.testimonial-section-two .testimonial-slider-two .testimonial-next-two {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(var(--theme-color-white-rgb), 0.16);
  color: var(--theme-color-white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 20px;
}
.testimonial-section-two .testimonial-slider-two .testimonial-prev-two:hover,
.testimonial-section-two .testimonial-slider-two .testimonial-next-two:hover {
  background-color: var(--theme-color-white);
  color: var(--headings-color);
}
.testimonial-section-two .sec-shape {
  position: absolute;
  bottom: -25px;
  right: -200px;
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .testimonial-section-two .sec-shape {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .testimonial-section-two .image-column {
    display: none;
  }
}
.testimonial-section-two .image-column .inner-column .image {
  position: relative;
  z-index: 1;
  max-width: 422px;
}
.testimonial-section-two .image-column .inner-column .image img {
  width: 100%;
}
.testimonial-section-two .image-column .inner-column .image .info1 {
  position: absolute;
  top: 30%;
  left: -50%;
}
.testimonial-section-two .image-column .inner-column .image .info2 {
  position: absolute;
  bottom: -80px;
  right: -120px;
}
.testimonial-section-two .image-column .inner-column .image::after {
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 510px;
  height: 565px;
  background-color: var(--theme-color1);
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  content: "";
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .testimonial-section-two .image-column .inner-column .image .info1 {
    left: -10%;
  }
  .testimonial-section-two .image-column .inner-column .image .info2 {
    right: unset;
    left: -10%;
  }
  .testimonial-section-two .image-column .inner-column .image::after {
    display: none;
  }
}
.testimonial-section-two .content-column .inner-column {
  max-width: 820px;
  margin-left: auto;
  margin-right: -60px;
}
@media (max-width: 1399.98px) {
  .testimonial-section-two .content-column .inner-column {
    margin-right: 0;
  }
}

.testimonial-block-two .text {
  font-size: 30px;
  line-height: 51px;
  font-weight: 500;
  color: var(--theme-color-white);
  font-family: var(--title-font);
  margin: 40px 0;
}
@media (max-width: 575.98px) {
  .testimonial-block-two .text {
    font-size: 18px;
    line-height: 32px;
  }
}
.testimonial-block-two .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #4b5563;
  padding-top: 35px;
  max-width: 90%;
}
@media (max-width: 575.98px) {
  .testimonial-block-two .info {
    max-width: 100%;
  }
}
.testimonial-block-two .info .title {
  color: var(--theme-color-white);
  margin-bottom: 0;
  font-size: 22px;
}
.testimonial-block-two .info .sub-title {
  font-weight: 500;
  font-size: 16px;
  color: #d9d9d9;
  margin-bottom: 0;
}
.testimonial-block-two .info .stars {
  color: #ff8c22;
  margin-right: 50px;
}
@media (max-width: 575.98px) {
  .testimonial-block-two .info .stars {
    margin-right: 0;
  }
}

.testimonial-section-three {
  overflow: hidden;
}
.testimonial-section-three::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background-color: var(--theme-color-gray2);
  z-index: -1;
}
.testimonial-section-three .sec-wrp {
  margin: 0 70px;
  border-radius: 60px;
  background-color: var(--theme-color2);
  padding: 120px 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .testimonial-section-three .sec-wrp {
    margin: 0 12px;
  }
  .testimonial-section-three .sec-wrp .sec-shape {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .testimonial-section-three .sec-wrp {
    padding: 60px 12px;
  }
}
.testimonial-section-three.home6-style .sec-wrp {
  background-color: var(--theme-color7);
}
.testimonial-section-three.home6-style .image-column .inner-column .image .icon {
  background-color: var(--theme-color6);
}
.testimonial-section-three.home6-style .image-column .inner-column .image .icon svg path {
  fill: var(--theme-color-white);
}
.testimonial-section-three.home6-style .image-column .inner-column .image .title {
  background-color: var(--theme-color6);
  color: var(--theme-color-white);
}
.testimonial-section-three .sec-shape {
  position: absolute;
  bottom: 20px;
  right: -220px;
  z-index: -1;
}
.testimonial-section-three .sec-title .title {
  max-width: 510px;
}
.testimonial-section-three .sec-title .flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.testimonial-section-three .sec-title .btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.testimonial-section-three .sec-title .testimonial-prev-three,
.testimonial-section-three .sec-title .testimonial-next-three {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(var(--theme-color-white-rgb), 0.16);
  color: var(--theme-color-white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 20px;
}
.testimonial-section-three .sec-title .testimonial-prev-three:hover,
.testimonial-section-three .sec-title .testimonial-next-three:hover {
  background-color: var(--theme-color-white);
  color: var(--headings-color);
}
.testimonial-section-three .image-column .inner-column .image {
  max-width: 485px;
  position: relative;
  z-index: 1;
}
.testimonial-section-three .image-column .inner-column .image img {
  width: 100%;
}
.testimonial-section-three .image-column .inner-column .image::after {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 440px;
  height: 495px;
  border-radius: 37px;
  opacity: 0.3;
  content: "";
  background-color: #d9d9d9;
  z-index: -1;
}
.testimonial-section-three .image-column .inner-column .image .icon {
  position: absolute;
  bottom: 335px;
  right: -10px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
  z-index: 1;
}
@media (max-width: 375.98px) {
  .testimonial-section-three .image-column .inner-column .image .icon {
    bottom: 275px;
    right: -30px;
  }
}
.testimonial-section-three .image-column .inner-column .image .title {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 38px;
  font-weight: 700;
  background-color: var(--theme-color1);
  padding: 35px;
  border-radius: 60px;
  text-align: center;
  width: 453px;
  -webkit-transform: rotate(-6.38deg);
          transform: rotate(-6.38deg);
  position: absolute;
  left: 5px;
  bottom: -4px;
}
@media (max-width: 1199.98px) {
  .testimonial-section-three .image-column .inner-column .image {
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .testimonial-section-three .image-column .inner-column .image .title {
    font-size: 28px;
    width: 300px;
    padding: 20px;
  }
  .testimonial-section-three .image-column .inner-column .image::after {
    width: 320px;
    left: -10px;
  }
}
@media (max-width: 359.98px) {
  .testimonial-section-three .image-column .inner-column .image .title {
    font-size: 24px;
    width: 250px;
  }
  .testimonial-section-three .image-column .inner-column .image::after {
    display: none;
  }
}

.testimonial-block-three .text {
  font-size: 22px;
  line-height: 51px;
  font-weight: 400;
  color: var(--theme-color-white);
  font-family: var(--title-font);
}
.testimonial-block-three .info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 90%;
  padding-top: 30px;
}
.testimonial-block-three .info .title {
  color: var(--theme-color-white);
  margin-bottom: 0;
  font-size: 22px;
}
.testimonial-block-three .info .title span {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .testimonial-block-three .info {
    gap: 20px;
    max-width: 100%;
  }
  .testimonial-block-three .info img {
    width: 150px;
  }
}
@media (max-width: 575.98px) {
  .testimonial-block-three .text {
    font-size: 18px;
    line-height: 32px;
  }
}

.testimonial-section-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color2);
  padding-top: 210px;
  padding-bottom: 400px;
}
@media (max-width: 1399.98px) {
  .testimonial-section-four {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.testimonial-section-four .map {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.testimonial-section-four .hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  max-width: 1655px;
  width: 100%;
}
.testimonial-section-four .hero-image img {
  width: 100%;
}
@media (max-width: 1399.98px) {
  .testimonial-section-four .hero-image {
    display: none;
  }
}
.testimonial-section-four .outer-box {
  max-width: 815px;
  margin: 0 auto;
}

.testimonial-block-four {
  text-align: center;
}
.testimonial-block-four .icon {
  margin-bottom: 30px;
}
.testimonial-block-four .text {
  font-size: 30px;
  line-height: 50px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--theme-color-white);
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .testimonial-block-four .text {
    font-size: 18px;
    line-height: 28px;
  }
}
.testimonial-block-four .info {
  margin-top: 50px;
  padding: 18px 45px;
  background-color: rgba(var(--theme-color-white-rgb), 0.12);
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-four .info .title {
  font-size: 20px;
  line-height: 30px;
  color: var(--theme-color-white);
  margin-bottom: 0;
}
.testimonial-block-four .info .sub-title {
  font-size: 14px;
  line-height: 14px;
  color: #d9d9d9;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-block-four .info.active {
  background-color: rgba(var(--theme-color-white-rgb), 0.21);
}
@media (max-width: 575.98px) {
  .testimonial-block-four .info {
    margin-top: 30px;
    padding: 10px 30px;
  }
}
.testimonial-block-four .testimonial-slider-thumb-four .swiper-slide-thumb-active .info {
  background-color: rgba(var(--theme-color-white-rgb), 0.21);
}

.testimonial-section-five {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonial-section-five .slider-outer {
  margin: 0px -280px;
}
@media (max-width: 1599.98px) {
  .testimonial-section-five .slider-outer {
    margin: 0;
  }
}

.testimonial-block-five {
  max-width: 790px;
  margin: 0 auto;
}
.testimonial-block-five .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .testimonial-block-five .inner-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.testimonial-block-five .inner-box .thumb {
  position: relative;
  margin-bottom: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 45%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .testimonial-block-five .inner-box .thumb {
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
  }
}
.testimonial-block-five .inner-box .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-block-five .inner-box .thumb .video-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--headings-color);
  background-color: var(--theme-color1);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.testimonial-block-five .inner-box .content-box {
  padding: 0px 40px;
  border-radius: 0 20px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(19, 81, 216, 0.05);
  -webkit-box-shadow: 0px 4px 18px 0px rgba(var(--theme-color-black-rgb), 0.05);
          box-shadow: 0px 4px 18px 0px rgba(var(--theme-color-black-rgb), 0.05);
}
@media (max-width: 1599.98px) {
  .testimonial-block-five .inner-box .content-box {
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-block-five .inner-box .content-box {
    padding: 50px;
    border-radius: 20px;
  }
}
.testimonial-block-five .inner-box .content-box .logo {
  margin-bottom: 20px;
}
.testimonial-block-five .inner-box .content-box .text {
  font-size: 20px;
  line-height: 32px;
  color: var(--text-color);
}
@media (max-width: 1799.98px) {
  .testimonial-block-five .inner-box .content-box .text {
    font-size: 16px;
  }
}
.testimonial-block-five .inner-box .content-box .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid #EEEFF1;
}
.testimonial-block-five .inner-box .content-box .info-box .user-info .name {
  font-size: 18px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.testimonial-block-five .inner-box .content-box .info-box .user-info .designation {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: var(--text-color3);
}
.testimonial-block-five .inner-box .content-box .info-box .rating-info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  padding: 5px 15px;
  border-radius: 35px;
  background-color: var(--theme-color1);
}
.testimonial-block-five .inner-box .content-box .info-box .rating-info .rating {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: var(--headings-color);
}
.testimonial-block-five .inner-box .content-box .info-box .rating-info .icon {
  font-size: 14px;
  line-height: 18px;
  color: var(--headings-color);
}

.testimonial-section-six .outer-box {
  position: relative;
  margin: 0px 30px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 9;
  background-color: var(--theme-color-white);
}
.testimonial-section-six .outer-box .shape-image {
  position: absolute;
  top: -92px;
  right: -41px;
  z-index: -1;
}
.testimonial-section-six .outer-box .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-section-six .outer-box .testimonial-prev-six,
.testimonial-section-six .outer-box .testimonial-next-six {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color2);
  border: 2px solid var(--theme-color2);
  color: var(--theme-color-white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 20px;
}
.testimonial-section-six .outer-box .testimonial-prev-six:hover,
.testimonial-section-six .outer-box .testimonial-next-six:hover {
  color: var(--headings-color);
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.testimonial-section-six .outer-box .inner-column .content-box {
  max-width: 770px;
  padding: 50px 20px;
}

.testimonial-block-six .text {
  font-size: 22px;
  line-height: 51px;
  font-weight: 400;
  color: var(--theme-color11);
  font-family: var(--title-font);
}
@media (max-width: 1599.98px) {
  .testimonial-block-six .text {
    font-size: 18px;
    line-height: 36px;
  }
}
.testimonial-block-six .info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
}
.testimonial-block-six .info .title {
  color: var(--theme-color2);
  margin-bottom: 0;
  font-size: 22px;
}
.testimonial-block-six .info .title span {
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  color: var(--theme-color11);
}
@media (max-width: 767.98px) {
  .testimonial-block-six .info {
    gap: 20px;
    max-width: 100%;
  }
  .testimonial-block-six .info img {
    width: 150px;
  }
}
@media (max-width: 575.98px) {
  .testimonial-block-six .text {
    font-size: 18px;
    line-height: 32px;
  }
}

.team-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.team-section .team-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.team-block .inner-box {
  position: relative;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 20px;
  background-color: var(--theme-color-white);
}
.team-block .inner-box .image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}
.team-block .inner-box .image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .inner-box .image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-135deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 65%, var(--theme-color1) 100%);
  content: "";
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  visibility: hidden;
}
.team-block .inner-box .content-box {
  padding: 20px 30px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 0 0 20px 20px;
}
.team-block .inner-box .content-box .title {
  margin-bottom: 0;
}
.team-block .inner-box .content-box .sub-title {
  font-weight: 600;
  color: var(--theme-color4);
  font-size: 14px;
  line-height: 28px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 0;
}
.team-block .inner-box .socials {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color4);
  color: var(--theme-color-white);
  position: absolute;
  right: 20px;
  bottom: 83px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .inner-box .socials .fa-plus {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .inner-box .socials ul {
  width: 40px;
  position: absolute;
  bottom: 45px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  visibility: hidden;
}
.team-block .inner-box .socials ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-block .inner-box .socials ul li:nth-child(2) {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block .inner-box .socials ul li:nth-child(3) {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block .inner-box .socials ul li:nth-child(4) {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .inner-box .socials ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme-color-white);
  color: var(--theme-color4);
  border-radius: 50%;
  display: inline-block;
}
.team-block .inner-box .socials ul li i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.team-block .inner-box .socials ul li:hover i {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.team-block .inner-box:hover {
  background-color: var(--theme-color4);
}
.team-block .inner-box:hover .image {
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .inner-box:hover .image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.team-block .inner-box:hover .image::after {
  opacity: 1;
  visibility: visible;
}
.team-block .inner-box:hover .content-box .title,
.team-block .inner-box:hover .content-box .sub-title {
  color: var(--theme-color-white);
}
.team-block .inner-box:hover .socials {
  background-color: var(--theme-color1);
  color: var(--theme-color4);
}
.team-block .inner-box:hover .socials .fa-plus {
  display: inline-block;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.team-block .inner-box:hover .socials ul {
  visibility: visible;
}
.team-block .inner-box:hover .socials ul li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  visibility: visible;
}

.team-section-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--headings-color);
}
.team-section-two .sec-shape {
  position: absolute;
  bottom: 40px;
  left: -230px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .team-section-two .sec-shape {
    display: none;
  }
}
.team-section-two .box-shape {
  width: 189px;
  height: 220px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.team-section-two .box-shape .box1 {
  height: 100%;
  width: 75px;
  background-color: rgba(53, 62, 71, 0.4);
  position: absolute;
  bottom: 0;
  right: 0;
}
.team-section-two .box-shape .box2 {
  width: 100%;
  height: 50px;
  background-color: rgba(53, 62, 71, 0.4);
  position: absolute;
  bottom: 0;
  left: 0;
}

.team-block-two .inner-box {
  text-align: center;
}
.team-block-two .inner-box .image-box {
  position: relative;
  z-index: 1;
}
.team-block-two .inner-box .image-box .image {
  overflow: hidden;
  border-radius: 6px;
}
.team-block-two .inner-box .image-box .image img {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 100%;
}
.team-block-two .inner-box .image-box .socials {
  width: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
  position: absolute;
  left: 0px;
  bottom: 0px;
  cursor: pointer;
  font-size: 24px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block-two .inner-box .image-box .socials ul {
  position: absolute;
  bottom: -7px;
  left: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
}
.team-block-two .inner-box .image-box .socials ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block-two .inner-box .image-box .socials ul li:nth-child(2) {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block-two .inner-box .image-box .socials ul li:nth-child(3) {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-two .inner-box .image-box .socials ul li:nth-child(4) {
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-block-two .inner-box .image-box .socials ul li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: var(--theme-color-white);
  color: #888888;
  font-size: 14px;
  display: inline-block;
}
.team-block-two .inner-box .image-box .socials ul li a:hover {
  color: var(--headings-color);
}
.team-block-two .inner-box .image-box .socials ul li i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.team-block-two .inner-box .image-box .socials ul li:hover i {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.team-block-two .inner-box .content-box {
  margin-top: 20px;
}
.team-block-two .inner-box .content-box .title {
  color: var(--theme-color-white);
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0;
}
.team-block-two .inner-box .content-box .title a:hover {
  letter-spacing: 1px;
}
.team-block-two .inner-box .content-box .sub-title {
  font-weight: 600;
  color: var(--theme-color1);
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0;
}
.team-block-two .inner-box:hover .socials ul {
  visibility: visible;
}
.team-block-two .inner-box:hover .socials ul li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  visibility: visible;
}
.team-block-two .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.team-section-three {
  background-color: var(--theme-color-light-green);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.team-section-three .floating-img {
  position: absolute;
  right: -300px;
  top: 170px;
}
.team-section-three .team-block-three .inner-box .image-box .socials {
  background-color: var(--theme-color6);
}
.team-section-three .team-three-text {
  position: absolute;
  bottom: 125px;
  left: -25px;
  z-index: -1;
}

.team-block-three .inner-box {
  text-align: center;
}
.team-block-three .inner-box .image-box {
  position: relative;
  z-index: 1;
}
.team-block-three .inner-box .image-box .image {
  overflow: hidden;
  border-radius: 12px;
}
.team-block-three .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-three .inner-box .image-box .socials {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  background-color: var(--theme-color2);
  border-radius: 12px;
  padding: 0 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-three .inner-box .image-box .socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
}
.team-block-three .inner-box .image-box .socials ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block-three .inner-box .image-box .socials ul li:nth-child(2) {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block-three .inner-box .image-box .socials ul li:nth-child(3) {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-three .inner-box .image-box .socials ul li:nth-child(4) {
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-block-three .inner-box .image-box .socials ul li a {
  width: 35px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--theme-color-white);
  font-size: 14px;
  display: inline-block;
}
.team-block-three .inner-box .image-box .socials ul li i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.team-block-three .inner-box .image-box .socials ul li:hover i {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.team-block-three .inner-box .content-box {
  padding: 30px 20px;
  border-radius: 0px 0px 12px 12px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block-three .inner-box .content-box .title {
  text-transform: capitalize;
  margin: 0;
}
.team-block-three .inner-box .content-box .title a:hover {
  color: var(--theme-color1);
}
.team-block-three .inner-box .content-box .sub-title {
  font-weight: 600;
  color: var(--theme-color2);
  line-height: 30px;
  text-transform: capitalize;
  font-size: 16px;
  margin: 0;
}
.team-block-three .inner-box:hover .socials {
  opacity: 1;
  visibility: visible;
}
.team-block-three .inner-box:hover .socials ul {
  visibility: visible;
}
.team-block-three .inner-box:hover .socials ul li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  visibility: visible;
}
.team-block-three .inner-box:hover .content-box {
  background-color: var(--theme-color-white);
}
.team-block-three .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.team-section-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.team-block-four .inner-box {
  padding: 10px;
  border-radius: 30px;
  background-color: var(--theme-color-white);
}
.team-block-four .inner-box .image-box {
  position: relative;
  z-index: 1;
}
.team-block-four .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.team-block-four .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-four .inner-box .image-box .image .shape-image {
  position: absolute;
  bottom: 0;
  left: 0;
}
.team-block-four .inner-box .content-box {
  position: relative;
  padding: 30px 20px;
}
.team-block-four .inner-box .content-box .title {
  text-transform: capitalize;
  margin: 0;
}
.team-block-four .inner-box .content-box .title a:hover {
  color: var(--theme-color1);
}
.team-block-four .inner-box .content-box .sub-title {
  font-weight: 600;
  color: var(--theme-color2);
  line-height: 30px;
  text-transform: capitalize;
  font-size: 16px;
  margin: 0;
}
.team-block-four .inner-box .content-box .socials {
  position: absolute;
  bottom: 45px;
  right: 10px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-four .inner-box .content-box .socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  visibility: hidden;
}
.team-block-four .inner-box .content-box .socials ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block-four .inner-box .content-box .socials ul li:nth-child(2) {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block-four .inner-box .content-box .socials ul li:nth-child(3) {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-block-four .inner-box .content-box .socials ul li:nth-child(4) {
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-block-four .inner-box .content-box .socials ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--theme-color10);
  background-color: var(--theme-color-white);
  border-radius: 50%;
  font-size: 12px;
  display: inline-block;
  -webkit-box-shadow: 3px 3px 10px 3px rgba(12, 12, 13, 0.1);
          box-shadow: 3px 3px 10px 3px rgba(12, 12, 13, 0.1);
}
.team-block-four .inner-box .content-box .socials ul li i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.team-block-four .inner-box .content-box .socials ul li:hover i {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.team-block-four .inner-box:hover .socials {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.team-block-four .inner-box:hover .socials ul {
  visibility: visible;
}
.team-block-four .inner-box:hover .socials ul li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  visibility: visible;
}
.team-block-four .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.team-five-area {
  overflow: hidden;
}
.team-five__wrp {
  max-width: 1290px;
  margin: 0 auto;
}
.team-five__item {
  position: relative;
  z-index: 1;
}
.team-five__item .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-five__item .content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--theme-color-white);
  text-align: center;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-five__item .content .title {
  margin-bottom: 5px;
}
.team-five__item .content .socials {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -40px;
  opacity: 0;
  visibility: hidden;
  color: var(--theme-color-white);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-five__item .content .socials a {
  color: var(--theme-color-white);
}
.team-five__item .content .socials a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.team-five__item:hover .content {
  padding: 40px 20px;
  border-radius: 10px;
  backdrop-filter: blur(20px);
  background-color: rgba(194, 194, 194, 0.4);
}
.team-five__item:hover .content .title {
  color: var(--theme-color-white);
}
.team-five__item:hover .content .sub-title {
  color: var(--theme-color-white);
}
.team-five__item:hover .content .socials {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}

/*** 

====================================================================
  video-section
====================================================================

***/
.video-section {
  position: relative;
  padding: 300px 0;
}
.video-section .bg-image:before {
  background-color: rgba(var(--theme-color-black-rgb), 0.4);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 575.98px) {
  .video-section {
    padding: 210px 0 80px;
  }
}
.video-section .btn-column .inner-column .play-now-two {
  border: none;
  background-color: rgba(var(--theme-color-white-rgb), 0.48);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--headings-color);
  display: inline-block;
  font-size: 30px;
  text-align: center;
  line-height: 162px;
  width: 162px;
  height: 162px;
  position: absolute;
  top: 120px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 575.98px) {
  .video-section .btn-column .inner-column .play-now-two {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}

/*** 

====================================================================
  video-section Two
====================================================================

***/
.video-section-two {
  position: relative;
  padding: 172px 0;
}
@media (max-width: 767.98px) {
  .video-section-two {
    padding: 120px 0;
  }
}
.video-section-two .bg-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(var(--theme-color-black-rgb), 0.7);
}
.video-section-two .sec-title {
  margin-bottom: 0;
}
.video-section-two .sec-title .sub-title {
  color: #D9D9D9;
}
.video-section-two .sec-title h2 {
  font-size: 60px;
  line-height: 1;
}
@media (max-width: 1399.98px) {
  .video-section-two .sec-title h2 {
    line-height: 1.3;
  }
}
@media (max-width: 767.98px) {
  .video-section-two .sec-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .video-section-two .sec-title h2 {
    font-size: 36px;
  }
}
.video-section-two .btn-box {
  margin-top: 30px;
}
.video-section-two .btn-box .play-now-two {
  background-color: transparent;
  border: 1px solid var(--theme-color-light);
  color: var(--theme-color1);
  position: relative;
  top: 0;
  font-size: 40px;
  width: 113px;
  height: 113px;
  text-align: center;
  line-height: 113px;
  border-radius: 50%;
  display: inline-block;
}

/*** 

====================================================================
  video-section Three
====================================================================

***/
.video-section-three {
  background-color: #1B1B1B;
  position: relative;
  padding: 119px 0 105px;
}
.video-section-three:before {
  background-image: url(../images/icons/shape-12.png);
  content: "";
  position: absolute;
  width: 859px;
  height: 629px;
  right: 0px;
  bottom: 0;
  pointer-events: none;
}
.video-section-three .sec-title {
  margin-bottom: 0;
}
.video-section-three .sec-title h2 {
  color: var(--theme-color-white);
}
.video-section-three .btn-box {
  margin-top: 20px;
  margin-left: 25px;
}
@media (max-width: 575.98px) {
  .video-section-three .btn-box {
    margin-left: 0;
  }
}
.video-section-three .btn-box .play-now-two {
  background-color: var(--theme-color-light);
  border: 1px solid var(--theme-color-light);
  color: var(--theme-color1);
  position: relative;
  top: 0;
  font-size: 34px;
  width: 106px;
  height: 106px;
  text-align: center;
  line-height: 106px;
  border-radius: 50%;
  display: inline-block;
}

/*** 

====================================================================
  video-section Four
====================================================================

***/
.video-section-four {
  position: relative;
  padding: 99px 0 66px;
}
.video-section-four .bg-image {
  z-index: -1;
}
.video-section-four .bg-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(var(--theme-color-black-rgb), 0.5);
}
.video-section-four .outer-box {
  margin: 0px -53px;
}
@media (max-width: 1399.98px) {
  .video-section-four .outer-box {
    margin: 0;
  }
}
.video-section-four .sec-title {
  margin-bottom: 58px;
}
.video-section-four .btn-box {
  margin-top: 30px;
  text-align: center;
}
.video-section-four .btn-box .play-now-two {
  border: none;
  background-color: rgba(var(--theme-color-white-rgb), 0.48);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--theme-color1);
  display: inline-block;
  font-size: 30px;
  text-align: center;
  line-height: 162px;
  width: 162px;
  height: 162px;
  position: relative;
  top: 0;
}
@media (max-width: 575.98px) {
  .video-section-four .btn-box .play-now-two {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
.video-section-four .info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 85px;
}
.video-section-four .info-text .inner-info {
  border-left: 1px solid rgba(var(--theme-color-white-rgb), 0.5);
  padding-left: 30px;
  max-width: 440px;
}
.video-section-four .info-text .inner-info .text {
  color: var(--theme-color-white);
  margin-bottom: 16px;
}
.video-section-four .info-text .inner-info .link {
  color: var(--theme-color-white);
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.video-section-four .info-text .inner-info .link:hover {
  color: var(--theme-color1);
}
.video-section-four .info-text .inner-info .link:hover .icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.video-section-four .info-text .inner-info .link .icon {
  font-size: 18px;
  margin-left: 8px;
  position: relative;
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section {
  position: relative;
  padding: 120px 0;
  background: #f8f5f0;
}
@media (max-width: 575.98px) {
  .rooms-section .sec-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .rooms-section .sec-title h2 {
    font-size: 32px;
  }
}

.room-block.col-lg-3 .inner-box .box-caption .bx-links li {
  margin-right: 3px;
}
.room-block .inner-box {
  position: relative;
}
.room-block .inner-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#222222), to(#222222));
  background: linear-gradient(to left, #222222, #222222);
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.room-block .inner-box:hover .box-caption {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.room-block .inner-box:hover .content-box {
  bottom: 84px;
  z-index: 9;
}
.room-block .inner-box:hover:before {
  opacity: 0.4;
  visibility: visible;
}
.room-block .inner-box:hover .image-box figure img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.room-block .inner-box .box-caption {
  position: absolute;
  left: 30px;
  width: calc(100% - 60px);
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.room-block .inner-box .box-caption .book-btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 14pxx;
  color: #ffffff;
  font-family: var(--text-font2);
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.room-block .inner-box .box-caption .book-btn:hover {
  background-color: var(--theme-color1);
  border-color: transparent;
}
.room-block .inner-box .box-caption .bx-links {
  margin-left: auto;
}
.room-block .inner-box .box-caption .bx-links li {
  display: inline-block;
  margin-right: 11px;
}
.room-block .inner-box .box-caption .bx-links li:last-child {
  margin-right: 0;
}
.room-block .inner-box .box-caption .bx-links li a {
  color: #fff;
  font-size: 16px;
}
.room-block .inner-box .image-box figure {
  margin-bottom: 27px;
  overflow: hidden;
}
.room-block .inner-box .image-box figure img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.room-block .inner-box .content-box {
  position: absolute;
  bottom: 22px;
  right: 32px;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9;
}
.room-block .inner-box .content-box .title {
  font-size: 27px;
  margin-bottom: -6px;
  color: var(--theme-color-light);
}
.room-block .inner-box .content-box .price {
  font-size: 14px;
  color: var(--theme-color-light);
}
@media (max-width: 991.98px) {
  .room-block .inner-box .image-box .image-2 img {
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.room-facility-list {
  position: relative;
}
.room-facility-list .icon {
  border: 1px solid var(--theme-color1);
  border-radius: 50%;
  display: block;
  font-size: 22px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.room-facility-list .list-one:hover .icon {
  background-color: var(--theme-color1);
  color: #fff;
}

.room-details__content-right {
  position: relative;
  display: block;
  margin-top: 40px;
}

.room-details__details-box {
  background-color: #f5f6f7;
  border: 1px solid var(--theme-color1);
  border-radius: 10px;
  padding: 43px 50px 30px 50px;
  position: relative;
  z-index: 1;
}

.product-details.rd-page .bx-wrapper {
  margin-bottom: 30px;
}
.product-details.rd-page .bx-wrapper .thumb-box li {
  height: auto;
}

@media only screen and (max-width: 480px) {
  .room-block .inner-box .box-caption .book-btn {
    padding: 0 10px;
    margin-right: 10px;
  }
  .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
    margin-right: 10px;
  }
  .rooms-section {
    padding: 80px 0;
  }
}
/***

====================================================================
    Product Section One
====================================================================

***/
.room-service-section {
  background-color: rgba(var(--theme-color1-rgb), 0.1);
}

.room-service-block-one .inner-box {
  background-color: var(--theme-color-light);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.room-service-block-one .inner-box:hover .image-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.room-service-block-one .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
}
.room-service-block-one .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .room-service-block-one .inner-box .image-box .image img {
    height: auto;
  }
}
.room-service-block-one .content-box {
  padding: 30px 30px 15px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .room-service-block-one .content-box {
    padding: 20px;
  }
}
.room-service-block-one .content-box .inner-box {
  border-bottom: 1px solid rgba(106, 105, 105, 0.2);
  margin-bottom: 25px;
  padding-bottom: 20px;
}
.room-service-block-one .content-box .title {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .room-service-block-one .content-box .title {
    font-size: 20px;
  }
}
.room-service-block-one .content-box .price {
  color: var(--theme-color1);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.room-service-block-one .content-box .facilities-box {
  position: relative;
}
.room-service-block-one .content-box .facilities-list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #818181;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 25px;
}
.room-service-block-one .content-box .facilities-list i {
  color: #818181;
  font-size: 24px;
}

/*** 

====================================================================
    Features Section
====================================================================

***/
.feature-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray2);
}
.feature-section.have-padding {
  padding-top: 340px;
}
.feature-section .shape {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.feature-section .shape img {
  width: 100%;
}

.feature-block .inner-box {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
  position: relative;
  z-index: 1;
}
.feature-block .inner-box::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  content: "";
  background-color: var(--theme-color1);
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  
}

    

    .feature-block .inner-box .title {
        line-height: 31px;
        text-transform: capitalize;
        margin: 0;
    }
    .feature-block .inner-box:hover .arry-btn {
        color: #fff !important
    }

    .feature-block .inner-box:hover svg path {
        fill: #fff !important
    }

    .feature-block .inner-box:hover .title {
        color: #fff !important
    }


.feature-block .inner-box .icon-box {
  margin: 20px 0;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.feature-block .inner-box .arry-btn {
  font-size: 16px;
  color: var(--theme-color2);
  font-weight: 500;
}
.feature-block .inner-box .arry-btn i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-left: 5px;
  color: var(--theme-color1);
  display: inline-block;
}
.feature-block .inner-box .arry-btn:hover i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.feature-block .inner-box:hover::after {
  width: 100%;
  left: 0;
  right: unset;
}
.feature-block .inner-box:hover .icon-box {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.feature-block .inner-box:hover .arry-btn i {
  color: var(--theme-color3);
}

/*** 

====================================================================
    Features Section Home Six Style
====================================================================

***/
.feature-two-home6 {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.feature-two__wrp {
  margin: 0 auto;
  max-width: 1500px;
}
.feature-two__item {
  padding: 50px 0px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .feature-two__item {
    padding: 30px 0 0;
  }
}
.feature-two__item .feature__icon {
  height: 65px;
  width: 80px;
}
.feature-two__item .feature__content .title {
  margin-bottom: 30px;
  margin-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.feature-two__item .feature__content .title:before {
  background-color: var(--theme-color-black);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 100px;
  width: 5px;
}
.feature-two__item .feature__content .title:after {
  background-color: rgba(var(--theme-color-black-rgb), 0.1);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 102px;
  width: 110%;
}
@media (max-width: 991.98px) {
  .feature-two__item .feature__content .title:after {
    width: 100%;
  }
}
.feature-two__item:hover .feature__icon {
  -webkit-animation: iconHover1 0.5s ease-out;
          animation: iconHover1 0.5s ease-out;
}
.feature-two__text {
  background-color: var(--theme-color7);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 76px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 720px;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .feature-two__text {
    border-radius: 8px;
    display: block;
    height: auto;
    padding: 30px;
  }
}
.feature-two__text .icon {
  background-color: var(--theme-color-white);
  border-radius: 50px;
  height: 65px;
  left: 8px;
  line-height: 65px;
  position: absolute;
  text-align: center;
  width: 65px;
}
@media (max-width: 767.98px) {
  .feature-two__text .icon {
    display: inline-block;
    left: 0;
    margin-bottom: 20px;
    position: relative;
  }
}
.feature-two__text .text {
  color: var(--theme-color-white);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  margin-left: 30px;
}
@media (max-width: 767.98px) {
  .feature-two__text .text {
    margin-left: 0;
  }
}
.feature-two__text .text a {
  color: var(--theme-color6);
  font-weight: 600;
  text-decoration: underline;
}
.feature-two__text .text span {
  color: var(--theme-color6);
  font-size: 18px;
}

.professional-area {
  overflow: hidden;
}
.professional-area .floating-img2 {
  left: 0;
  position: absolute;
  top: 0;
}
.professional-area .floating-img {
  bottom: 0;
  left: 0;
  position: absolute;
}
.professional__image {
  position: relative;
  z-index: 1;
}
.professional__image img {
  width: 100%;
}
.professional__image .content {
  background-color: rgba(var(--theme-color-white-rgb), 0.3);
  backdrop-filter: blur(10px);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  left: 0;
  max-width: 500px;
  padding: 41px 40px 36px;
  position: absolute;
  width: 100%;
}
@media (max-width: 575.98px) {
  .professional__image .content {
    gap: 10px;
    padding: 20px;
  }
}
@media (max-width: 374.98px) {
  .professional__image .content {
    display: block;
  }
}
.professional__image .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .professional__image .content ul {
    gap: 10px;
  }
}
.professional__image .content ul svg {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.professional__image .content ul:hover svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.professional__image .content .icon {
  background-color: var(--theme-color-white);
  border-radius: 50%;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.professional__image .content .info .title {
  color: var(--theme-color-white);
  line-height: 25px;
  margin-bottom: 0;
}
.professional__image .content .info .title span {
  color: inherit;
}
.professional__image .content .info .text {
  color: var(--theme-color-white);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: capitalize;
}
@media (max-width: 575.98px) {
  .professional__image .content .info .text {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 0;
  }
}
.professional__image .content .last-item {
  padding-left: 30px;
}
@media (max-width: 575.98px) {
  .professional__image .content .last-item {
    padding-left: 10px;
  }
}
@media (max-width: 374.98px) {
  .professional__image .content .last-item {
    padding-left: 0px;
  }
}
.professional__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  height: 100%;
  padding-left: 130px;
  padding-right: 100px;
}
@media (max-width: 1899.98px) {
  .professional__content {
    padding-right: 30px;
  }
}
@media (max-width: 1499.98px) {
  .professional__content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199.98px) {
  .professional__content {
    margin-top: 40px;
    padding: 50px 30px;
  }
}
.professional__content ul li {
  color: var(--theme-color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.professional__content ul li .icon {
  background-color: rgba(var(--theme-color-white-rgb), 0.13);
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
}
.professional__content ul li i {
  border-radius: 50%;
  color: var(--theme-color-white);
  font-size: 10px;
}
.professional__content ul li:not(.last-child) {
  margin-bottom: 15px;
}
.professional__wrp {
  margin-top: 50px;
  padding-top: 90px;
}
@media (max-width: 991.98px) {
  .professional__wrp {
    padding-top: 40px;
  }
}
.professional__item, .professional__item-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 575.98px) {
  .professional__item, .professional__item-last {
    gap: 20px;
  }
  .professional__item .icon svg, .professional__item-last .icon svg {
    width: 60px;
  }
}
.professional__item .title, .professional__item-last .title {
  margin-bottom: 10px;
}
.professional__item .text, .professional__item-last .text {
  line-height: 28px;
}
.professional__item:hover .icon svg, .professional__item-last:hover .icon svg {
  -webkit-animation: flipInY 1s forwards;
          animation: flipInY 1s forwards;
}
.professional__item-last {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 50px;
}
.professional__item-last .title {
  line-height: 38px;
}
.professional__item-last .item-btn {
  color: var(--headings-color);
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 16px;
  margin-top: 15px;
  text-transform: uppercase;
}

/*** 

====================================================================
  Call Section
====================================================================

***/
.call-to-action {
  background-color: #f8f5f0;
  position: relative;
  padding: 120px 0;
}
.call-to-action:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 327px;
  height: 493px;
  background-image: url(../images/icons/shape-10.png);
}
@media (max-width: 1199.98px) {
  .call-to-action:before {
    display: none;
  }
}
.call-to-action .sec-title .sub-title {
  margin-left: 50px;
}

/*** 

====================================================================
    News Section
====================================================================

***/
.news-section {
  position: relative;
  padding: 127px 0 51px;
}
.news-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 630px;
  height: 576px;
  background-image: url(../images/icons/bg-shape.png);
  background-repeat: no-repeat;
  opacity: 0.7;
}
@media (max-width: 1399.98px) {
  .news-section:before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .news-section .sec-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .news-section .sec-title .sub-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .news-section .sec-title h2 {
    font-size: 29px;
  }
}

.news-block {
  position: relative;
  margin-bottom: 30px;
}
.news-block .inner-box {
  position: relative;
}
.news-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block .inner-box:hover .image-box .date {
  bottom: 40px;
}
.news-block .inner-box .image-box {
  position: relative;
}
.news-block .inner-box .image-box .image {
  overflow: hidden;
}
.news-block .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block .inner-box .image-box .date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 14px;
  height: 85px;
  width: 45px;
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
  display: inline-block;
  text-align: center;
  padding-top: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block .inner-box .image-box .date small {
  font-size: 24px;
  margin-top: -4px;
  display: inline-block;
}
.news-block .inner-box .content-box {
  position: relative;
  background-color: #fff;
  padding: 21px 0px 21px 30px;
  margin-left: 60px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: -100px;
}
@media (max-width: 575.98px) {
  .news-block .inner-box .content-box {
    padding: 21px 0px 21px 20px;
  }
}
.news-block .inner-box .content-box .post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3px;
}
.news-block .inner-box .content-box .post-info li {
  position: relative;
  font-size: 12px;
  color: #666666;
  margin-right: 17px;
}
.news-block .inner-box .content-box .post-info li:last-child {
  margin-right: 0;
}
.news-block .inner-box .content-box .post-info li i {
  color: var(--theme-color1);
  margin-right: 7px;
}
.news-block .inner-box .content-box .title {
  color: var(--theme-color-dark);
  margin-bottom: 12px;
}
@media (max-width: 575.98px) {
  .news-block .inner-box .content-box .title {
    font-size: 22px;
  }
}
.news-block .inner-box .content-box .title:hover a {
  color: var(--theme-color1);
}
.news-block .inner-box .content-box .read-more {
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  color: var(--theme-color-dark);
  background-color: #f8f5f0;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--text-font2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 99;
}
.news-block .inner-box .content-box .read-more:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color1);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: -1;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.news-block .inner-box .content-box .read-more:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.news-block .inner-box .content-box .read-more i {
  position: relative;
  top: 0px;
  margin-left: 10px;
}
.news-block .inner-box .content-box .read-more:hover {
  color: #fff;
}
.news-block .inner-box .content-box .read-more:hover i {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*** 

====================================================================
    News Section two
====================================================================

***/
.news-section-two {
  position: relative;
  padding: 120px 0 90px;
}
.news-section-two::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 712px;
  height: 544px;
  background-image: url(../images/resource/pattern-4.png);
}
@media (max-width: 575.98px) {
  .news-section-two .sec-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .news-section-two .sec-title .sub-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .news-section-two .sec-title h2 {
    font-size: 29px;
  }
}

.news-block-two {
  position: relative;
  margin-bottom: 30px;
}
.news-block-two .inner-box {
  position: relative;
}
.news-block-two .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block-two .inner-box .image-box {
  position: relative;
}
.news-block-two .inner-box .image-box .image {
  overflow: hidden;
}
.news-block-two .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block-two .inner-box .image-box .date {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 14px;
  height: 85px;
  width: 45px;
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  display: inline-block;
  text-align: center;
  padding-top: 14px;
}
.news-block-two .inner-box .image-box .date small {
  font-size: 24px;
  display: block;
}
.news-block-two .inner-box .content-box {
  position: relative;
  background-color: var(--theme-color-light);
  -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
          box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
  padding: 20px 0px 0 34px;
  margin: 0 25px;
  margin-top: -100px;
}
@media (max-width: 575.98px) {
  .news-block-two .inner-box .content-box {
    padding: 21px 0px 0 20px;
  }
}
.news-block-two .inner-box .content-box .info-box {
  padding-left: 82px;
  margin-bottom: 16px;
}
.news-block-two .inner-box .content-box .info-box .thumb {
  position: absolute;
  left: 30px;
  top: -25px;
  display: inline-block;
  border: 2px solid var(--theme-color1);
}
.news-block-two .inner-box .content-box .info-box .designation {
  font-size: 14px;
}
.news-block-two .inner-box .content-box .title {
  color: var(--theme-color-dark);
  margin-bottom: 18px;
}
@media (max-width: 1199.98px) {
  .news-block-two .inner-box .content-box .title {
    font-size: 20px;
  }
}
.news-block-two .inner-box .content-box .title:hover a {
  color: var(--theme-color1);
}
.news-block-two .inner-box .content-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #f8f5f0;
  margin-left: -34px;
  padding-left: 34px;
}
.news-block-two .inner-box .content-box .btn-box .read-more {
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  color: var(--theme-color-dark);
  background-color: #f8f5f0;
  padding: 8px 20px 9px 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--text-font2);
  letter-spacing: 1.5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 99;
  transition: all 0.3s ease;
}
.news-block-two .inner-box .content-box .btn-box .read-more:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--bg-theme-color1);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.news-block-two .inner-box .content-box .btn-box .read-more:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.news-block-two .inner-box .content-box .btn-box .read-more i {
  position: relative;
  top: 0px;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block-two .inner-box .content-box .btn-box .read-more:hover {
  color: #fff;
}
.news-block-two .inner-box .content-box .btn-box .read-more:hover i {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block-two .inner-box .content-box .btn-box span {
  font-size: 12px;
  color: var(--text-color);
}
.news-block-two .inner-box .content-box .btn-box span .icon {
  color: var(--theme-color1);
  margin-right: 7px;
}

@media only screen and (max-width: 480px) {
  .news-block .inner-box .content-box .title {
    font-size: 20px;
    padding-right: 10px;
  }
}
/*** 

====================================================================
  News Section three
====================================================================

***/
.news-section-three {
  padding: 120px 0 90px;
  position: relative;
}
.news-section-three::before {
  background-image: url(../images/resource/pattern-4.png);
  bottom: 0;
  content: "";
  height: 544px;
  left: 0;
  position: absolute;
  width: 712px;
}
@media (max-width: 575.98px) {
  .news-section-three .sec-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .news-section-three .sec-title .sub-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .news-section-three .sec-title h2 {
    font-size: 29px;
  }
}

.news-block-three {
  margin-bottom: 30px;
  position: relative;
}
.news-block-three .inner-box {
  position: relative;
}
.news-block-three .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-block-three .inner-box .image-box {
  position: relative;
}
.news-block-three .inner-box .image-box .image {
  overflow: hidden;
}
.news-block-three .inner-box .image-box .image img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.news-block-three .inner-box .content-box {
  padding: 20px 0 0 0;
  position: relative;
}
@media (max-width: 575.98px) {
  .news-block-three .inner-box .content-box {
    padding: 21px 0 0 0;
  }
}
.news-block-three .inner-box .content-box .post-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 19px;
  margin-left: 53px;
}
.news-block-three .inner-box .content-box .post-meta li {
  position: relative;
}
.news-block-three .inner-box .content-box .post-meta .categories:hover a {
  color: var(--theme-color1);
}
.news-block-three .inner-box .content-box .post-meta .categories:before {
  border-bottom: 2px solid #222222;
  bottom: 13px;
  content: "";
  left: -53px;
  position: absolute;
  width: 43px;
}
.news-block-three .inner-box .content-box .post-meta .categories a {
  color: #222222;
  font-family: "Gilda Display";
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}
.news-block-three .inner-box .content-box .post-meta .date {
  color: #6A6F78;
  font-family: "Barlow";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-left: 36px;
}
.news-block-three .inner-box .content-box .post-meta .date:before {
  background-color: #AAA9A8;
  bottom: 10px;
  bottom: 13px;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: -20px;
  position: absolute;
  width: 4px;
}
.news-block-three .inner-box .content-box .title {
  color: var(--theme-color-dark);
  margin-bottom: 18px;
  padding-left: 50px;
}
@media (max-width: 1199.98px) {
  .news-block-three .inner-box .content-box .title {
    font-size: 20px;
  }
}
.news-block-three .inner-box .content-box .title:hover a {
  color: var(--theme-color1);
}

.news-block-four {
  margin-bottom: 40px;
}
.news-block-four .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-four .inner-box:hover .image-box .image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
          transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.news-block-four .inner-box:hover .image-box .image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
          transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.news-block-four .image-box {
  position: relative;
}
.news-block-four .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.news-block-four .image-box .image img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-block-four .image-box .image img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
          transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.news-block-four .image-box .date {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 72px;
  display: block;
  z-index: 3;
}
.news-block-four .image-box .date strong {
  position: relative;
  display: block;
  width: 72px;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--title-font);
  padding: 5px 0 13px;
  line-height: 1;
  color: var(--theme-color-light);
  background-color: var(--theme-color1);
  text-align: center;
}
.news-block-four .image-box .date strong span {
  display: block;
  font-size: 14px;
  font-family: var(--text-font);
  margin-top: 4px;
}
.news-block-four .content-box {
  margin-top: 22px;
}
.news-block-four .content-box .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin-left: 47px;
  margin-bottom: 18px;
}
.news-block-four .content-box .post-meta li {
  position: relative;
  font-weight: 400;
}
.news-block-four .content-box .post-meta .categories:hover a {
  color: var(--theme-color1);
}
.news-block-four .content-box .post-meta .categories:before {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--theme-color1);
  width: 37px;
  left: -47px;
  bottom: 11px;
}
.news-block-four .content-box .post-meta .categories a {
  color: var(--theme-color1);
}
.news-block-four .content-box .post-meta .date {
  color: var(--theme-color1);
  margin-left: 21px;
}
.news-block-four .content-box .post-meta .date:before {
  bottom: 10px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: -13px;
}
.news-block-four .content-box .title {
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .news-block-four .content-box .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.news-block-four .content-box .title:hover {
  color: var(--theme-color1);
}
.news-block-four .content-box .read-more {
  color: var(--theme-color-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  font-family: var(--title-font);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-four .content-box .read-more:before {
  background-color: var(--theme-color-dark);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  right: -60px;
  bottom: 0;
  width: 51px;
}
.news-block-four .content-box .read-more:after {
  background-color: var(--theme-color1);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  right: -9px;
  bottom: 0;
  width: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-four .content-box .read-more:hover {
  color: var(--theme-color1);
}
.news-block-four .content-box .read-more:hover:after {
  right: -60px;
  width: 51px;
}
.news-block-four .content-box .read-more:hover .icon {
  color: var(--theme-color1);
}
.news-block-four .content-box .read-more .icon {
  color: var(--theme-color-dark);
  font-size: 12px;
  position: absolute;
  bottom: 6px;
  right: -62px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nice-select {
  width: 100%;
  border-radius: 5px;
  height: 58px;
  line-height: 58px;
  border: 1px solid #e4e4e4;
}
.nice-select::after {
  display: none;
}
.nice-select::before {
  font-family: "Font Awesome 6 pro";
  content: "\f107";
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 15px;
  color: var(--theme-color-black);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.nice-select.open::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.nice-select:focus {
  border: 1px solid var(--theme-color1);
}
.nice-select .list {
  width: 100%;
}
.nice-select .current {
  font-size: 16px;
  color: var(--theme-color-black);
}

/*** 

====================================================================
		FAQ's Section
====================================================================

***/
.faq-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color4);
}
.faq-section .sec-title .text {
  font-size: 16px;
  line-height: 28.8px;
}
.faq-section .image-column .inner-column {
  height: 100%;
}
.faq-section .image-column .inner-column .image {
  height: 100%;
}
.faq-section .image-column .inner-column .image img {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.faq-section .content-column .inner-column {
  padding: 120px 80px;
  position: relative;
  z-index: 1;
}
.faq-section .content-column .inner-column .map-shape {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}
@media (max-width: 1399.98px) {
  .faq-section .content-column .inner-column {
    padding: 60px 30px;
  }
}
@media (max-width: 1399.98px) {
  .faq-section .content-column .inner-column {
    padding: 60px 15px;
  }
}
.faq-section:hover .image-column .image img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.faq-accordion .accordion .accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #0f2727;
  overflow: hidden;
}
.faq-accordion .accordion .accordion-item .accordion-header button {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0 !important;
  padding: 15px 30px;
  font-family: var(--title-font);
  color: var(--theme-color-white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.faq-accordion .accordion .accordion-item .accordion-body {
  padding: 30px;
}
.faq-accordion .accordion .accordion-item .accordion-body .text {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  color: rgba(var(--theme-color-white-rgb), 0.52);
}
.faq-accordion .accordion .accordion-button {
  background-color: #00715d;
}
.faq-accordion .accordion .accordion-button::after {
  display: none;
}
.faq-accordion .accordion .accordion-button::before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 15px;
  right: 15px;
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0px;
  color: var(--theme-color-white);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-accordion .accordion .accordion-button.collapsed {
  background-color: transparent;
}
.faq-accordion .accordion .accordion-button.collapsed::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/*** 

====================================================================
		FAQ's Section two
====================================================================

***/
.faq-section-two {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .faq-section-two {
    margin-top: 0;
    padding: 60px 0;
  }
}
.faq-section-two .sec-title {
  max-width: 570px;
}
.faq-section-two .sec-title .text {
  font-size: 16px;
  line-height: 30px;
}
.faq-section-two .image-column .inner-column {
  position: relative;
  z-index: 1;
}
.faq-section-two .image-column .inner-column .image {
  border-radius: 40px;
  overflow: hidden;
}
.faq-section-two .image-column .inner-column .image img {
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.faq-section-two .image-column .inner-column .info {
  position: absolute;
  bottom: -60px;
  left: -145px;
}
.faq-section-two .image-column .inner-column .shape {
  position: absolute;
  top: -60px;
  left: -60px;
}
.faq-section-two .image-column .inner-column::after {
  position: absolute;
  bottom: 110px;
  left: -40px;
  width: 12px;
  height: 535px;
  border-radius: 12px;
  background-color: var(--theme-color1);
  content: "";
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .faq-section-two .image-column .inner-column .info {
    left: -70px;
  }
}
@media (max-width: 575.98px) {
  .faq-section-two .image-column .inner-column .info {
    left: -10px;
  }
  .faq-section-two .image-column .inner-column .info img {
    max-width: 200px;
  }
  .faq-section-two .image-column .inner-column .shape {
    display: none;
  }
  .faq-section-two .image-column .inner-column::after {
    display: none;
  }
}
.faq-section-two .content-column .inner-column {
  margin-left: -110px;
  margin-bottom: 8px;
  padding: 70px;
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
          box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
  border-radius: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .faq-section-two .content-column .inner-column {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .faq-section-two .content-column .inner-column {
    padding: 30px 12px;
  }
}

.faq-two-accordion .accordion .accordion-item {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq-two-accordion .accordion .accordion-item .accordion-header button {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0 !important;
  padding: 15px 20px;
  padding-bottom: 0;
  font-family: var(--title-font);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: var(--headings-color);
}
.faq-two-accordion .accordion .accordion-item .accordion-header button .number {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--theme-color2);
  margin-right: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .faq-two-accordion .accordion .accordion-item .accordion-header button .number {
    display: none;
  }
}
.faq-two-accordion .accordion .accordion-item .accordion-body {
  padding: 30px;
  padding-left: 90px;
  padding-top: 0;
}
.faq-two-accordion .accordion .accordion-item .accordion-body .text {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 575.98px) {
  .faq-two-accordion .accordion .accordion-item .accordion-body {
    padding-left: 20px;
    padding-top: 15px;
  }
  .faq-two-accordion .accordion .accordion-item .accordion-body .text {
    font-size: 14px;
    line-height: 26px;
  }
}
.faq-two-accordion .accordion .accordion-button {
  background-color: transparent;
}
.faq-two-accordion .accordion .accordion-button::after {
  display: none;
}
.faq-two-accordion .accordion .accordion-button::before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 15px;
  right: 15px;
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0px;
  color: var(--headings-color);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-two-accordion .accordion .accordion-button.collapsed {
  background-color: transparent;
  padding-bottom: 15px !important;
}
.faq-two-accordion .accordion .accordion-button.collapsed .number {
  background-color: var(--bg-theme-color1) !important;
}
.faq-two-accordion .accordion .accordion-button.collapsed::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/*** 

====================================================================
		FAQ's Section three
====================================================================

***/
.faq-section-three {
  position: relative;
  z-index: 1;
}
.faq-section-three .sec-title {
  max-width: 570px;
}
.faq-section-three .sec-title .text {
  font-size: 16px;
  line-height: 30px;
}
.faq-section-three .image-column .inner-column {
  position: relative;
  z-index: 1;
}
.faq-section-three .image-column .inner-column .image {
  border-radius: 40px;
  overflow: hidden;
}
.faq-section-three .image-column .inner-column .image img {
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.faq-section-three .image-column .inner-column .info {
  position: absolute;
  bottom: -60px;
  left: -145px;
}
.faq-section-three .image-column .inner-column .shape {
  position: absolute;
  top: -60px;
  left: -60px;
}
@media (max-width: 575.98px) {
  .faq-section-three .image-column .inner-column .shape {
    display: none;
  }
}
.faq-section-three .image-column .inner-column::after {
  position: absolute;
  bottom: 110px;
  left: -40px;
  width: 12px;
  height: 535px;
  border-radius: 12px;
  background-color: var(--theme-color1);
  content: "";
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .faq-section-three .image-column .inner-column .info {
    left: -70px;
  }
}
@media (max-width: 575.98px) {
  .faq-section-three .image-column .inner-column .info {
    left: -10px;
  }
  .faq-section-three .image-column .inner-column .info img {
    max-width: 200px;
  }
  .faq-section-three .image-column .inner-column .shape {
    display: none;
  }
  .faq-section-three .image-column .inner-column::after {
    display: none;
  }
}
.faq-section-three .content-column .inner-column {
  margin-left: -110px;
  margin-bottom: 8px;
  padding: 70px;
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
          box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
  border-radius: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .faq-section-three .content-column .inner-column {
    margin-left: 0;
    padding: 50px 30px;
    margin-bottom: 80px;
  }
}
@media (max-width: 991.98px) {
  .faq-section-three .content-column .inner-column {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .faq-section-three .content-column .inner-column {
    padding: 70px 12px;
  }
}

.pricing-section {
  overflow: hidden;
}
.pricing-section.have-after {
  position: relative;
  z-index: 1;
}
.pricing-section.have-after::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32%;
  content: "";
  background-color: var(--theme-color-gray2);
  z-index: -1;
}

.pricing-tab .nav {
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--theme-color-white);
  gap: 10px;
  margin: 0 auto;
  border-radius: 50px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(18, 20, 32, 0.1411764706);
          box-shadow: 0px 1px 1px 0px rgba(18, 20, 32, 0.1411764706);
  padding: 5px;
}
.pricing-tab .nav .nav-item .nav-link {
  border: none;
  font-family: var(--font-title);
  color: var(--text-color);
  padding: 11px 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  border-radius: 50px;
}
.pricing-tab .nav .nav-item .nav-link.active {
  background-color: var(--theme-color1);
  color: var(--headings-color);
}

.pricing-block .inner-box {
  padding: 20px;
  padding-top: 50px;
  padding-bottom: 35px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
  background-color: var(--theme-color-white);
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.pricing-block .inner-box .head {
  max-width: 270px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8eaf1;
}
.pricing-block .inner-box .head .icon {
  margin-bottom: 15px;
}
.pricing-block .inner-box .head .title {
  margin-bottom: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .inner-box .head .sub-title {
  font-size: 14px;
  line-height: 14px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .inner-box svg path {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .inner-box .list {
  padding-top: 10px;
  max-width: 270px;
  margin: 0 auto;
}
.pricing-block .inner-box .list li {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .inner-box .btn-one-rounded {
  width: 100%;
  max-width: 310px;
}
.pricing-block.active .inner-box {
  background-color: var(--theme-color2);
  position: relative;
  z-index: 1;
}
.pricing-block.active .inner-box .tag {
  text-transform: uppercase;
  font-family: var(--title-font);
  color: var(--theme-color-black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0px 55px;
  background-color: var(--theme-color1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 35px;
  right: -55px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pricing-block.active .inner-box .head {
  border-bottom: 1px solid rgba(232, 234, 241, 0.502);
}
.pricing-block.active .inner-box .head .title {
  color: var(--theme-color-white);
}
.pricing-block.active .inner-box .head .sub-title {
  color: #c9c9c9;
}
.pricing-block.active .inner-box svg path {
  fill: var(--theme-color-white);
}
.pricing-block.active .inner-box i {
  color: var(--theme-color-white);
}
.pricing-block.active .inner-box .list li {
  color: var(--theme-color-white);
}
.pricing-block.active .inner-box .btn-one-rounded {
  color: var(--theme-color-white);
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
}
.pricing-block:hover .inner-box {
  background-color: var(--theme-color2);
}
.pricing-block:hover .inner-box .head {
  border-bottom: 1px solid rgba(232, 234, 241, 0.502);
}
.pricing-block:hover .inner-box .head .title {
  color: var(--theme-color-white);
}
.pricing-block:hover .inner-box .head .sub-title {
  color: #c9c9c9;
}
.pricing-block:hover .inner-box svg path {
  fill: var(--theme-color-white);
}
.pricing-block:hover .inner-box i {
  color: var(--theme-color-white);
}
.pricing-block:hover .inner-box .list li {
  color: var(--theme-color-white);
}
.pricing-block:hover .inner-box .btn-one-rounded {
  color: var(--theme-color-white);
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
}

.pricing-section-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.pricing-section-two.have-after {
  position: relative;
  z-index: 1;
}
.pricing-section-two.have-after::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background-color: var(--theme-color2);
  content: "";
  z-index: -1;
}
.pricing-section-two .sec-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.pricing-section-two .sec-shape img {
  width: 100%;
}

.pricing-block-two .popular {
  background-color: var(--theme-color2);
  padding: 10px;
  padding-bottom: 30px;
  border-radius: 20px 20px 0 0;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--theme-color-white);
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  margin-bottom: -25px;
}
.pricing-block-two .inner-box {
  background-color: var(--theme-color-white);
  padding: 45px;
  border: 1px solid rgba(var(--theme-color5-rgb), 0.1);
  border-radius: 20px;
  padding-top: 55px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 10px 37px 0px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0px 10px 37px 0px rgba(0, 0, 0, 0.0588235294);
}
.pricing-block-two .inner-box .shape {
  position: absolute;
  top: 40px;
  right: 14px;
  z-index: -1;
}
.pricing-block-two .inner-box .top .title {
  display: inline-block;
  padding: 0 25px;
  border-radius: 7px;
  color: var(--theme-color-white);
  font-weight: 600;
  background-color: var(--theme-color2);
}
.pricing-block-two .inner-box .top .sub-title {
  font-size: 16px;
  line-height: 30px;
  margin-top: 15px;
  color: #4b5563;
  margin-bottom: 0;
}
.pricing-block-two .inner-box .list {
  padding: 45px 0;
  padding-left: 15px;
}
.pricing-block-two .inner-box .list li {
  color: var(--theme-color5);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.pricing-block-two .inner-box .list li::after {
  position: absolute;
  top: 5px;
  left: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  content: "";
}
.pricing-block-two .inner-box .list li:not(:last-child) {
  margin-bottom: 25px;
}
.pricing-block-two .inner-box .list li:nth-last-child(1), .pricing-block-two .inner-box .list li:nth-last-child(2) {
  color: #d9dcdf;
}
.pricing-block-two .inner-box .bottom {
  border-top: 1px solid rgba(var(--theme-color5-rgb), 0.1);
  padding-top: 30px;
}
.pricing-block-two .inner-box .bottom .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
}
.pricing-block-two .inner-box .bottom .title span {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
}
.pricing-block-two .inner-box .bottom .sub-title {
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 10px;
  margin-bottom: 0;
}
.pricing-block-two .inner-box .btn-one-rounded {
  color: var(--theme-color5);
  width: 100%;
}
.pricing-block-two .inner-box .btn-one-light {
  border: 1px solid rgba(36, 37, 73, 0.102);
  width: 100%;
}

/***

==================================================================
    Pricing Section Six
==================================================================

***/
.pricing-section-six {
  position: relative;
  z-index: 9;
}
.pricing-section-six .pricing-circle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .pricing-section-six .pricing-circle {
    display: none;
  }
}
.pricing-section-six .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  padding: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 225px;
  margin: 30px auto 30px;
}
.pricing-section-six .nav .nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #595B62;
  font-family: var(--titlt-font);
  padding: 13px 23px;
  line-height: 1;
  border-radius: 30px;
}
.pricing-section-six .nav .nav-link.active {
  background-color: var(--theme-color1);
  color: var(--headings-color);
  -webkit-box-shadow: 0px 2px 2px -1px rgba(89, 86, 233, 0.15), 0px 0px 1px 0px rgba(89, 86, 233, 0.1);
          box-shadow: 0px 2px 2px -1px rgba(89, 86, 233, 0.15), 0px 0px 1px 0px rgba(89, 86, 233, 0.1);
}

@media (max-width: 991.98px) {
  .pricing-wrapper-six .pricing-content {
    margin-bottom: 30px;
  }
}
.pricing-wrapper-six .pricing-content p {
  max-width: 339px;
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .pricing-wrapper-six .pricing-content p {
    max-width: inherit;
  }
}
.pricing-wrapper-six .pricing-card-item {
  background-color: var(--theme-color-white);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .pricing-wrapper-six .pricing-card-item {
    display: block;
    padding: 30px;
    padding-top: 0;
  }
}
.pricing-wrapper-six .pricing-card-item::before {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  bottom: 0;
  content: "";
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 0 0 35px;
  text-align: center;
  width: 246px;
}
@media (max-width: 575.98px) {
  .pricing-wrapper-six .pricing-card-item .pricing-left-ber {
    border-right: none;
    padding: 0;
    width: auto;
  }
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-icon {
  display: inline-block;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 9;
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-icon svg path {
  fill: var(--headings-color);
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 102px;
  height: 102px;
  background-color: #F5F5F5;
  border-radius: 100%;
  z-index: -1;
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-icon::after {
  background-color: var(--theme-color6);
  border-radius: 100%;
  content: "";
  height: 34px;
  position: absolute;
  right: -7px;
  top: 13px;
  width: 34px;
  z-index: -1;
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-icon img {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-header {
  margin-top: 75px;
}
@media (max-width: 575.98px) {
  .pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-header {
    margin-top: 60px;
  }
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-header .plan {
  color: var(--headings-color);
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.pricing-wrapper-six .pricing-card-item .pricing-left-ber .pricing-header .price {
  color: var(--headings-color);
  font-family: var(--title-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.03em;
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 30px;
  padding-right: 60px;
  width: 100%;
  z-index: 0;
}
@media (max-width: 1199.98px) {
  .pricing-wrapper-six .pricing-card-item .pricing-right-ber {
    padding-right: 30px;
  }
}
@media (max-width: 1199.98px) {
  .pricing-wrapper-six .pricing-card-item .pricing-right-ber {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .pricing-wrapper-six .pricing-card-item .pricing-right-ber {
    padding: 0;
  }
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .pricing-list li {
  color: var(--headings-color);
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .pricing-list li i {
  margin-right: 10px;
  color: #144443;
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .pricing-list li.disable {
  color: rgba(0, 0, 0, 0.5);
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .pricing-list li.disable i {
  color: #000;
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .theme-btn {
  position: relative;
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .theme-btn.btn-style-one {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#BEEC6B), to(#169C92));
  background: linear-gradient(90deg, #BEEC6B 0%, #169C92 100%);
  border-radius: 100px;
  color: var(--theme-color-white);
  height: 60px;
  line-height: 10px;
  padding: 26px 30px;
  padding-right: 80px;
}
@media (max-width: 575.98px) {
  .pricing-wrapper-six .pricing-card-item .pricing-right-ber .theme-btn.btn-style-one {
    height: 57px;
    padding: 26px 42px;
    padding-right: 42px;
    padding-right: 88px;
  }
}
.pricing-wrapper-six .pricing-card-item .pricing-right-ber .theme-btn.btn-style-one:hover {
  color: var(--headings-color);
}
.pricing-wrapper-six .pricing-card-item:hover {
  background-color: var(--theme-color2);
}
.pricing-wrapper-six .pricing-card-item:hover .btn-two-rounded {
  color: var(--headings-color);
}
.pricing-wrapper-six .pricing-card-item:hover .btn-two-rounded::after {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-header .plan,
.pricing-wrapper-six .pricing-card-item:hover .pricing-header .price {
  color: var(--theme-color-white);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-left-ber .pricing-icon {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-left-ber .pricing-icon svg path {
  fill: var(--theme-color-white);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-left-ber .pricing-icon:before {
  background-color: var(--theme-color6);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-left-ber .pricing-icon:after {
  background-color: rgba(255, 255, 255, 0.19);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-right-ber .pricing-list li {
  color: var(--theme-color-light);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-right-ber .pricing-list li i {
  color: var(--theme-color-light);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-right-ber .pricing-list li.disable {
  color: rgba(var(--theme-color-white-rgb), 0.5);
}
.pricing-wrapper-six .pricing-card-item:hover .pricing-right-ber .pricing-list li.disable i {
  color: rgba(var(--theme-color-white-rgb), 0.5);
}

.processing-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--theme-color-gray);
}
.processing-section .shape {
  position: absolute;
  z-index: -1;
  left: -250px;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .processing-section .shape {
    display: none;
  }
}
.processing-section .outer-box {
  border: 1px dashed #d9d9d9;
  border-radius: 15px;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .processing-section .outer-box {
    padding-top: 0;
    padding-bottom: 30px;
  }
}
.processing-section .sec-text {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}
.processing-section .sec-text a {
  color: #0c6460;
  border-bottom: 1px solid;
  line-height: 20px;
}
.processing-section .sec-text a:hover {
  letter-spacing: 1px;
}
@media (max-width: 575.98px) {
  .processing-section .sec-text {
    font-size: 16px;
  }
}
@media (max-width: 1399.98px) {
  .processing-section .container {
    max-width: 1424px;
  }
}

.processing-block .inner-box {
  padding: 30px;
  padding-bottom: 0;
  border-right: 1px solid #d9d9d9;
}
.processing-block .inner-box .number {
  font-size: 66px;
  font-weight: 700;
  line-height: 66px;
  margin-bottom: 30px;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.processing-block .inner-box .title {
  margin-bottom: 10px;
}
.processing-block .inner-box .text {
  line-height: 30px;
  max-width: 270px;
}
.processing-block .inner-box.last-block {
  border: none;
}
.processing-block .inner-box:hover .number {
  color: var(--theme-color-dark);
}
@media (max-width: 767.98px) {
  .processing-block .inner-box {
    border: none;
    text-align: center;
  }
  .processing-block .inner-box .number {
    margin-bottom: 5px;
  }
  .processing-block .inner-box .text {
    margin: 0 auto;
  }
}

.process-section-four {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f5f2));
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f2 100%);
}
.process-section-four .process-tab {
  max-width: 1100px;
  margin-left: auto;
}
.process-section-four .process-tab .nav.nav-tabs {
  border-bottom: 1px solid rgba(var(--theme-color5-rgb), 0.1);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.process-section-four .process-tab .nav.nav-tabs .nav-link {
  border: none;
  background-color: transparent;
  padding: 0 25px;
  padding-bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}
.process-section-four .process-tab .nav.nav-tabs .nav-link .number {
  margin-bottom: 0;
  font-size: 12px;
  width: 23px;
  height: 23px;
  line-height: 25px;
  background-color: var(--theme-color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.1294117647);
          box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.1294117647);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--theme-color2);
}
.process-section-four .process-tab .nav.nav-tabs .nav-link.active {
  font-weight: 600;
  color: var(--theme-color2);
  border-bottom: 1px solid var(--theme-color2);
}
.process-section-four .process-tab .nav.nav-tabs .nav-link.active .number {
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
}
@media (max-width: 767.98px) {
  .process-section-four .process-tab .nav.nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .process-section-four .process-tab .nav.nav-tabs .nav-link {
    padding-bottom: 10px;
  }
}
.process-section-four .outer-box {
  max-width: 1170px;
  margin: 0 auto;
}
.process-section-four .image-column .inner-column .image {
  position: relative;
  z-index: 1;
}
.process-section-four .image-column .inner-column .image svg {
  width: 100%;
}
.process-section-four .image-column .inner-column .image .image1 {
  max-width: 339px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 45px;
  left: 15px;
}
.process-section-four .image-column .inner-column .image .image1 img {
  width: 100%;
}
.process-section-four .image-column .inner-column .image .image2 {
  max-width: 294px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1490196078);
  overflow: hidden;
  border-radius: 12px;
  position: absolute;
  right: 20px;
  bottom: 40px;
}
.process-section-four .image-column .inner-column .image .image2 img {
  width: 100%;
}
.process-section-four .content-column .inner-column {
  max-width: 620px;
}
.process-section-four .content-column .inner-column .sec-title {
  max-width: 470px;
}
.process-section-four .content-column .inner-column .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.process-section-four .content-column .inner-column .list ul li {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--title-font);
  color: #222222;
}
.process-section-four .content-column .inner-column .list ul li i {
  margin-right: 5px;
}
.process-section-four .content-column .inner-column .list ul li:not(:last-child) {
  margin-bottom: 5px;
}

/*** 

====================================================================
  food-section
====================================================================

***/
.food-section {
  position: relative;
  padding: 120px 0 60px;
}
@media (max-width: 575.98px) {
  .food-section {
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .food-section .image-column {
    display: none;
  }
}
.food-section .image-column .inner-column {
  position: relative;
  margin-left: -375px;
}
@media (max-width: 1199.98px) {
  .food-section .image-column .inner-column {
    margin-right: -93px;
  }
}
.food-section .image-column .inner-column .play-now-two {
  position: absolute;
  top: 123px;
  right: 125px;
  font-size: 31px;
  color: var(--theme-color-light);
  width: 150px;
  height: 150px;
  text-align: center;
  line-height: 150px;
  border: 1px solid var(--theme-color-light);
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 1199.98px) {
  .food-section .image-column .inner-column .play-now-two {
    width: 100px;
    height: 100px;
    top: 40px;
    right: 40px;
    line-height: 100px;
  }
}
.food-section .image-column .inner-column .quote-box {
  position: absolute;
  bottom: -15px;
  right: -60px;
  max-width: 460px;
  background-color: var(--theme-color1);
  padding: 37px 40px 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1399.98px) {
  .food-section .image-column .inner-column .quote-box {
    display: none;
  }
}
.food-section .image-column .inner-column .quote-box .icon-box {
  line-height: 83px;
}
.food-section .image-column .inner-column .quote-box .icon-box i {
  color: #000;
  font-size: 72px;
  position: relative;
  top: 15px;
}
.food-section .image-column .inner-column .quote-box .text {
  max-width: calc(100% - 100px);
  padding-left: 33px;
  font-size: 24px;
  color: var(--theme-color-light);
  line-height: 36px;
  font-family: var(--text-font2);
}
.food-section .content-column .inner-column {
  margin-top: 58px;
  margin-left: 116px;
}
@media (max-width: 1199.98px) {
  .food-section .content-column .inner-column {
    margin-top: 19px;
  }
}
@media (max-width: 1199.98px) {
  .food-section .content-column .inner-column {
    margin-left: 0;
  }
}
.food-section .content-column .inner-column .sec-title .sub-title::before {
  display: none;
}
@media (max-width: 575.98px) {
  .food-section .content-column .inner-column .sec-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.food-section .content-column .inner-column .sec-title .text {
  margin-top: 46px;
  margin-bottom: 37px;
}
@media (max-width: 767.98px) {
  .food-section .content-column .inner-column .sec-title .text {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .food-section .content-column .inner-column .sec-title .text {
    font-size: 17px;
    margin-top: 29px;
  }
}
@media (max-width: 575.98px) {
  .food-section .content-column .inner-column .food-list.two {
    display: none;
  }
}
.food-section .content-column .inner-column .healthy-food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.food-section .content-column .inner-column .healthy-food .food-list {
  margin-right: 100px;
}
@media (max-width: 575.98px) {
  .food-section .content-column .inner-column .healthy-food .food-list {
    margin-right: 0;
  }
}
.food-section .content-column .inner-column .healthy-food .food-list:last-child {
  margin-right: 0;
}
.food-section .content-column .inner-column .healthy-food .food-list ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}
.food-section .content-column .inner-column .healthy-food .food-list ul li:last-child {
  margin-bottom: 0;
}
.food-section .content-column .inner-column .healthy-food .food-list ul li i {
  position: absolute;
  left: 0;
  color: var(--theme-color1);
}
.food-section .content-column .inner-column .image-box {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.food-section .content-column .inner-column .image-box .image {
  margin-right: 30px;
}
.food-section .content-column .inner-column .image-box .image:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 1200px) {
  .food-section .image-column {
    display: none;
  }
}
/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  background-color: var(--theme-color2);
  /* Widget Section */
}
.main-footer .widgets-section {
  padding: 30px 0 0px;
}
.form-check-label {
    line-height:normal
}
@media (max-width: 991.98px) {
    .main-footer .widgets-section {
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .main-footer .footer-column {
    margin-bottom: 30px;
  }
}
.main-footer .footer-widget.about-widget {
  max-width: 300px;
}
.main-footer .footer-widget.about-widget .input-feild {
  position: relative;
  z-index: 1;
}
.main-footer .footer-widget.about-widget .input-feild input {
  padding: 10px 25px;
  background-color: var(--theme-color-white);
  border-radius: 9px;
  font-size: 16px;
  width: 100%;
}
.main-footer .footer-widget.about-widget .input-feild button {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 12px;
  color: var(--headings-color);
  font-size: 16px;
  text-align: center;
  background-color: var(--theme-color1);
  position: absolute;
  top: 5px;
  right: 5px;
}
.main-footer .footer-widget.about-widget .input-feild button i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: inline-block;
}
.main-footer .footer-widget.about-widget .input-feild button:hover i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 991.98px) {
  .main-footer .footer-widget.about-widget {
    max-width: 100%;
  }
}
.main-footer .footer-widget.contact-widget .user-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.main-footer .footer-widget.contact-widget .user-links li i {
  color: var(--theme-color1);
  font-size: 14px;
}
.main-footer .widget-title {
  position: relative;
  color: var(--theme-color-white);
  margin-bottom: 20px;
}
.main-footer .widget-content .text {
  color: #444;
  font-size: 16px;
  line-height: 30px;
  margin: 20px 0;
}

.user-links {
  position: relative;
}
.user-links li {
  position: relative;
  line-height: normal;
  font-weight: 400;  
}
.user-links li:last-child {
  margin-bottom: 0;
}
.user-links li a {
  position: relative;
  display: inline-block;
  color: inherit;
  font-size: 12px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: var(--theme-color-white);
  font-weight: 400;
}
.user-links li a:before {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background-color: var(--bg-theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li a:hover:before {
  width: 100%;
}
.user-links.style-two li {
  padding-left: 0;
}
.user-links.style-two li:before {
  display: none;
}
.user-links.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.user-links.two-column li {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.recent-post {
  position: relative;
  margin-bottom: 30px;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post .inner {
  position: relative;
}
.recent-post .inner .post-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #adadad;
  line-height: 30px;
  margin-bottom: 23px;
  padding-left: 25px;
}
.recent-post .inner .post-info i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  margin-right: 10px;
  color: var(--theme-color1);
}
.recent-post .inner .post-title {
  color: var(--theme-color-white);
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

.contact-list {
  position: relative;
  margin-bottom: 30px;
}
.contact-list:last-child {
  margin-bottom: 0;
}
.contact-list .inner {
  position: relative;
}
.contact-list .inner .list-info {
  color: #75727b;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.6;
  margin-bottom: 0;
}
.contact-list .inner .list-info:first-child {
  margin-bottom: 13px;
  line-height: 1.875;
}
.contact-list .inner .list-info i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  margin-right: 10px;
  color: var(--theme-color1);
}
.contact-list .inner .post-title {
  color: var(--theme-color-white);
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

/* Subscribe Form */
.subscribe-form {
  position: relative;
}
.subscribe-form .form-group {
  position: relative;
}
.subscribe-form .form-group input[type=text],
.subscribe-form .form-group input[type=email] {
  position: relative;
  display: block;
  height: 72px;
  width: 100%;
  font-size: 16px;
  line-height: 32px;
  color: var(--theme-color-white);
  padding: 20px 30px;
  background: transparent;
  border: 1px solid #333f4d;
  border-radius: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.subscribe-form .form-group input[type=text]::-webkit-input-placeholder, .subscribe-form .form-group input[type=email]::-webkit-input-placeholder {
  color: var(--theme-color-white);
}
.subscribe-form .form-group input[type=text]::-moz-placeholder, .subscribe-form .form-group input[type=email]::-moz-placeholder {
  color: var(--theme-color-white);
}
.subscribe-form .form-group input[type=text]:-ms-input-placeholder, .subscribe-form .form-group input[type=email]:-ms-input-placeholder {
  color: var(--theme-color-white);
}
.subscribe-form .form-group input[type=text]::-ms-input-placeholder, .subscribe-form .form-group input[type=email]::-ms-input-placeholder {
  color: var(--theme-color-white);
}
.subscribe-form .form-group input[type=text]::placeholder,
.subscribe-form .form-group input[type=email]::placeholder {
  color: var(--theme-color-white);
}
.subscribe-form .form-group .theme-btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px 30px;
  line-height: 32px;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-cta {
  position: relative;
  z-index: 1;
  background-color: var(--theme-color1);
  padding: 60px 80px;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-cta .sec-title {
  max-width: 570px;
}
.footer-cta .text {
  color: var(--headings-color);
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
.footer-cta .btn-wrp {
  margin-right: 30px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-cta .btn-wrp .cta-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  padding: 20px 45px;
  border-radius: 13px;
  background-color: var(--theme-color-white);
}
.footer-cta .btn-wrp .cta-btn i {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-left: 5px;
}
.footer-cta .btn-wrp .cta-btn:hover {
  color: var(--headings-color);
}
.footer-cta .btn-wrp .cta-btn:hover i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer-cta .btn-wrp .text {
  margin-top: 18px;
}
.footer-cta .bg-shape {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.footer-cta .bg-shape img {
  height: 100%;
}
.footer-cta .arry {
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1199.98px) {
  .footer-cta .arry {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .footer-cta {
    padding: 30px 20px;
  }
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  padding: 30px 0;
}
.footer-bottom .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-bottom .copyright-text {
  position: relative;
  margin-bottom: 0;
  color: rgba(var(--theme-color-white-rgb), 0.45);
}
.footer-bottom .copyright-text span {
  color: var(--theme-color-white);
}
.footer-bottom .copyright-text a {
  color: var(--theme-color-white);
}
.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-white);
}
.footer-bottom .footer-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.footer-bottom .footer-nav li {
  font-size: 16px;
  line-height: 32px;
}
.footer-bottom .footer-nav li a {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-bottom .footer-nav li a:hover {
  color: var(--theme-color-white);
}
@media (max-width: 767.98px) {
  .footer-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    padding: 15px 0;
    padding-top: 30px;
  }
  .footer-bottom .copyright-text {
    font-size: 14px;
  }
}
.footer-bottom .goTop-btn {
  overflow: hidden;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 14px;
  color: #fff;
  background-color: var(--theme-color1);
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}
.footer-bottom .goTop-btn i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: inline-block;
}
.footer-bottom .goTop-btn i:first-child {
  position: absolute;
  top: 0;
  left: 23px;
}
.footer-bottom .goTop-btn i:last-child {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
.footer-bottom .goTop-btn:hover i:first-child {
  top: -60px;
}
.footer-bottom .goTop-btn:hover i:last-child {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer-style-one {
  background-color: var(--theme-color4);
  overflow: hidden;
}
.footer-style-one .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-style-one .widgets-section {
  padding: 70px;
}
@media (max-width: 575.98px) {
  .footer-style-one .widgets-section {
    padding: 30px 12px;
  }
  .footer-style-one .widgets-section .footer-column {
    margin-bottom: 10px;
  }
}
.footer-style-one .footer-top {
  border-bottom: 1px solid #324d4e;
  padding: 70px 40px 40px 70px;
}
.footer-style-one .footer-top .info-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.footer-style-one .footer-top .info-item ul li i {
  display: inline-block;
  max-width: 55px;
  min-width: 55px;
  width: 100%;
  height: 55px;
  line-height: 55px;
  color: var(--theme-color-white);
  border-radius: 50%;
  text-align: center;
  background-color: rgba(var(--theme-color-white-rgb), 0.11);
  font-size: 24px;
}
.footer-style-one .footer-top .info-item ul li span {
  color: var(--theme-color-white);
}
.footer-style-one .footer-top .info-item ul li .title {
  margin-bottom: 0;
  color: var(--theme-color-white);
  font-size: 20px;
  line-height: 26px;
}
.footer-style-one .footer-top .info-item:hover i {
  -webkit-animation: ring-animation 2s ease-in-out infinite;
          animation: ring-animation 2s ease-in-out infinite;
}
@media (max-width: 575.98px) {
  .footer-style-one .footer-top {
    padding: 30px 12px;
  }
}
.footer-style-one .footer-left {
  width: 110px;
  position: relative;
  z-index: 1;
  border-right: 2px solid rgba(169, 167, 167, 0.188);
}
.footer-style-one .footer-left .logo {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: 120px;
  left: -40px;
}
.footer-style-one .footer-left .back-top-btn {
  background-color: transparent;
  position: absolute;
  top: 65%;
  left: 40px;
}
.footer-style-one .footer-left .back-top-btn.mobile-nav-toggler {
  display: inline-block;
  margin: 0;
}
@media (max-width: 575.98px) {
  .footer-style-one .footer-left {
    display: none;
  }
}
.footer-style-one .footer-bottom {
  border-top: 2px solid #324d4e;
  padding-left: 70px;
}
.footer-style-one .footer-bottom .copyright-text a {
  color: #d5ad4b;
}
@media (max-width: 575.98px) {
  .footer-style-one .footer-bottom {
    padding-left: 0;
    text-align: center;
  }
}
.footer-style-one .right-column {
  background-color: #d4f25a;
  padding: 30px;
  position: relative;
  z-index: 1;
}
.footer-style-one .right-column .inner-column {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.footer-style-one .right-column .inner-column .title {
  font-size: 42px;
  line-height: 50px;
  color: var(--theme-color-black);
  margin-bottom: 0;
}
.footer-style-one .right-column .inner-column .circle-btn {
  display: inline-block;
  width: 244px;
  height: 244px;
  line-height: 244px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color-white);
  background-color: var(--theme-color2);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-style-one .right-column .inner-column .circle-btn i {
  margin-left: 5px;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.footer-style-one .right-column .inner-column .circle-btn::after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  border-radius: 50%;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
.footer-style-one .right-column .inner-column .circle-btn:hover::after {
  width: 130%;
  height: 130%;
  bottom: -50px;
  right: -50px;
}
.footer-style-one .right-column .inner-column .circle-btn:hover i {
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}
.footer-style-one .right-column .inner-column .time {
  color: #101249;
  text-transform: uppercase;
  margin-bottom: 0;
}
.footer-style-one .right-column .inner-column .date {
  font-weight: 400;
  line-height: 18px;
  color: #101249;
  margin-bottom: 0;
  text-transform: capitalize;
}
.footer-style-one .right-column .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer-style-one .right-column .shape img {
  width: 100%;
}
.footer-style-one .footer-widget .input-feild input {
  border-radius: 38px;
  padding: 10px 25px;
  width: 100%;
}
.footer-style-one .footer-widget .input-feild .btn-one-rounded {
  min-width: 100%;
  color: var(--theme-color-black);
  margin-top: 20px;
}
.footer-style-one .footer-widget .footer-nav {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.footer-style-one .footer-widget .footer-nav li a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(var(--theme-color-white-rgb), 0.1);
  color: var(--theme-color-white);
  font-size: 15px;
}
.footer-style-one .footer-widget .footer-nav li a:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-black);
}

.footer-style-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer-style-two .sec-shape {
  position: absolute;
  bottom: -30px;
  right: -320px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .footer-style-two .sec-shape {
    display: none;
  }
}
.footer-style-two .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
}
    .footer-style-two .footer-top .logo {
        width: 300px;
        border-top: 4px solid var(--theme-color2);
        padding: 40px 59px;
    }
.footer-style-two .footer-top .subscrive-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.footer-style-two .footer-top .subscrive-box .title {
  color: var(--theme-color-white);
  margin-bottom: 0;
}
.footer-style-two .footer-top .subscrive-box .input-feild {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.footer-style-two .footer-top .subscrive-box .input-feild .fa-envelope {
  font-size: 14px;
  color: var(--theme-color-white);
  position: absolute;
  top: 12px;
  left: 25px;
}
.footer-style-two .footer-top .subscrive-box .input-feild input {
  background-color: transparent;
  border: 1.2px solid rgba(var(--theme-color-white-rgb), 0.1);
  border-radius: 6px;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  padding: 10px 25px;
  padding-left: 50px;
  width: 100%;
}
.footer-style-two .footer-top .subscrive-box .input-feild input::-webkit-input-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-two .footer-top .subscrive-box .input-feild input::-moz-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-two .footer-top .subscrive-box .input-feild input:-ms-input-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-two .footer-top .subscrive-box .input-feild input::-ms-input-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-two .footer-top .subscrive-box .input-feild input::placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-two .footer-top .subscrive-box .input-feild input:focus {
  border: 1.2px solid rgba(var(--theme-color1-rgb), 0.5);
}
.footer-style-two .footer-top .subscrive-box .input-feild .btn-one-rounded {
  min-width: 150px;
  border-radius: 6px;
  color: var(--theme-color-black);
}

.border-light {
    border-color: rgba(var(--theme-color-white-rgb), 0.1) !important;
}


@media (max-width: 767.98px) {
  .footer-style-two .footer-top .subscrive-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .footer-style-two .footer-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .footer-style-two .footer-top .logo {
    margin: 0 auto;
  }
}
.footer-style-two .widgets-section {  
  border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  position: relative;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .footer-style-two .widgets-section::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .footer-style-two .widgets-section {
    padding: 60px 0;
  }
}
.footer-style-two .footer-widget.about-widget {
  max-width: 590px;
}
.footer-style-two .footer-widget.about-widget .widget-title {
  font-size: 32px;
  margin-bottom: 30px;
}
.footer-style-two .footer-widget.about-widget .text {
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  max-width: 550px;
}
.footer-style-two .footer-widget.about-widget .input-feild {
  max-width: 280px;
}
.footer-style-two .footer-widget.about-widget .input-feild input {
  border-radius: 38px;
}
.footer-style-two .footer-widget.about-widget .input-feild .btn-one-rounded {
  min-width: 100%;
  color: var(--theme-color-black);
  margin-top: 20px;
}
.footer-style-two .footer-widget .widget-content .user-links li a {
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-weight: 500;
}
.footer-style-two .footer-widget .widget-content .user-links li a::before {
  display: none;
}
.footer-style-two .footer-widget .widget-content .user-links li a:hover {
  color: var(--theme-color-white);
}
.footer-style-two .footer-widget.contact-widget {
  max-width: 250px;
  margin-left: auto;
}
.footer-style-two .footer-widget.contact-widget .text {
  margin-bottom: 0;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
}
.footer-style-two .footer-widget.contact-widget a {
  font-weight: 500;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-size: 20px;
  line-height: 35px;
}
.footer-style-two .footer-widget.contact-widget a:hover {
  color: var(--theme-color-white);
}
.footer-style-two .footer-widget.contact-widget .nuber a {
  color: var(--theme-color-white);
  font-weight: 700;
  line-height: 45px;
}
@media (max-width: 575.98px) {
  .footer-style-two .footer-widget.contact-widget {
    margin: 0;
  }
}
.footer-style-two .footer-bottom .footer-nav {
  gap: 15px;
}
.footer-style-two .footer-bottom .footer-nav li a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(var(--theme-color-white-rgb), 0.1);
  color: var(--theme-color-white);
  font-size: 15px;
}
.footer-style-two .footer-bottom .footer-nav li a:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-black);
}

.footer-style-three {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer-style-three .box-shape {
  width: 189px;
  height: 189px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer-style-three .box-shape .box1 {
  height: 100%;
  width: 50%;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-style-three .box-shape .box2 {
  width: 100%;
  height: 50%;
  background-color: rgba(var(--theme-color-white-rgb), 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 575.98px) {
  .footer-style-three .box-shape {
    display: none;
  }
}
.footer-style-three .sec-shape {
  position: absolute;
  top: 0;
  right: -280px;
  z-index: -1;
}
.footer-style-three .footer-column {
  margin-bottom: 0;
}
.footer-style-three.at-home6 {
  background-color: var(--theme-color7);
}
.footer-style-three.at-home6 .footer-cta {
  background-color: var(--theme-color6);
}
.footer-style-three.at-home6 .footer-cta .arry img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.footer-style-three.at-home6 .goTop-btn {
  background-color: var(--theme-color6);
  color: var(--theme-color-white);
}
.footer-style-three.at-home6 .footer-widget.about-widget .input-feild button {
  background-color: var(--theme-color6);
  color: var(--theme-color-white);
}
.footer-style-three.at-home6 .footer-widget.contact-widget .user-links li i {
  color: var(--theme-color6);
}

.footer-style-four {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer-style-four .sec-shape {
  position: absolute;
  bottom: -150px;
  left: -280px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .footer-style-four .sec-shape {
    display: none;
  }
}
.footer-style-four .widgets-section {
  padding: 0;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 767.98px) {
  .footer-style-four .widgets-section {
    padding: 60px 0;
  }
}
.footer-style-four .footer-widget.about-widget {
  max-width: 590px;
}
.footer-style-four .footer-widget.about-widget .widget-title {
  font-size: 32px;
  margin-bottom: 30px;
}
.footer-style-four .footer-widget.about-widget .text {
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  max-width: 550px;
}
.footer-style-four .footer-widget.about-widget .input-feild {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.footer-style-four .footer-widget.about-widget .input-feild .fa-envelope {
  font-size: 14px;
  color: var(--theme-color-white);
  position: absolute;
  top: 12px;
  left: 25px;
}
.footer-style-four .footer-widget.about-widget .input-feild input {
  background-color: transparent;
  border: 1.2px solid rgba(var(--theme-color-white-rgb), 0.1);
  border-radius: 6px;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  padding-left: 50px;
}
.footer-style-four .footer-widget.about-widget .input-feild input::-webkit-input-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-four .footer-widget.about-widget .input-feild input::-moz-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-four .footer-widget.about-widget .input-feild input:-ms-input-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-four .footer-widget.about-widget .input-feild input::-ms-input-placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-four .footer-widget.about-widget .input-feild input::placeholder {
  color: rgba(var(--theme-color-white-rgb), 0.55);
}
.footer-style-four .footer-widget.about-widget .input-feild input:focus {
  border: 1.2px solid rgba(var(--theme-color1-rgb), 0.5);
}
.footer-style-four .footer-widget.about-widget .input-feild .btn-one-rounded {
  min-width: 150px;
  border-radius: 6px;
  color: var(--theme-color-black);
}
.footer-style-four .footer-widget.about-widget .privacy {
  font-weight: 500;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-size: 16px;
  margin-top: 15px;
}
.footer-style-four .footer-widget.about-widget .privacy a {
  color: var(--theme-color-white);
  text-decoration: underline;
}
.footer-style-four .footer-widget.about-widget .privacy a:hover {
  color: var(--theme-color1);
}
.footer-style-four .footer-widget .widget-content .user-links li a {
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-weight: 500;
}
.footer-style-four .footer-widget .widget-content .user-links li a::before {
  display: none;
}
.footer-style-four .footer-widget .widget-content .user-links li a:hover {
  color: var(--theme-color-white);
}
.footer-style-four .footer-widget.contact-widget {
  max-width: 250px;
  margin-left: auto;
}
.footer-style-four .footer-widget.contact-widget .text {
  margin-bottom: 0;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
}
.footer-style-four .footer-widget.contact-widget a {
  font-weight: 500;
  color: rgba(var(--theme-color-white-rgb), 0.55);
  font-size: 20px;
  line-height: 35px;
}
.footer-style-four .footer-widget.contact-widget a:hover {
  color: var(--theme-color-white);
}
.footer-style-four .footer-widget.contact-widget .nuber a {
  color: var(--theme-color-white);
  font-weight: 700;
  line-height: 45px;
}
@media (max-width: 575.98px) {
  .footer-style-four .footer-widget.contact-widget {
    margin: 0;
  }
}
.footer-style-four .footer-bottom {
  padding: 20px 0;
}
.footer-style-four .footer-bottom .copyright-text {
  color: var(--theme-color-white);
}
.footer-style-four .footer-bottom .copyright-text a {
  text-decoration: none;
  color: #ffcc53;
}
.footer-style-four .footer-bottom .language .nice-select {
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
  background-color: rgba(var(--theme-color-white-rgb), 0.1);
  border-radius: 20px;
  border: none;
  padding-left: 12px;
  padding-right: 40px;
}
.footer-style-four .footer-bottom .language .nice-select::before {
  width: 20px;
  height: 20px;
  line-height: 23px;
  background-color: var(--theme-color1);
  border-radius: 50%;
  text-align: center;
  top: 8px;
  right: 7px;
}
.footer-style-four .footer-bottom .language .nice-select .current {
  font-size: 12px;
  color: var(--theme-color-white);
}
.footer-style-four .footer-bottom .language .nice-select .list {
  bottom: 100%;
  top: unset;
}

/***
====================================================================
  Products details
====================================================================
***/
.product-details .bxslider .image-box {
  position: relative;
  display: block;
  margin-right: 30px;
  margin-bottom: 10px;
}
.product-details .bxslider .image-box img {
  width: 100%;
}
.product-details .bxslider .thumb-box li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 15px;
  width: 100px;
  height: 100px;
}
.product-details .bxslider .thumb-box li:last-child {
  margin: 0px !important;
}
.product-details .bxslider .thumb-box li a {
  position: relative;
  display: inline-block;
}
.product-details .bxslider .thumb-box li a:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.product-details .bxslider .thumb-box li a.active:before {
  opacity: 1;
}
.product-details .bx-wrapper {
  margin-bottom: 30px;
}
.product-details .product-info .product-details__top {
  position: relative;
  display: block;
  margin-top: -8px;
}
.product-details .product-info .product-details__title {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
}
.product-details .product-info .product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--theme-color2);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 20px;
  letter-spacing: 0;
}
.product-details .product-info .product-details__reveiw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
  padding-bottom: 20px;
  margin-bottom: 31px;
  border-bottom: 1px solid #e0e4e8;
}
.product-details .product-info .product-details__reveiw i {
  font-size: 16px;
  color: var(--review-color);
}
.product-details .product-info .product-details__reveiw i + i {
  margin-left: 4px;
}
.product-details .product-info .product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--theme-color2);
  margin-left: 18px;
}
.product-details .product-info .product-details__quantity-title {
  margin: 0;
  color: #222;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-right: 20px;
}
.product-details .product-info .product-details__buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .product-details .product-info .product-details__buttons {
    display: block;
  }
}
.product-details .product-info .product-details__buttons-1 {
  position: relative;
  display: block;
}
@media only screen and (max-width: 767px) {
  .product-details .product-info .product-details__buttons-1 {
    margin-bottom: 10px;
    margin-right: 10px;
  }
}
.product-details .product-info .product-details__buttons-2 {
  position: relative;
  display: block;
  margin-left: 10px;
}
.product-details .product-info .product-details__buttons-2 .thm-btn {
  background-color: var(--theme-color2);
}
.product-details .product-info .product-details__buttons-2 .thm-btn:before {
  background-color: var(--theme-color1);
}
.product-details .product-info .product-details__buttons-2 .thm-btn:after {
  background-color: var(--theme-color1);
}
@media only screen and (max-width: 767px) {
  .product-details .product-info .product-details__buttons-2 {
    margin-left: 0;
    margin-top: 0;
  }
}
.product-details .product-info .product-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-details .product-info .product-details__social .title {
  position: relative;
  display: block;
}
.product-details .product-info .product-details__social .title h3 {
  color: #222;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}
.product-details .product-info .product-details__social .social-icon-one {
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .product-details .product-info .product-details__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .product-details .product-info .product-details__social .social-icon-one {
    margin-left: 0;
  }
}

.product-details__quantity {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  position: relative;
}
.product-details__quantity .quantity-box {
  border-radius: 10px;
  height: 60px;
  position: relative;
  width: 98px;
}
.product-details__quantity .quantity-box input {
  border: 1px solid #e0e4e8;
  border-radius: 10px;
  color: var(--theme-color2);
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  outline: none;
  padding-left: 30px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  width: 98px;
}
.product-details__quantity .quantity-box button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-left: 1px solid #e0e4e8;
  border-top-right-radius: 10px;
  background-color: var(--theme-color2);
  color: #fff;
  font-size: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 29px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  position: absolute;
  right: 1px;
  top: 1px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 29px;
}
.product-details__quantity .quantity-box button:hover {
  background-color: var(--theme-color1);
  color: var(--headings-color);
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
  top: auto;
}

.product-discription {
  display: block;
  position: relative;
}
.product-discription .product-description__title {
  font-size: 30px;
  margin-bottom: 27px;
}
.product-discription .product-description__text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
.product-discription .product-description__list {
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}
.product-discription .product-description__list ul {
  display: block;
  position: relative;
}
.product-discription .product-description__list ul li {
  display: block;
  margin-bottom: 2px;
  position: relative;
}
.product-discription .product-description__list ul li:last-child {
  margin-bottom: 0px;
}
.product-discription .product-description__list ul li p {
  color: var(--headings-color);
  font-weight: 600;
  margin: 0;
}
.product-discription .product-description__list ul li p span:before {
  color: var(--theme-color1);
  display: inline-block;
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  position: relative;
  top: 2px;
}
.product-discription .tabs-content .text p {
  margin-bottom: 17px;
}
.product-discription .tabs-content .text p:last-child {
  margin-bottom: 0px;
}
.product-discription .tab-btn-box {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 60px;
}
.product-discription .tab-btn-box:before {
  position: absolute;
  content: "";
  background-color: #e1e8e4;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 28px;
}
.product-discription .tab-btn-box .tab-btns li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #1e2434;
  text-align: center;
  padding: 14px 30px;
  background-color: #fff;
  border: 1px solid #e1e8e4;
  cursor: pointer;
  margin: 0px 8.5px;
  margin-bottom: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.product-discription .tab-btn-box .tab-btns li.active-btn {
  background-color: var(--theme-color2);
  color: #fff;
}
.product-discription .tab-btn-box .tab-btns li:last-child {
  margin-bottom: 0;
}
.product-discription .single-comment-box .inner-box {
  position: relative;
  display: block;
  background-color: #f4f5f4;
  padding: 34px 30px 34px 125px;
}
.product-discription .single-comment-box .inner-box .comment-thumb {
  position: absolute;
  left: 30px;
  top: 40px;
  border-radius: 50%;
  width: 80px;
}
.product-discription .single-comment-box .inner-box .comment-thumb img {
  width: 100%;
  border-radius: 50%;
}
.product-discription .single-comment-box .inner-box .rating {
  position: relative;
  display: block;
  margin-bottom: 2px;
}
.product-discription .single-comment-box .inner-box .rating li {
  position: relative;
  display: inline-block;
  font-size: 12px;
  float: left;
  margin-right: 4px;
  color: #fdc009;
}
.product-discription .single-comment-box .inner-box .rating li:last-child {
  margin: 0px !important;
}
.product-discription .single-comment-box .inner-box h5 {
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-discription .single-comment-box .inner-box h5 span {
  font-weight: 400;
  text-transform: capitalize;
}
.product-discription .customer-comment {
  position: relative;
  display: block;
  margin-bottom: 60px;
}
.product-discription .comment-box {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 51px 60px 60px 60px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.product-discription .comment-box h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 23px;
}
.product-discription .comment-box .form-group {
  position: relative;
  margin-bottom: 15px;
}
.product-discription .comment-box .form-group label {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #707582;
  margin-bottom: 8px;
}
.product-discription .comment-box .column:last-child .form-group {
  margin-bottom: 0px;
}
.product-discription .comment-box .review-box {
  position: relative;
  display: block;
  margin-top: 8px;
}
.product-discription .comment-box .review-box p {
  position: relative;
  float: left;
  margin-right: 10px;
}
.product-discription .comment-box .review-box .rating {
  position: relative;
  float: left;
}
.product-discription .comment-box .review-box .rating li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 28px;
  float: left;
  margin-right: 4px;
  color: #fdc009;
}
.product-discription .comment-box .review-box .rating li:last-child {
  margin: 0px !important;
}
.product-discription .comment-box .custom-controls-stacked {
  position: relative;
  float: left;
}

.related-product h3 {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .product-details__img {
    margin-bottom: 50px;
  }
  .product-details__title span {
    margin-left: 0;
    display: block;
  }
  .product-details__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .product-details__buttons-2 {
    margin-left: 0;
    margin-top: 10px;
  }
  .product-details__social-link {
    margin-left: 0;
    margin-top: 20px;
  }
}
/***

====================================================================
 Categories Section
====================================================================

***/
.categories-section {
  position: relative;
  padding: 100px 0 70px;
}
.categories-section .bg-pattern {
  position: absolute;
  left: 0;
  top: -220px;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/icons/pattern-7.png);
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
}
.categories-section:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 300px;
  width: 100%;
  background: var(--theme-color3);
  content: "";
  z-index: 1;
}
.categories-section:after {
  position: absolute;
  left: 0;
  bottom: -50px;
  height: 70px;
  width: 100%;
  z-index: 2;
  content: "";
  background-image: url(../images/icons/pattern-3.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}

.category-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 9;
}
.category-block .inner-box {
  position: relative;
  text-align: center;
  background: #ffffff;
  padding: 40px 30px 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block .inner-box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 190px;
  background-repeat: no-repeat;
  background-position: center bottom;
  content: "";
}
.category-block .inner-box:hover {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.category-block .inner-box:hover .image img {
  -webkit-transform: rotate(10deg) scale(1.2);
  transform: rotate(10deg) scale(1.2);
}
.category-block .inner-box.cat-bg-1:before {
  background-image: url(../images/icons/cat-1-bg.png);
}
.category-block .inner-box.cat-bg-2:before {
  background-image: url(../images/icons/cat-2-bg.png);
}
.category-block .inner-box.cat-bg-3:before {
  background-image: url(../images/icons/cat-3-bg.png);
}
.category-block .inner-box.cat-bg-4:before {
  background-image: url(../images/icons/cat-4-bg.png);
}
.category-block .image {
  position: relative;
  display: inline-block;
  height: 180px;
  width: 180px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 15px;
}
.category-block .image img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block h4 {
  font-size: 20px;
  color: var(--theme-color3);
  font-weight: 700;
  margin-bottom: 10px;
}
.category-block h4 a {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block h4 a:hover {
  color: var(--theme-color1);
}
.category-block p {
  font-size: 14px;
  color: #797f7d;
  line-height: 26px;
  margin-bottom: 0px;
}

/***

====================================================================
    Categories Section Two
====================================================================

***/
.categories-section-two {
  position: relative;
  padding: 120px 0 90px;
}

.category-block-two {
  position: relative;
  padding-top: 70px;
  margin-bottom: 30px;
  z-index: 9;
}
.category-block-two .inner-box {
  position: relative;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  margin: 0 auto;
  padding: 18px;
}
.category-block-two .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 60px;
  width: 100%;
  border-radius: 10px;
  background: #e3eee5;
  content: "";
}
.category-block-two .inner-box:hover .image:before {
  left: 100%;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.category-block-two .inner-box:hover .image img {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.category-block-two .inner-box:hover h4 a {
  color: var(--theme-color1);
}
.category-block-two .content {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 0 40px 40px;
  z-index: 1;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}
.category-block-two .content:before {
  position: absolute;
  top: -88px;
  left: 0;
  width: 180px;
  height: 180px;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  background: #e3eee5;
  content: "";
}
.category-block-two .content:after {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-size: 30px;
  line-height: 1em;
  color: #e8f3ea;
  height: 15px;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  content: attr(data-text);
}
.category-block-two .image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 25px;
  margin-top: -70px;
}
.category-block-two .image img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block-two .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 120%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  content: "";
  opacity: 0.3;
  left: -100%;
  pointer-events: none;
  z-index: 1;
}
.category-block-two h4 {
  font-size: 22px;
  color: var(--theme-color3);
  font-weight: 700;
  margin-bottom: 15px;
}
.category-block-two h4 a {
  color: var(--theme-color3);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block-two p {
  font-size: 16px;
  color: #797f7d;
  line-height: 26px;
  margin-bottom: 0px;
}
.category-block-two .link {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #e8f3ea;
  border-radius: 50%;
  line-height: 50px;
  margin-top: 25px;
  color: #608174;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.category-block-two .link:hover {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.category-block-two.child-two .link {
  background: #f0e2e3;
}
.category-block-two.child-two .inner-box:before {
  background: #f0e2e3;
}
.category-block-two.child-two .inner-box:hover h4 a {
  color: #e69da2;
}
.category-block-two.child-two .content:before {
  background: #f0e2e3;
}
.category-block-two.child-two .content:after {
  color: #f0e2e3;
}
.category-block-two.child-three .link {
  background: #f1ede1;
}
.category-block-two.child-three .inner-box:before {
  background: #f1ede1;
}
.category-block-two.child-three .inner-box:hover h4 a {
  color: #c9b579;
}
.category-block-two.child-three .content:before {
  background: #f1ede1;
}
.category-block-two.child-three .content:after {
  color: #f1ede1;
}

/***

====================================================================
    Products Section
====================================================================

***/
.products-section {
  position: relative;
  padding: 120px 0;
}

.products-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 670px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.products-section .bg-image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #113629;
  opacity: 0.7;
  content: "";
}

.products-section .bg-image:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  width: 100%;
  background-image: url(../images/icons/pattern-8.png);
  background-position: center bottom;
  content: "";
}

.products-section .sec-title h2 {
  font-size: 60px;
}

.products-section .sec-title .theme-btn {
  margin-top: 30px;
}

.products-box {
  max-width: 1530px;
  position: relative;
  padding: 120px 60px 90px;
  margin: 120px auto 0;
  background-color: #f7f5ee;
  overflow: hidden;
  border-radius: 10px;
}

.products-box:before {
  position: absolute;
  left: -90px;
  bottom: 0;
  height: 70%;
  width: 100%;
  background: url(../images/icons/shape-7.png) top left no-repeat;
  content: "";
}

.products-box .sec-title {
  margin-bottom: 30px;
}

.products-box .outer-box {
  position: relative;
  padding-right: 400px;
}

.products-box .outer-box .banner-box-two {
  position: absolute;
  right: 0;
  top: 0;
}

.banner-box-two {
  position: relative;
}

.banner-box-two .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(22, 67, 51)), to(rgba(229, 229, 229, 0)));
  background: linear-gradient(to bottom, rgb(22, 67, 51) 0%, rgba(229, 229, 229, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="var(--theme-color3)", endColorstr="#00e5e5e5",GradientType=0 );
  content: "";
}

.banner-box-two .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 370px;
  background: var(--theme-color3);
  border-radius: 10px;
  min-height: 440px;
  text-align: center;
  overflow: hidden;
  padding: 20px 20px;
}

.banner-box-two .title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.banner-box-two .title strong {
  font-size: 60px;
  line-height: 1em;
  color: var(--theme-color2);
  font-weight: 400;
}

.banner-box-two h4 {
  font-size: 30px;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.product-block-two {
  position: relative;
  margin-bottom: 30px;
}

.product-block-two .inner-box {
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #ffffff;
  padding: 20px 20px;
  padding-left: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 150px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block-two .inner-box:hover {
  border: 2px solid var(--theme-color1);
}

.product-block-two .image {
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  overflow: hidden;
  height: 110px;
  width: 110px;
  border: 1px solid #e4e1d6;
  margin-bottom: 0px;
}

.product-block-two .image img {
  width: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block-two .inner-box:hover .image img {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.product-block-two h4 {
  display: block;
  font-size: 22px;
  color: var(--theme-color3);
  font-weight: 700;
  margin-bottom: 5px;
}

.product-block-two h4 a {
  color: var(--theme-color3);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block-two .price {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--theme-color1);
  font-weight: 600;
}

.product-block-two .price del {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  color: #ff0000;
  line-height: 27px;
  opacity: 0.3;
}

.product-block-two .rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #ffc737;
}

.products-carousel .owl-nav {
  display: none;
}

.products-carousel .owl-dots {
  position: absolute;
  right: 0;
  top: -80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 8;
}

.products-carousel .owl-dot {
  position: relative;
  height: 7px;
  width: 7px;
  display: block;
  background: #879d91;
  margin-right: 5px;
  border-radius: 5px;
  display: block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.products-carousel .owl-dot.active {
  background: var(--theme-color3);
}

/***

====================================================================
    Featured Products
====================================================================

***/
.featured-products {
  position: relative;
  padding: 120px 0 90px;
}

.featured-products .bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url(../images/icons/pattern-7.png) left bottom no-repeat;
  background-size: 700px;
}

/*=== Mixitup Gallery ===*/
.featured-products .filters {
  margin-bottom: 40px;
  text-align: center;
}

.featured-products .filters .filter-tabs {
  position: relative;
  display: inline-block;
}

.featured-products .filters li {
  position: relative;
  display: inline-block;
  line-height: 24px;
  padding: 0px 2px 10px;
  cursor: pointer;
  color: #797f7d;
  font-weight: 500;
  font-size: 18px;
  margin: 0 5px 0;
  padding: 5px 12px 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.featured-products .filters li:last-child {
  margin-right: 0;
}

.featured-products .filters .filter.active,
.featured-products .filters .filter:hover {
  background-color: var(--theme-color2);
  color: #fff;
}

.featured-products .filters li:before {
  position: absolute;
  left: 0;
  bottom: 8px;
  height: 2px;
  width: 100%;
  content: "";
  background-color: #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}

.featured-products .filters li.active:before,
.featured-products .filters li:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.product-block {
  position: relative;
  margin-bottom: 30px;
}

.product-block.mix {
  display: none;
}

.product-block .inner-box {
  position: relative;
  border: 1px solid var(--theme-color2);
  border-radius: 10px;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .inner-box:hover {
  border: 1px solid var(--theme-color1);
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.product-block .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0px;
}

.product-block .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  content: "";
  opacity: 0.3;
  left: -100%;
  pointer-events: none;
  z-index: 1;
}

.product-block .inner-box:hover .image:before {
  left: 100%;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.product-block .image img {
  width: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .inner-box:hover .image img {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.product-block .content {
  position: relative;
  padding: 30px 30px 30px;
}

.product-block h4 {
  display: block;
  font-size: 22px;
  color: var(--theme-color2);
  font-weight: 700;
  margin-bottom: 5px;
}

.product-block h4 a {
  color: var(--theme-color2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block h4 a:hover {
  color: var(--theme-color1);
}

.product-block .price {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-gray-silver);
  font-weight: 600;
}

.product-block .price del {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  color: #ff0000;
  line-height: 27px;
  opacity: 0.3;
}

.product-block .rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #ffc737;
}

.product-block .tag {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 14px;
  line-height: 23px;
  color: #ffffff;
  background: #FD5F5C;
  font-weight: 400;
  padding: 0 12px;
  border-radius: 3px;
  z-index: 9;
  font-style: italic;
  text-transform: uppercase;
}

.product-block .icon-box {
  position: absolute;
  right: 20px;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .inner-box:hover .icon-box {
  top: 20px;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.product-block .ui-btn {
  background-color: var(--theme-color2);
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
  width: 40px;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .ui-btn:hover {
  background-color: var(--theme-color1);
  color: var(--text-color-bg-theme-color1);
}

.product-block .cat {
  display: block;
  font-size: 18px;
  color: #707070;
  font-style: italic;
  font-family: "Jost", sans-serif;
  margin-bottom: 5px;
}

/*
 * shop-catalog-layouts.scss
 * -----------------------------------------------
*/
table.tbl-shopping-cart .product-thumbnail, table.cart-total .product-thumbnail {
  min-width: 64px;
}
table.tbl-shopping-cart img, table.cart-total img {
  width: 64px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
table.tbl-shopping-cart th,
table.tbl-shopping-cart td, table.cart-total th,
table.cart-total td {
  vertical-align: middle;
  border-left: 1px solid #e3e3e3;
  padding: 20px 30px;
}
table.tbl-shopping-cart .product-name a, table.cart-total .product-name a {
  color: var(--headings-color);
}
table.tbl-shopping-cart .product-name .variation, table.cart-total .product-name .variation {
  font-size: 0.9rem;
  list-style: none;
}
table.tbl-shopping-cart .product-remove a, table.cart-total .product-remove a {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 24px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  background-color: #757575;
  color: #ffffff;
  text-align: center;
}
table.tbl-shopping-cart .coupon-form .apply-button, table.cart-total .coupon-form .apply-button {
  position: relative;
  display: inline-block;
  color: #1e2434;
  background: #f4f5f4;
  padding: 15px 29px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
table.tbl-shopping-cart .coupon-form .apply-button:hover, table.cart-total .coupon-form .apply-button:hover {
  color: var(--text-color-bg-theme-color2);
  background-color: var(--theme-color2);
}

table.tbl-shopping-cart > thead > tr > th,
table.tbl-shopping-cart > tbody > tr > th,
table.tbl-shopping-cart > tfoot > tr > th {
  color: #444;
}

.payment-method .accordion-box .block {
  background: #f4f5f4;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 20px;
}
.payment-method .accordion-box .block .acc-content .payment-info {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 30px 30px 10px 30px;
}
.payment-method .accordion-box .block:last-child {
  margin-bottom: 0px;
}
.payment-method .accordion-box .block .acc-btn {
  padding: 19px 30px 22px 30px;
}
.payment-method .accordion-box .block .acc-btn .icon-outer {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
  height: auto;
  /* line-height: 65px; */
  font-size: 28px;
  color: #1e2434;
}
.payment-method .accordion-box .block .acc-btn.active .icon-outer {
  color: var(--text-color-bg-theme-color2);
}
.payment-method .payment-method h3 {
  margin-bottom: 32px;
}

.shop-sidebar {
  display: block;
  position: relative;
}
.shop-sidebar .sidebar-search {
  margin-bottom: 30px;
}
.shop-sidebar .sidebar-search .search-form .form-group {
  margin: 0px;
  position: relative;
}
.shop-sidebar .sidebar-search .search-form .form-group input[type=search] {
  background-color: var(--theme-color-gray);
  border: 1px solid var(--theme-light-background);
  border-radius: 5px;
  color: #646578;
  height: 52px;
  padding: 10px 60px 10px 20px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 100%;
}
.shop-sidebar .sidebar-search .search-form .form-group button {
  background-color: var(--theme-color2);
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  height: 42px;
  line-height: 42px;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 42px;
}
.shop-sidebar .sidebar-search .search-form .form-group button:hover {
  background-color: var(--theme-color1);
  color: var(--text-color-bg-theme-color1);
}
.shop-sidebar .sidebar-widget {
  background-color: var(--theme-color-gray);
  border-radius: 5px;
  display: block;
  margin-bottom: 30px;
  padding: 35px 30px 37px 30px;
  position: relative;
}
.shop-sidebar .sidebar-widget:last-child {
  margin-bottom: 0px;
}
.shop-sidebar .sidebar-widget .widget-title {
  display: block;
  margin-bottom: 16px;
  position: relative;
}
.shop-sidebar .category-widget .category-list li {
  display: block;
  margin-bottom: 14px;
  position: relative;
}
.shop-sidebar .category-widget .category-list li:last-child {
  margin-bottom: 0px;
}
.shop-sidebar .category-widget .category-list li a {
  color: #646578;
  display: inline-block;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}
.shop-sidebar .category-widget .category-list li a:before {
  position: absolute;
  content: "\f0da";
  font-family: "Font Awesome 6 Pro";
  left: 0px;
  top: 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color2);
}
.shop-sidebar .category-widget .category-list li a:hover {
  color: var(--theme-color2);
}
.shop-sidebar .price-filters .widget-title {
  margin-bottom: 28px;
}
.shop-sidebar .post-widget {
  padding-bottom: 9px;
}
.shop-sidebar .post-widget .post {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 23px;
  min-height: 108px;
  padding-left: 90px;
  padding-bottom: 24px;
  position: relative;
}
.shop-sidebar .post-widget .post:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.shop-sidebar .post-widget .post .post-thumb {
  border: 1px solid #d0d4dd;
  border-radius: 5px;
  height: 70px;
  left: 0px;
  position: absolute;
  top: 7px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 70px;
}
.shop-sidebar .post-widget .post .post-thumb img {
  width: 100%;
  border-radius: 5px;
}
.shop-sidebar .post-widget .post a {
  color: #646578;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 7px;
  position: relative;
}
.shop-sidebar .post-widget .post .price {
  color: #0a267a;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
}
.shop-sidebar .post-widget .post:hover .post-thumb {
  border-color: var(--theme-color1);
}
.shop-sidebar .post-widget .post:hover a {
  color: var(--theme-color1);
}

.range-slider {
  position: relative;
}
.range-slider .title {
  display: inline-block;
  line-height: 26px;
  margin-right: 4px;
  position: relative;
}
.range-slider .title:before {
  color: #646578;
  content: "$";
  font-size: 18px;
  left: -5px;
  position: absolute;
  top: -19px;
}
.range-slider p {
  color: #646578;
  display: inline-block;
  margin-right: 10px !important;
  position: relative;
}
.range-slider .input {
  color: #646578;
  display: inline-block;
  font-size: 18px;
  margin-top: 5px;
  max-width: 75px;
  position: relative;
}
.range-slider .input input {
  background: none;
  color: #646578;
  font-size: 15px;
  text-align: left;
}
.range-slider .ui-widget.ui-widget-content {
  background-color: #d0d4dd;
  border-radius: 2px;
  border: none;
  height: 4px;
  margin-bottom: 14px;
}
.range-slider .ui-slider .ui-slider-range {
  background-color: var(--theme-color2);
  top: 0px;
  height: 4px;
}
.range-slider .ui-state-default {
  background-color: var(--theme-color2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 14px;
  margin-left: 0px;
  position: absolute;
  top: -5px;
  width: 14px;
}
.range-slider .ui-state-default:before {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 6px;
}
.range-slider .ui-widget-content .ui-state-default {
  background-color: var(--theme-color2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 14px;
  margin-left: 0px;
  top: -5px;
  width: 14px;
}
.range-slider .ui-widget-content .ui-state-default:before {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  position: absolute;
  height: 6px;
  left: 4px;
  top: 4px;
  width: 6px;
}
.range-slider input[type=submit] {
  background: var(--theme-color2);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  float: right;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  padding: 7px 20px;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.range-slider input[type=submit]:hover {
  background-color: var(--theme-color1);
  color: var(--text-color-bg-theme-color1);
}

/*** 
====================================================================
Page Title
====================================================================
***/
@-webkit-keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.page-title {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0 110px;
  position: relative;
}
    .page-title:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 99.98%, rgba(13104, 106, 111, 0.98) 99.99%);
        content: "";
        mix-blend-mode: normal;
    }
.page-title:after {
  background: url(/images/page-title-pattern.png);
  content: "";
  height: 100%;
  mix-blend-mode: normal;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.page-title .title {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 17px;
}
.page-title .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  max-width: 520px;
}

.page-breadcrumb {
  position: relative;
  margin-top: 5px;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  content: "\f105";
  right: -6px;
  top: 1px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  color: #ffffff;
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: var(--theme-color1);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: #ffffff;
}

.page-title.style-two {
  background-position: center center;
}
.page-title.style-two .page-breadcrumb-outer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 8;
}
.page-title.style-two .page-breadcrumb li {
  color: rgb(7, 7, 16);
  font-weight: 600;
}
.page-title.style-two .page-breadcrumb li:after {
  color: rgb(7, 7, 16);
}
.page-title.style-two .page-breadcrumb li a {
  color: rgba(7, 7, 16, 0.6);
}
.page-title.style-two .page-breadcrumb li a:hover {
  color: rgb(7, 7, 16);
}

.background-image {
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}
.error-page__inner .error-page__title-box {
  position: relative;
  display: block;
}
.error-page__inner .error-page__title {
  position: relative;
  display: inline-block;
  font-size: 280px;
  line-height: 280px;
  margin-bottom: 0;
  color: var(--theme-color1);
}
.error-page__inner .error-page__sub-title {
  font-size: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 50px;
  margin-top: -16px;
}
.error-page__inner .error-page__text {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.error-page__inner .error-page__form {
  position: relative;
  display: block;
  margin: 42px auto 20px;
}
.error-page__inner .error-page__form input[type=search] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  font-size: 14px;
  color: #333;
  padding-left: 50px;
  padding-right: 75px;
  border-radius: 7px;
}
.error-page__inner .error-page__form button[type=submit] {
  background-color: transparent;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.error-page__inner .error-page__form-input {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

/***

====================================================================
        Contact
====================================================================

***/
.contact-details__info {
  position: relative;
  display: block;
  margin-top: 41px;
}
.contact-details__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-details__info li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--theme-color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li .icon span {
  color: var(--text-color-bg-theme-color1);
  font-size: 25px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li:hover .icon {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
}
.contact-details__info li:hover .icon span {
  color: var(--text-color-bg-theme-color2);
}
.contact-details__info li:hover .text a {
  color: var(--notech-base);
}
.contact-details__info li:hover .text a span {
  color: var(--notech-gray);
}
.contact-details__info li .text {
  margin-left: 30px;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-size: 18px;
  color: var(--notech-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li .text span {
  font-size: 20px;
  color: var(--notech-black);
}
.contact-details__info li + li {
  margin-top: 19px;
}

.map {
  height: 550px;
}

/***
=============================================
    Services Details
=============================================
***/
.service-sidebar {
  position: relative;
  display: block;
  max-width: 365px;
  width: 100%;
}
.service-sidebar .service-sidebar-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.service-sidebar .service-sidebar-single-services {
  position: relative;
  display: block;
  background: #f6f4ec;
  border-radius: 10px;
  padding: 35px 30px 25px;
}
.service-sidebar .service-sidebar-single-services .title {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-left: 20px;
}
.service-sidebar .service-sidebar-single-services .title h3 {
  color: var(--headings-color);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
}
.service-sidebar .service-sidebar-single-services ul {
  position: relative;
  display: block;
  margin-top: 10px;
}
.service-sidebar .service-sidebar-single-services ul li {
  position: relative;
  display: block;
  margin-bottom: 5px;
  margin-top: -10px;
}
.service-sidebar .service-sidebar-single-services ul li:last-child {
  margin-bottom: 0;
}
.service-sidebar .service-sidebar-single-services ul li a {
  position: relative;
  display: block;
  color: var(--agriox-color-1, #687469);
  font-size: 18px;
  padding: 22px 20px 22px;
  border-radius: 10px;
  background: transparent;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-sidebar .service-sidebar-single-services ul li a:hover {
  color: var(--headings-color);
}
.service-sidebar .service-sidebar-single-services ul li a:hover::before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg);
          transform: perspective(400px) rotateX(0deg);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.service-sidebar .service-sidebar-single-services ul li a:hover i {
  color: var(--theme-color1);
}
.service-sidebar .service-sidebar-single-services ul li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(90deg);
          transform: perspective(400px) rotateX(90deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.service-sidebar .service-sidebar-single-services ul li a i {
  font-size: 16px;
}
.service-sidebar .service-sidebar-single-services ul li.current a::before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg);
          transform: perspective(400px) rotateX(0deg);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.service-sidebar .service-sidebar-single-services ul li.current a i {
  color: var(--theme-color1);
}
.service-sidebar .service-sidebar-single-services ul li.current:first-child {
  margin-top: 20px;
}
.service-sidebar .service-sidebar-single-services ul li.current:last-child {
  margin-bottom: 35px;
}
.service-sidebar .service-sidebar-single-contact-box {
  position: relative;
  display: block;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 50px 0px 44px;
  z-index: 1;
}
.service-sidebar .service-sidebar-single-contact-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(109, 140, 84, 0.93);
  border-radius: 10px;
  content: "";
  z-index: -1;
}
.service-sidebar .service-sidebar-single-contact-box .icon {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  background: var(--theme-color2);
}
.service-sidebar .service-sidebar-single-contact-box .icon:hover {
  background-color: var(--headings-color);
}
.service-sidebar .service-sidebar-single-contact-box .icon:hover span::before {
  color: #fff;
}
.service-sidebar .service-sidebar-single-contact-box .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--headings-color);
  font-size: 30px;
  line-height: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-sidebar .service-sidebar-single-contact-box .title {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 42px;
}
.service-sidebar .service-sidebar-single-contact-box .title h2 {
  color: #ffffff;
  font-size: 36px;
}
.service-sidebar .service-sidebar-single-contact-box .phone {
  font-size: 24px;
  line-height: 34px;
}
.service-sidebar .service-sidebar-single-contact-box .phone a {
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-sidebar .service-sidebar-single-contact-box .phone a:hover {
  color: var(--theme-color1);
}
.service-sidebar .service-sidebar-single-contact-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
}
.service-sidebar .service-sidebar-single-btn {
  position: relative;
  display: block;
}
.service-sidebar .service-sidebar-single-btn .thm-btn {
  font-size: 16px;
  padding: 13px 50px 28px;
}
.service-sidebar .service-sidebar-single-btn .thm-btn span::before {
  position: relative;
  display: inline-block;
  top: 13px;
  color: #334b35;
  font-size: 40px;
  padding-right: 25px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  font-weight: 500;
}
.service-sidebar .service-sidebar-single-btn .thm-btn:hover span::before {
  color: #ffffff;
}
.service-sidebar .banner-widget {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}
.service-sidebar .banner-widget .widget-content {
  position: relative;
  display: block;
  width: 100%;
  padding: 45px 30px 40px 30px;
  background-size: cover;
  background-repeat: no-repeat;
}
.service-sidebar .banner-widget .widget-content .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 278px;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-sidebar .banner-widget .content-box {
  position: relative;
  max-width: 200px;
  width: 100%;
}
.service-sidebar .banner-widget .content-box .icon-box {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
  text-align: center;
  border-radius: 5px;
  margin-bottom: 23px;
}
.service-sidebar .banner-widget .content-box .icon-box .icon-shape {
  position: absolute;
  top: -15px;
  right: -38px;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
}
.service-sidebar .banner-widget .content-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.service-sidebar .banner-widget .content-box .theme-btn-two:hover {
  background: #0a267a;
}
.service-sidebar .service-sidebar-single-btn .theme-btn {
  padding: 20px 50px;
}
.service-sidebar .service-sidebar-single-btn .theme-btn .btn-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service-sidebar .service-sidebar-single-btn .theme-btn span::before {
  position: relative;
  display: inline-block;
  font-size: 36px;
  padding-right: 25px;
  margin-top: 7px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  font-weight: 500;
}

.services-details__content .feature-list .single-item {
  position: relative;
  display: block;
  border: 1px solid #e1e8e4;
  padding: 16px 30px 16px 53px;
  margin-bottom: 20px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.services-details__content .feature-list .single-item .icon-box {
  color: var(--theme-color1);
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 18px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.services-details__content .feature-list .single-item .title {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
.services-details__content .feature-list .single-item:hover {
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
}
.services-details__content .feature-list .single-item:hover .icon-box {
  color: var(--text-color-bg-theme-color2);
}
.services-details__content .video-btn {
  background-color: var(--theme-color-white);
  border-radius: 50%;
  color: var(--theme-color-dark);
  display: inline-block;
  font-size: 20px;
  height: 100px;
  left: 0;
  line-height: 100px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 38%;
  width: 100px;
}
@media (max-width: 767.98px) {
  .services-details__content .video-btn {
    height: 60px;
    line-height: 60px;
    width: 60px;
  }
}
.services-details__content .video-btn:before {
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.services-details__content .video-btn:after {
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.sidebar-service-list {
  background-color: var(--theme-color-gray);
  padding: 45px 40px 30px;
  margin: 0;
}
.sidebar-service-list .title {
  color: #0A1222;
  font-weight: 700;
  line-height: 34px;
  position: relative;
  margin-bottom: 30px;
}
.sidebar-service-list .title:before {
  background-color: #0d8494;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  -webkit-transform: matrix(1, 0.01, -0.01, 1, 0, 0);
          transform: matrix(1, 0.01, -0.01, 1, 0, 0);
  width: 100px;
}
.sidebar-service-list li + li {
  margin-top: 10px;
}
.sidebar-service-list li {
  margin-bottom: 20px;
}
.sidebar-service-list li a {
  color: #0A1222;
  display: block;
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sidebar-service-list li a:hover {
  color: var(--theme-color2);
}
.sidebar-service-list li a:hover i {
  color: var(--theme-color2);
  -webkit-transform: translateY(-50%) rotate(-45deg) scale(1.5);
          transform: translateY(-50%) rotate(-45deg) scale(1.5);
}
.sidebar-service-list li a i {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  color: #191825;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 45px;
}
.sidebar-service-list li.current a {
  color: var(--theme-color2);
}
.sidebar-service-list .form-control {
  background-color: var(--theme-color-white);
}
.sidebar-service-list .address li {
  color: #0A1222;
  font-family: var(--text-font);
  font-weight: 500;
  line-height: 44px;
}

.service-details-help {
  position: relative;
  display: block;
  padding: 57px 55px 50px;
  margin-top: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--theme-color1);
  border-radius: 15px;
  overflow: hidden;
}

.help-shape-1 {
  position: absolute;
  bottom: -215px;
  left: -95px;
  width: 220px;
  height: 500px;
  background-color: #303030;
  mix-blend-mode: soft-light;
  border-radius: 150px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}

.help-shape-2 {
  position: absolute;
  top: -118px;
  right: -130px;
  width: 180px;
  height: 350px;
  background-color: #fff;
  mix-blend-mode: soft-light;
  border-radius: 186px;
  -webkit-transform: rotate(48deg);
          transform: rotate(48deg);
}

.help-icon {
  height: 73px;
  width: 73px;
  background-color: #fff;
  color: #191825;
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.help-icon:hover {
  background-color: var(--theme-color-dark);
  color: var(--theme-color1);
}

.help-title {
  font-size: 38px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 21px;
  font-weight: 700;
}

.help-contact {
  position: relative;
  display: block;
  margin-top: 21px;
}
.help-contact p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 32px;
  font-weight: 600;
  opacity: 0.7;
}
.help-contact a {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.help-contact a:hover {
  color: #fff;
}

.nr-list {
  position: relative;
}
.nr-list .title {
  font-style: normal;
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 28px;
}
.nr-list .title span {
  color: transparent;
  font-size: 34px;
  margin-right: 25px;
  -webkit-text-stroke: 1px rgba(10, 18, 34, 0.3);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.nr-list .title:hover span {
  color: #d9d9d9;
}

.outcome-list li {
  color: #6B7280;
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.outcome-list li i {
  color: var(--theme-color2);
  font-size: 22px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details__img {
  display: block;
  position: relative;
}
.project-details__img img {
  border-radius: 10px;
  width: 100%;
}

.project-details__content {
  display: block;
  position: relative;
}

.project-details__content-left {
  display: block;
  margin-top: 31px;
  position: relative;
}

.project-details__content-right {
  display: block;
  margin-top: 40px;
  position: relative;
}

.project-details__details-box {
  background-color: var(--theme-color-gray2);
  border-radius: 10px;
  padding: 43px 50px 50px;
  position: relative;
  z-index: 1;
}

.project-details__details-list {
  display: block;
  position: relative;
}
.project-details__details-list li {
  display: block;
  position: relative;
}
.project-details__details-list li + li {
  margin-top: 24px;
}

.project-details__client {
  color: #838d9e;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.project-details__client a {
  text-decoration: underline;
}
.project-details__client a:hover {
  color: var(--link-color);
}

.project-details__name {
  font-size: 16px;
  line-height: 24px;
}

.project-details__social {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project-details__social a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--theme-color2);
  border-radius: 50%;
  color: var(--text-color-bg-theme-color1);
  font-size: 15px;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 40px;
  z-index: 1;
}
.project-details__social a:hover {
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
}
.project-details__social a + a {
  margin-left: 10px;
}

.project-details__pagination-box {
  display: block;
  padding: 40px 0;
  position: relative;
  text-align: center;
}

.project-details__pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.project-details__pagination li a {
  font-size: 16px;
  color: #696969;
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.project-details__pagination li a:hover {
  color: var(--theme-color1);
}
.project-details__pagination li a:hover i {
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
  border: 2px solid var(--theme-color2);
}
.project-details__pagination li .content {
  position: relative;
  display: block;
}
.project-details__pagination li .title,
.project-details__pagination li .title a {
  color: #0A1222;
  font-family: var(--text-font);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.03em;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.project-details__pagination li .title:hover,
.project-details__pagination li .title a:hover {
  text-decoration-line: underline;
}
.project-details__pagination li.next {
  float: left;
  position: relative;
}
.project-details__pagination li.next .content {
  text-align: left;
  font-weight: var(--body-font-weight-bold);
}
.project-details__pagination li.previous {
  position: relative;
  float: right;
}
.project-details__pagination li.previous .content {
  text-align: right;
}

.room-facility-list {
  position: relative;
}

.room-facility-list .icon {
  border: 1px solid var(--theme-color1);
  border-radius: 50%;
  display: block;
  font-size: 22px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.room-facility-list .list-one:hover .icon {
  background-color: var(--theme-color1);
  color: #fff;
}

.room-details__content-right {
  position: relative;
  display: block;
  margin-top: 40px;
}

.room-details__details-box {
  background-color: #f5f6f7;
  border: 1px solid var(--theme-color1);
  border-radius: 10px;
  padding: 43px 50px 30px 50px;
  position: relative;
  z-index: 1;
}

.product-details.rd-page .bx-wrapper {
  margin-bottom: 30px;
}

.product-details.rd-page .bx-wrapper .thumb-box li {
  height: auto;
}

@media only screen and (max-width: 480px) {
  .room-block .inner-box .box-caption .book-btn {
    padding: 0 10px;
    margin-right: 10px;
  }
  .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
    margin-right: 10px;
  }
  .rooms-section {
    padding: 80px 0;
  }
}
.project-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.project-list li {
  color: #0A1222;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 19px;
  margin-bottom: 30px;
}
.project-list i {
  color: var(--theme-color2);
  margin-right: 10px;
}

.project-list-item .icon {
  color: var(--theme-color2);
  font-size: 26px;
}
.project-list-item .title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--headings-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.03em;
}
.project-list-item .text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text-color2);
  font-family: var(--text-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

/***

====================================================================
    Blog Details
====================================================================

***/
.blog-details {
  position: relative;
  display: block;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.blog-details__img img {
  width: 100%;
  border-radius: 10px;
}

.blog-details__date {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--theme-color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 21px 24px 20px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}
.blog-details__date .day {
  color: #fff;
  font-size: 16px;
  font-weight: var(--body-font-weight-bold);
  line-height: 16px;
}
.blog-details__date .month {
  color: #fff;
  display: block;
  font-size: 10px;
  font-weight: var(--body-font-weight-bold);
  line-height: 12px;
  position: relative;
  text-transform: uppercase;
}

.blog-details__content {
  display: block;
  margin-top: 22px;
  position: relative;
}

.blog-details__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.blog-details__meta li + li {
  margin-left: 18px;
}
.blog-details__meta li a {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-details__meta li a:hover {
  color: var(--theme-color1);
}
.blog-details__meta li a i {
  color: var(--theme-color2);
  margin-right: 6px;
}
.blog-details__content h2,
.blog-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 21px;
}

.blog-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 49px;
  border-top: 1px solid #ece9e0;
}
@media only screen and (max-width: 767px) {
  .blog-details__bottom {
    gap: 30px;
  }
}
.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: #0e2207;
  font-size: 20px;
  margin-right: 14px;
  font-weight: var(--body-font-weight-bold);
}
.blog-details__tags a {
  background-color: var(--theme-color2);
  border-radius: 35px;
  color: var(--theme-color-white);
  display: inline-block;
  font-size: 14px;
  font-weight: var(--body-font-weight-bold);
  padding: 8px 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none;
}
.blog-details__tags a:hover {
  background-color: var(--theme-color2);
  color: var(--theme-color-white);
}
.blog-details__tags a + a {
  margin-left: 6px;
}

.blog-details__social-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-details__social-list a {
  background-color: var(--theme-color2);
  border-radius: 50%;
  color: var(--theme-color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  font-size: 15px;
  height: 43px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 43px;
  z-index: 1;
}
.blog-details__social-list a:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}
.blog-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.blog-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--theme-color2);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}
.blog-details__social-list a + a {
  margin-left: 10px;
}

.blog-details__pagenation-box {
  display: block;
  margin-bottom: 53px;
  overflow: hidden;
  position: relative;
}

.blog-details__pagenation {
  display: block;
  position: relative;
}
.blog-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: #0e2207;
  font-weight: var(--body-font-weight-bold);
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 52px;
  padding-bottom: 52px;
  border-radius: 10px;
}
.blog-details__pagenation li:hover {
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
}
.blog-details__pagenation li + li {
  margin-left: 30px;
}

/* Nav Links */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 53px;
}
@media only screen and (max-width: 767px) {
  .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.nav-links .prev {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 30px;
  width: calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
  .nav-links .prev {
    width: 100%;
  }
}
.nav-links .prev .thumb {
  margin-right: 20px;
}
.nav-links .next {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 100%;
  width: calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
  .nav-links .next {
    width: 100%;
  }
}
.nav-links .next .thumb {
  margin-left: 20px;
}
.nav-links > div {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.nav-links > div .thumb {
  display: inline-block;
  height: 60px;
  min-width: 60px;
  overflow: hidden;
  width: 60px;
}
.nav-links > div .thumb a {
  display: inline-block;
}
.nav-links > div > a {
  background-color: var(--theme-color-gray);
  border-radius: 10px;
  color: var(--theme-light-background-text-color);
  display: inline-block;
  font-size: 20px;
  font-weight: var(--body-font-weight-bold);
  line-height: 1.637;
  padding: 52px 50px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  word-wrap: break-word;
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .nav-links > div > a {
    padding: 30px;
  }
}
.nav-links > div > a:hover {
  background-color: var(--theme-color2);
  color: var(--theme-color-light);
}

/*** 

====================================================================
Sidebar
====================================================================

***/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  font-size: 20px;
  font-weight: var(--h4-font-weight);
  margin: 0;
  margin-bottom: 5px;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}
.sidebar__search-form input[type=search] {
  background-color: var(--theme-color2);
  border: none;
  border-radius: 10px;
  color: var(--theme-color-light);
  display: block;
  font-size: 16px;
  font-weight: 500;
  height: 74px;
  outline: none;
  padding-left: 50px;
  padding-right: 80px;
  width: 100%;
}
.sidebar__search-form input[type=search]::-webkit-input-placeholder {
  color: var(--theme-color-light);
  opacity: 1;
}
.sidebar__search-form input[type=search]::-webkit-input-placeholder, .sidebar__search-form input[type=search]:-ms-input-placeholder, .sidebar__search-form input[type=search]::-ms-input-placeholder, .sidebar__search-form input[type=search]::placeholder {
  color: var(--theme-color-light);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__search-form input[type=search] {
    padding-left: 30px;
  }
}
.sidebar__search-form button[type=submit] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  bottom: 0;
  border: none;
  color: #fff;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
}
@media only screen and (max-width: 767px) {
  .sidebar__search-form button[type=submit] {
    width: 42px;
  }
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  color: var(--bg-theme-color1);
  background-color: var(--theme-color-gray);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__post {
    padding: 30px;
  }
}
.sidebar__post .sidebar__title {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__title {
    margin-left: 0;
  }
}
.sidebar__post .sidebar__post-list {
  margin: 0;
}
.sidebar__post .sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__post-list li {
    padding: 16px 0;
  }
}
.sidebar__post .sidebar__post-list li:hover {
  background-color: #ffffff;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list li + li {
  margin-top: 11px;
}
.sidebar__post .sidebar__post-list .sidebar__post-image {
  margin-right: 20px;
  -webkit-box-flex: 70px;
      -ms-flex: 70px 0 0px;
          flex: 70px 0 0;
}
.sidebar__post .sidebar__post-list .sidebar__post-image > img {
  width: 80px;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content {
  position: relative;
  top: -3px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
  letter-spacing: 0;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
  color: #0e2207;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: #757873 !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
  color: var(--theme-color2);
  font-size: 13px;
  padding-right: 5px;
}

.sidebar__category {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-color-gray);
  border-radius: 10px;
  padding: 45px 30px 38px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__category {
    padding: 30px 15px 30px;
  }
}
.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}
.sidebar__category-list {
  margin: 0;
}
.sidebar__category-list li + li {
  margin-top: 4px;
}
.sidebar__category-list li a {
  color: #757873;
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 10px;
}
.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}
.sidebar__category-list li a:hover span {
  color: #ffcd1e;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}
.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--theme-color2);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}
.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  border-radius: 10px;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}
.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: #ffcd1e;
}

.sidebar__tags {
  background-color: var(--theme-color-gray);
  border-radius: 10px;
  color: var(--theme-light-background-text-color);
  display: block;
  overflow: hidden;
  padding: 46px 45px 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__tags {
    padding: 30px;
  }
}
.sidebar__tags .sidebar__title {
  margin-bottom: 25px;
  margin-left: 5px;
}

.sidebar__tags-list {
  margin-top: -10px;
}
.sidebar__tags-list a {
  background: var(--theme-color-white);
  border-radius: 30px;
  color: #0e2207;
  display: inline-block;
  font-size: 14px;
  margin-left: 5px;
  padding: 5px 28px 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidebar__tags-list a:hover {
  color: var(--theme-color-white);
  background: var(--theme-color2);
}
.sidebar__tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__comments {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-color-gray);
  padding: 46px 50px 43px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__comments {
    padding: 30px;
  }
}
.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__comments-list {
  position: relative;
  display: block;
}
.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}
.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: var(--theme-color1);
  color: var(--theme-color-dark);
}
.sidebar__comments-list li + li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--theme-color2);
  border-radius: 50%;
  font-size: 15px;
  color: var(--theme-color-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}
.sidebar__comments-text-box p span {
  color: #0e2207;
}
.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: #757873;
  font-weight: 500;
  letter-spacing: 0;
}

/*** 

====================================================================
    Comments
====================================================================

***/
.comment-one .comment-one__title {
  margin-bottom: 30px;
}
.comment-one .comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ece9e0;
  padding-bottom: 60px;
  margin-bottom: 60px;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}
@media only screen and (max-width: 767px) {
  .comment-one .comment-one__single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.comment-one .comment-one__content {
  position: relative;
  margin-left: 45px;
}
@media only screen and (max-width: 767px) {
  .comment-one .comment-one__content {
    margin-top: 20px;
    margin-left: 0;
  }
}
.comment-one .comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--theme-color-dark);
  margin-bottom: 24px;
}
.comment-one .comment-one__content p {
  font-size: 16px;
}
.comment-one .comment-one__btn {
  background-color: var(--theme-color2);
  border-radius: 35px;
  color: var(--theme-color-white);
  font-size: 12px;
  padding: 5px 30px;
  position: absolute;
  right: 0;
  top: 0;
}
.comment-one .comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
  -webkit-box-flex: 100px;
      -ms-flex: 100px 0 0px;
          flex: 100px 0 0;
}
.comment-one .comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
}

.team-details__top {
  padding: 0 0 120px;
}

.team-details-shape-1 {
  position: absolute;
  bottom: -270px;
  right: 0;
  opacity: 0.5;
  z-index: 2;
}
.team-details-shape-1 img {
  width: auto;
}

.team-details__top-left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.team-details__top-img {
  position: relative;
  display: block;
  border-radius: 30px;
}
.team-details__top-img img {
  width: 100%;
  border-radius: 30px;
}

.team-details__big-text {
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  color: #eef0f6;
  letter-spacing: 0.35em;
  font-weight: 400;
  position: absolute;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 209px;
  left: -325px;
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 70px;
}
@media only screen and (max-width: 991px) {
  .team-details__top-right {
    margin-top: 70px;
    margin-left: 0;
  }
}

.team-details__top-content {
  position: relative;
  display: block;
  margin-top: -11px;
}

.team-details__top-name {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 3px;
}

.team-details__top-title {
  color: var(--theme-color2);
  font-size: 16px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 28px;
}
.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--theme-color2);
  border-radius: 50%;
  color: var(--theme-color-light);
  font-size: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-details__social a:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-dark);
}
.team-details__social a + a {
  margin-left: 10px;
}

.team-details__top-text-1 {
  color: var(--theme-color2);
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 30px;
}

.team-details__top-text-2 {
  padding-top: 23px;
  padding-bottom: 35px;
}

.team-details__bottom {
  border-top: 1px solid #e4e5ea;
  display: block;
  padding-top: 110px;
  position: relative;
}

.team-details__bottom-left {
  display: block;
  margin-right: 70px;
  position: relative;
}

.team-details__bottom-left-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.team-details__bottom-left-text {
  padding-top: 30px;
}

.team-details__bottom-right {
  display: block;
  margin-left: 70px;
  margin-top: 1px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .team-details__bottom-right {
    margin-left: 0;
  }
}

.team-details__progress {
  display: block;
  position: relative;
  width: 100%;
}
.team-details__progress .bar {
  background-color: #eef0f6;
  border-radius: 7px;
  height: 13px;
  margin-bottom: 22px;
  position: relative;
  width: 100%;
}
.team-details__progress .bar-inner {
  background-color: var(--theme-color1);
  border-radius: 7px;
  display: block;
  height: 13px;
  position: relative;
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  width: 0px;
}
.team-details__progress .count-text {
  bottom: 21px;
  color: var(--theme-color2);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  opacity: 0;
  position: absolute;
  right: 0px;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}
.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}

.team-details__progress-single {
  display: block;
  position: relative;
}

.team-details__progress-title {
  color: var(--theme-color2);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 6px;
}

.team-contact-form {
  background-color: #eef0f6;
}
.team-contact-form input[type=text],
.team-contact-form input[type=email] {
  background-color: #fff;
}
.team-contact-form textarea {
  background-color: #fff;
  height: 180px;
}

/*==================================================
=            Bootstrap 5 Media Queries             =
$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
);
==================================================*/
/*==========  Mobile First Method  ==========*/
/*==========  Non-Mobile First Method  ==========*/
@media (max-width: 767.98px) {
  .pt-120 {
    padding-top: 60px !important;
  }
  .pb-120 {
    padding-bottom: 60px !important;
  }
  .mt-120 {
    margin-top: 60px !important;
  }
  .mb-120 {
    margin-bottom: 60px !important;
  }
  .pt-100 {
    padding-top: 50px !important;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mb-100 {
    margin-bottom: 50px !important;
  }
  .pt-80 {
    padding-top: 40px !important;
  }
  .pb-80 {
    padding-bottom: 40px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .mb-80 {
    margin-bottom: 40px !important;
  }
  .pt-50 {
    padding-top: 25px !important;
  }
  .pb-50 {
    padding-bottom: 25px !important;
  }
  .pt-60 {
    padding-top: 30px !important;
  }
  .pb-60 {
    padding-bottom: 30px !important;
  }
  .mt-50 {
    margin-top: 25px !important;
  }
  .mb-50 {
    margin-bottom: 25px !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .mb-60 {
    margin-bottom: 30px !important;
  }
}
/*==========  minimum and maximum breakpoint Method  ==========*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 {
    font-size: 3.3rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }
}

.primaryColourText {
    color:var(--bg-theme-color1);
}
.bg-lb {
    background-color:var(--theme-color1);
}
.bg-db {
    background-color: var(--theme-color2) !important;
}
#modal-loader {
    height: 100% !important;
    width: 100% !important;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    position: absolute !important;
    top: 0px;
    background-image: url(/images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
}

.contact-list-one li .icon {
    color: var(--darkBlue);
}


.mobile-menu-visible .mobile-menu .content-box .text {
    color: initial
}

.mobile-menu-visible .mobile-menu .content-box .col-12 {
    font-size: 0.9rem
}

.mobile-menu-visible .mobile-menu .content-box .title {
    display: block;
    color: var(--darkBlue);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: unset
}

.menu-box hr {
    margin: unset
}

a.active {
    color: var(--darkGreen);
}

.nav-link:focus,
.nav-link:active,
.nav-link:hover {
    color: var(--darkBlue);
}
.nav-link {
    color: var(--link-color);
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
/*    background: #fff url('ajax-loader.gif') center center no-repeat;*/
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

/*    src: url('fonts/slick.eot');
    src: url('fonts/slick.eot?#iefix') format('embedded-opentype'), url('fonts/slick.woff') format('woff'), url('fonts/slick.ttf') format('truetype'), url('fonts/slick.svg#slick') format('svg');
*/}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}



.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
