/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/animate/animate.min.css */
@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);
    }

}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/animate/custom-animate.css */
/*** 
=============================================
    Ripple Css
=============================================
***/

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 40px 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 40px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 40px 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);
  }
}

/*** 
=============================================
    Sun Move Css
=============================================
***/
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

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

  75% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

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

/*** 
=============================================
    Ripple Css
=============================================
***/
@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 20px 0 0 20px 0 #fff;
    box-shadow: 0 0 0 20px 0 0 20px 0 #fff
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 #fff;
    box-shadow: 0 0 0 0 #fff
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 20px rgb(255, 255, 255, .2);
    box-shadow: 0 0 0 20px rgb(255, 255, 255, .2)
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgb(255, 255, 255, 0)
  }
}



@-webkit-keyframes ripple2 {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

/*** 
=============================================
    circle Css
=============================================
***/
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

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

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}



/*** 
=============================================
    Rotate Me
=============================================
***/
.rotate-me {
  animation-name: rotateme;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

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

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

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

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


@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

  to {
    -webkit-transform: rotate(360deg);
  }
}

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

  to {
    -moz-transform: rotate(360deg);
  }
}

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

  to {
    -o-transform: rotate(360deg);
  }
}



/*** 
=============================================
    Float Bob
=============================================
***/
.float-bob {
  animation-name: float-bob;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 7s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: float-bob;
  -moz-animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: float-bob;
  -ms-animation-duration: 7s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: float-bob;
  -o-animation-duration: 7s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

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

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

@keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

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

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



/*** 
=============================================
    Float Bob Y Animation Css
=============================================
***/
@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

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

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

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

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}




/*** 
=============================================
    Zoom In Out Css
=============================================
***/
.zoominout {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}




/*** 
=============================================
    Zoom In Out 2 Css
=============================================
***/
.zoominout-2 {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut2;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut2;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut2;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut2;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut2 {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }
}























@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}








@-webkit-keyframes bgSlideReverse {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: 100px 0;
  }

  40% {
    background-position: 200px 0;
  }

  60% {
    background-position: 150px 0;
  }

  80% {
    background-position: 100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}

@keyframes bgSlideReverse {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: 100px 0;
  }

  40% {
    background-position: 200px 0;
  }

  60% {
    background-position: 150px 0;
  }

  80% {
    background-position: 100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}



@-webkit-keyframes bgSlideReverse2 {
  0% {
    background-position: -0 0;
  }

  20% {
    background-position: -100px 0;
  }

  40% {
    background-position: -200px 0;
  }

  60% {
    background-position: -150px 0;
  }

  80% {
    background-position: -100px 0;
  }

  100% {
    background-position: -0px 0;
  }
}

@keyframes bgSlideReverse2 {
  0% {
    background-position: -0 0;
  }

  20% {
    background-position: -100px 0;
  }

  40% {
    background-position: -200px 0;
  }

  60% {
    background-position: -150px 0;
  }

  80% {
    background-position: -100px 0;
  }

  100% {
    background-position: -0px 0;
  }
}






@-webkit-keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

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

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

@keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

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

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

.banner-animate {
  animation-name: banner-animate;
  animation-duration: 70s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: banner-animate;
  -webkit-animation-duration: 70s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: banner-animate;
  -moz-animation-duration: 70s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: banner-animate;
  -ms-animation-duration: 70s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: banner-animate;
  -o-animation-duration: 70s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}










/*** 
=============================================
    Animation1 Css
=============================================
***/
@-webkit-keyframes animation1 {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

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

@keyframes animation1 {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

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



/*** 
=============================================
    Animation2 Css
=============================================
***/
@animation2 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}

@-moz-keyframes animation2 {
  0% {
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}

@-o-keyframes animation2 {
  0% {
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}

@keyframes animation2 {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}









@-webkit-keyframes bgSlide {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: -100px 0;
  }

  40% {
    background-position: -200px 0;
  }

  60% {
    background-position: -150px 0;
  }

  80% {
    background-position: -100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}


@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: -100px 0;
  }

  40% {
    background-position: -200px 0;
  }

  60% {
    background-position: -150px 0;
  }

  80% {
    background-position: -100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}

@-webkit-keyframes bgSlideReverse {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: 100px 0;
  }

  40% {
    background-position: 200px 0;
  }

  60% {
    background-position: 150px 0;
  }

  80% {
    background-position: 100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}

@keyframes bgSlideReverse {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: 100px 0;
  }

  40% {
    background-position: 200px 0;
  }

  60% {
    background-position: 150px 0;
  }

  80% {
    background-position: 100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}

@-webkit-keyframes ribbonRotate {

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

  25%,
  75% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

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

@keyframes ribbonRotate {

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

  25%,
  75% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

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



@-webkit-keyframes footerFish {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
    transform: translateX(0) translateY(0) rotate(0);
  }

  25%,
  75% {
    -webkit-transform: translateX(20px) translateY(30px) rotate(25deg);
    transform: translateX(20px) translateY(30px) rotate(25deg);
  }

  50% {
    -webkit-transform: translateX(40px) translateY(60px) rotate(45deg);
    transform: translateX(40px) translateY(60px) rotate(45deg);
  }
}

@keyframes footerFish {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
    transform: translateX(0) translateY(0) rotate(0);
  }

  25%,
  75% {
    -webkit-transform: translateX(20px) translateY(30px) rotate(25deg);
    transform: translateX(20px) translateY(30px) rotate(25deg);
  }

  50% {
    -webkit-transform: translateX(40px) translateY(60px) rotate(45deg);
    transform: translateX(40px) translateY(60px) rotate(45deg);
  }
}

@-webkit-keyframes contactSwimmer {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
    transform: translateX(0) translateY(0) rotate(0);
  }

  25%,
  75% {
    -webkit-transform: translateX(15px) translateY(20px) rotate(10deg);
    transform: translateX(15px) translateY(20px) rotate(10deg);
  }

  50% {
    -webkit-transform: translateX(60px) translateY(35px) rotate(15deg);
    transform: translateX(60px) translateY(35px) rotate(15deg);
  }
}

@keyframes contactSwimmer {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
    transform: translateX(0) translateY(0) rotate(0);
  }

  25%,
  75% {
    -webkit-transform: translateX(15px) translateY(20px) rotate(10deg);
    transform: translateX(15px) translateY(20px) rotate(10deg);
  }

  50% {
    -webkit-transform: translateX(60px) translateY(35px) rotate(15deg);
    transform: translateX(60px) translateY(35px) rotate(15deg);
  }
}




@-webkit-keyframes footerTree {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

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

@keyframes footerTree {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

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

.footertree {
  -webkit-animation: footerTree 5s ease-in infinite;
  animation: footerTree 5s ease-in infinite;
}



@service_hexagon_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}

@-moz-keyframes service_hexagon_2 {
  0% {
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}

@-o-keyframes service_hexagon_2 {
  0% {
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}

@keyframes service_hexagon_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg)
  }

  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg)
  }
}



@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: -100px 0;
  }

  40% {
    background-position: -200px 0;
  }

  60% {
    background-position: -150px 0;
  }

  80% {
    background-position: -100px 0;
  }

  100% {
    background-position: 0px 0;
  }
}











@keyframes rotateScale {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateScale {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotateScale {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg);
  }
}

@-o-keyframes rotateScale {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotatescale {
  -webkit-animation-name: rotateScale;
  -webkit-animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: rotateScale;
  -moz-animation-duration: 20s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: rotateScale;
  -ms-animation-duration: 20s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  animation-name: rotateScale;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@-webkit-keyframes bubbleMover {
  0% {
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: center center;
  }

  50% {
    transform: translateY(50px) translateX(100px) rotate(45deg);
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: left top;
  }

  100% {
    transform: translateY(0px) translateX(0) rotate(0);
    transform-origin: center center;
  }
}

@keyframes bubbleMover {
  0% {
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: center center;
  }

  50% {
    transform: translateY(50px) translateX(100px) rotate(45deg);
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: left top;
  }

  100% {
    transform: translateY(0px) translateX(0) rotate(0);
    transform-origin: center center;
  }
}

@-webkit-keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

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

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

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

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

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

@keyframes banner3Shake {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

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

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

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

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

@-webkit-keyframes squareMover {

  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@-webkit-keyframes treeMove {

  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes treeMove {

  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    transform: rotate(10deg) translateX(30px);
  }
}


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

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

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

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

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

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

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

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

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

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

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


/* custom animations */

@keyframes btnIconMove {
  0% {
    transform: rotate(0deg) translate(0px, 0px);
  }

  50% {
    transform: rotate(20deg) translate(10px, 0px);
  }

  100% {
    transform: rotate(0deg) translate(0px, 0px);
  }
}

@keyframes ImgBounce {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(10px);
  }

  75% {
    transform: translateY(5px);
  }

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






/** squares **/

@-moz-keyframessquares {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0
  }

  20% {
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1
  }

  100% {
    -webkit-transform: scale(2.1);
    transform: scale(2.1);
    opacity: 0
  }
}

@-moz-keyframes squares {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0
  }

  20% {
    -moz-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1
  }

  100% {
    -moz-transform: scale(2.1);
    transform: scale(2.1);
    opacity: 0
  }
}

@-o-keyframes squares {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0
  }

  20% {
    -o-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1
  }

  100% {
    -o-transform: scale(2.1);
    transform: scale(2.1);
    opacity: 0
  }
}

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

  20% {
    -webkit-transform: scale(1.24);
    -moz-transform: scale(1.24);
    -o-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1
  }

  100% {
    -webkit-transform: scale(2.1);
    -moz-transform: scale(2.1);
    -o-transform: scale(2.1);
    transform: scale(2.1);
    opacity: 0
  }
}

/***
=============================================
    Float Bob X Animation Css
=============================================
***/
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}




/***
=============================================
    Float Bob X Animation Css
=============================================
***/
@-webkit-keyframes float-bob-x-2 {
  0% {
    transform: translateX(-30px) translateY(-50%);
  }

  50% {
    transform: translateX(-10px) translateY(-50%);
  }

  100% {
    transform: translateX(-30px) translateY(-50%);
  }
}

@keyframes float-bob-x-2 {
  0% {
    transform: translateX(-30px) translateY(-50%);
  }

  50% {
    transform: translateX(-10px) translateY(-50%);
  }

  100% {
    transform: translateX(-30px) translateY(-50%);
  }
}

.float-bob-x-2 {
  -webkit-animation-name: float-bob-x-2;
  animation-name: float-bob-x-2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/bootstrap-select/css/bootstrap-select.min.css */
/*!
 * Bootstrap-select v1.14.0-beta2 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2021 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:-webkit-calc(((-1em / 1.5) + 1ex)/ 2);top:calc(((-1em / 1.5) + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/bxslider/jquery.bxslider.css */
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border:  5px solid #fff;
	left: -5px;
	background: #fff;
	
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
    	-ms-transform: translatez(0);
    	-o-transform: translatez(0);
    	transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(/bx_loader) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(/controls) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(/controls) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(/controls) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(/controls) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}


/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/jquery-magnific-popup/jquery.magnific-popup.css */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
  border: 5px dashed rgba(0, 0, 0, 0.70);
}

.mfp-iframe-holder .mfp-close {
  top: -45px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.70);
  border-radius: 0%;
  padding: 0;
  text-align: center;
  right: -5px;
  line-height: 38px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/jquery-ui/jquery-ui.css */
/*! jQuery UI - v1.11.4 - 2016-04-01
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
	font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url("/resources/assets/vendors/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url("/resources/assets/vendors/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	background: #dadada url("/resources/assets/vendors/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #212121;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff url("/resources/assets/vendors/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url("/resources/assets/vendors/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url("/resources/assets/vendors/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_222222_256x240.png");
}
.ui-state-default .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_888888_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("/resources/assets/vendors/jquery-ui/images/ui-icons_cd0a0a_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
	border-radius: 8px;
}


/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/nice-select/nice-select.css */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}



.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}


.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  color: var(--thm-base);
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 700;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/nouislider/nouislider.min.css */
/*! nouislider - 14.1.1 - 12/15/2019 */
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-connect{height:100%;width:100%}.noUi-origin{height:10%;width:10%}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;top:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/nouislider/nouislider.pips.css */

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-pips {
	position: absolute;
	font: 400 12px Arial;
	color: #999;
}

/* Values;
 *
 */
.noUi-value {
	width: 40px;
	position: absolute;
	text-align: center;
}
.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
	position: absolute;
	background: #CCC;
}
.noUi-marker-sub {
	background: #AAA;
}
.noUi-marker-large {
	background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
	padding: 10px 0;
	height: 50px;
	top: 100%;
	left: 0;
	width: 100%;
}
.noUi-value-horizontal {
	margin-left: -20px;
	padding-top: 20px;
}
.noUi-value-horizontal.noUi-value-sub {
	padding-top: 15px;
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}
.noUi-value-vertical {
	width: 15px;
	margin-left: 20px;
	margin-top: -5px;
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}


/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/odometer/odometer.min.css */
.odometer.odometer-auto-theme,.odometer.odometer-theme-default{display:inline-block;vertical-align:middle;position:relative}.odometer.odometer-auto-theme .odometer-digit,.odometer.odometer-theme-default .odometer-digit{display:inline-block;vertical-align:middle;position:relative}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer{display:inline-block;vertical-align:middle;visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner{text-align:left;display:block;position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon{display:block}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner{display:block;-webkit-backface-visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-value,.odometer.odometer-theme-default .odometer-digit .odometer-value{display:block;-webkit-transform:translateZ(0)}.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value{position:absolute}.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s}.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.odometer.odometer-auto-theme,.odometer.odometer-theme-default{font-family:"Helvetica Neue",sans-serif;line-height:1.1em}.odometer.odometer-auto-theme .odometer-value,.odometer.odometer-theme-default .odometer-value{text-align:center}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/owl-carousel/owl.carousel.min.css */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/owl.video.play) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/owl-carousel/owl.theme.default.min.css */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/swiper/swiper.min.css */
/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/timepicker/timePicker.css */
/**
 * FILE: jquery.ptTileSelect.css
 * 	Default style for the timeselect container.
 * 
 *  LAST UPDATED:
 * 
 * 		- $Date: 2009/04/12 20:23:02 $
 * 		- $Author: paulinho4u $
 * 		- $Revision: 1.1 $
 */


#ptTimeSelectCntr {
  display: none;
  font-size: 12px;
  margin-left: 0;
  position: absolute;
  width: 270px !important;
  z-index: 10;
}




#ptTimeSelectCntr .ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: medium none !important;
  border-radius: 0;
  margin-bottom: 0px;
  margin-top: 0 !important;
  padding: 5px;
}
#ptTimeSelectCntr .ui-widget.ui-widget-content {
  border: 1px solid #ddd !important;
}
#ptTimeSelectCntr .ui-widget{}
#ptTimeSelectCntr .ui-widget-header {
    background: var(--wostin-base) none repeat scroll 0 0;
    border: 2px solid var(--wostin-base);
    border-radius: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    height: 40px;
    padding: 5px;
}
#ptTimeSelectCntr #ptTimeSelectUserTime {
  font-size: larger;
  line-height: 26px;
  padding: 0 10px;
  text-align: center;
}
#ptTimeSelectCntr .ui-widget-header .ui-icon {
  background-image: url("/ui-icons_444444_256x240") !importent;
}




#ptTimeSelectCntr #ptTimeSelectCloseCntr {
  display: block;
  padding: 0;
}






#ptTimeSelectCntr .ui-widget.ui-widget-content {
	margin-top: 0;
}
#ptTimeSelectCntr .ptTimeSelectLeftPane.ui-widget-content {
	border-top:none;
	border-bottom:none;
	border-left:none;
	border-right-width: 2px;
}
#ptTimeSelectCntr .ptTimeSelectRightPane.ui-widget-content {
	border: none;
}




/*  content style and  hover style */
#ptTimeSelectCntr .ptTimeSelectHrCntr a, 
#ptTimeSelectCntr .ptTimeSelectMinCntr a {
  display: block;
  float: left;
  line-height: 32px;
  margin: 2px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  transition: all 500ms ease;
}
#ptTimeSelectCntr .ptTimeSelectHrCntr a:hover, 
#ptTimeSelectCntr .ptTimeSelectMinCntr a:hover{
  background: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
}



/*  Hour min text style */
#ptTimeSelectCntr .ptTimeSelectTimeLabelsCntr {
  color: #252525;
  font-size: 13px;
  font-weight: 700;
}


/*  Cloase button style */
#ptTimeSelectCntr #ptTimeSelectCloseCntr a {
  border-radius: 30%;
  display: block;
  height: 25px !important;
  line-height: 24px;
  margin: 0 !important;
  opacity: 1;
  padding: 0 !important;
  text-align: center;
  width: 25px !important;
  padding: 3px 4px !important;
}

/*  am pm content style, hover bg */
#ptTimeSelectCntr .ui-state-default {
  background: #fff !important;
  border: 1px solid #eaeaea !important;
  border-radius: 0;
  color: #252525 !important;
  font-size: 12px;
  font-weight: normal;
  height: 34px;
  margin-bottom: 5px;
  outline: medium none;
  text-align: center;
  width: 34px !important;
  line-height: 33px;
  margin: 2px;
  transition: all 500ms ease;
}
#ptTimeSelectCntr .ui-state-default:hover{
  background: #f5f5f5 !important; 
  border-color: #f5f5f5 !important; 
}


/*  For time set button css */
#ptTimeSelectCntr #ptTimeSelectSetButton {
  padding: 0 15px 5px 0;
}
#ptTimeSelectSetButton .ui-state-hover{
  background: #d5ac63 !important;
  border: 2px solid #252525 !important;
  border-radius: 0;
  color: #252525 !important;
  font-size: 12px !important;
  font-weight: normal;
  height: 35px;  
  width: 70px !important;
}
#ptTimeSelectCntr #ptTimeSelectSetButton a {
  display: block;
  text-align: center;
  float: right;
  background: #252525 !important;
  border: 2px solid #252525 !important;
  border-radius: 0;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: normal;
  height: 35px;  
  width: 70px !important;
  padding: 0;
  margin: 0;
  line-height: 32px;
  text-transform: uppercase;
  transition: all 500ms ease;
}
#ptTimeSelectCntr #ptTimeSelectSetButton a:hover{
  background: #555555 !important;  
} 








/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/tiny-slider/tiny-slider.min.css */
.tns-outer{padding:0!important}.tns-outer [hidden]{display:none!important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s,opacity 0s;-moz-transition:transform 0s,opacity 0s;transition:transform 0s,opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto!important}.tns-gallery>.tns-moving{-webkit-transition:all .25s;-moz-transition:all .25s;transition:all .25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity .6s;-moz-transition:opacity .6s;transition:opacity .6s;opacity:.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;z-index:0}.tns-fadeOut,.tns-normal{opacity:0;z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/vegas/vegas.min.css */
.vegas-overlay,.vegas-slide,.vegas-slide-inner,.vegas-timer,.vegas-wrapper{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-overlay{opacity:.5;background:url(/02) center center}.vegas-timer{top:auto;bottom:0;height:2px}.vegas-timer-progress{width:0;height:100%;background:#fff;transition:width ease-out}.vegas-timer-running .vegas-timer-progress{width:100%}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:center center no-repeat;-webkit-transform:translateZ(0);transform:translateZ(0);will-change:transform,opacity}body .vegas-container{overflow:hidden!important;position:relative}.vegas-video{min-width:100%;min-height:100%;width:auto;height:auto}body.vegas-container{overflow:auto;position:static;z-index:-2}body.vegas-container>.vegas-overlay,body.vegas-container>.vegas-slide,body.vegas-container>.vegas-timer{position:fixed;z-index:-1}.vegas-transition-blur,.vegas-transition-blur2{opacity:0;-webkit-filter:blur(32px) brightness(1.01);filter:blur(32px) brightness(1.01)}.vegas-transition-blur-in,.vegas-transition-blur2-in{opacity:1;-webkit-filter:blur(0) brightness(1.01);filter:blur(0) brightness(1.01)}.vegas-transition-blur2-out{opacity:0}.vegas-transition-burn,.vegas-transition-burn2{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-burn-in,.vegas-transition-burn2-in{opacity:1;-webkit-filter:contrast(100%) saturate(100%);filter:contrast(100%) saturate(100%)}.vegas-transition-burn2-out{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}.vegas-transition-flash,.vegas-transition-flash2{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-flash-in,.vegas-transition-flash2-in{opacity:1;-webkit-filter:brightness(1);filter:brightness(1)}.vegas-transition-flash2-out{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-negative,.vegas-transition-negative2{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-negative-in,.vegas-transition-negative2-in{opacity:1;-webkit-filter:invert(0);filter:invert(0)}.vegas-transition-negative2-out{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-slideDown,.vegas-transition-slideDown2{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.vegas-transition-slideDown-in,.vegas-transition-slideDown2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideDown2-out{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-slideLeft,.vegas-transition-slideLeft2{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideLeft-in,.vegas-transition-slideLeft2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideLeft2-out,.vegas-transition-slideRight,.vegas-transition-slideRight2{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.vegas-transition-slideRight-in,.vegas-transition-slideRight2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideRight2-out{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideUp,.vegas-transition-slideUp2{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-slideUp-in,.vegas-transition-slideUp2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideUp2-out{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.vegas-transition-swirlLeft,.vegas-transition-swirlLeft2{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-transition-swirlLeft-in,.vegas-transition-swirlLeft2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlLeft2-out,.vegas-transition-swirlRight,.vegas-transition-swirlRight2{-webkit-transform:scale(2) rotate(-35deg);transform:scale(2) rotate(-35deg);opacity:0}.vegas-transition-swirlRight-in,.vegas-transition-swirlRight2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlRight2-out{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-transition-zoomIn,.vegas-transition-zoomIn2{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-transition-zoomIn-in,.vegas-transition-zoomIn2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomIn2-out,.vegas-transition-zoomOut,.vegas-transition-zoomOut2{-webkit-transform:scale(2);transform:scale(2);opacity:0}.vegas-transition-zoomOut-in,.vegas-transition-zoomOut2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomOut2-out{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-animation-kenburns{-webkit-animation:kenburns ease-out;animation:kenburns ease-out}@-webkit-keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}.vegas-animation-kenburnsDownLeft{-webkit-animation:kenburnsDownLeft ease-out;animation:kenburnsDownLeft ease-out}@-webkit-keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDownRight{-webkit-animation:kenburnsDownRight ease-out;animation:kenburnsDownRight ease-out}@-webkit-keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDown{-webkit-animation:kenburnsDown ease-out;animation:kenburnsDown ease-out}@-webkit-keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsLeft{-webkit-animation:kenburnsLeft ease-out;animation:kenburnsLeft ease-out}@-webkit-keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsRight{-webkit-animation:kenburnsRight ease-out;animation:kenburnsRight ease-out}@-webkit-keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpLeft{-webkit-animation:kenburnsUpLeft ease-out;animation:kenburnsUpLeft ease-out}@-webkit-keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpRight{-webkit-animation:kenburnsUpRight ease-out;animation:kenburnsUpRight ease-out}@-webkit-keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUp{-webkit-animation:kenburnsUp ease-out;animation:kenburnsUp ease-out}@-webkit-keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}
/*# sourceMappingURL=vegas.min.css.map */


/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/thm-icons/style.css */
@font-face {
  font-family: 'icomoon';
  src: url('/resources/assets/vendors/thm-icons/fonts/icomoon78ed.eot');
  src: url('/resources/assets/vendors/thm-icons/fonts/icomoon78ed.eot') format('embedded-opentype'),
    url('/resources/assets/vendors/thm-icons/fonts/icomoon78ed.ttf') format('truetype'),
    url('/resources/assets/vendors/thm-icons/fonts/icomoon78ed.woff') format('woff'),
    url('/resources/assets/vendors/thm-icons/fonts/icomoon78ed.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  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;
}








.icon-magnifying-glass:before {
  content: "\e900";
}

.icon-search:before {
  content: "\e901";
}

.icon-twitter:before {
  content: "\e902";
}

.icon-facebook:before {
  content: "\e903";
}

.icon-pinterest:before {
  content: "\e904";
}

.icon-instagram:before {
  content: "\e905";
}

.icon-facebook-1:before {
  content: "\e906";
}

.icon-plus:before {
  content: "\e907";
}

.icon-minus:before {
  content: "\e908";
}

.icon-telephone-call:before {
  content: "\e909";
}

.icon-right-arrow:before {
  content: "\e90a";
}

.icon-left-arrow:before {
  content: "\e90b";
}

.icon-left-arrow-1:before {
  content: "\e90c";
}

.icon-right-arrow-1:before {
  content: "\e90d";
}

.icon-check:before {
  content: "\e90e";
}

.icon-check-1:before {
  content: "\e90f";
}

.icon-house:before {
  content: "\e910";
}

.icon-cleaning:before {
  content: "\e911";
}

.icon-window-cleaning:before {
  content: "\e912";
}

.icon-sanitary:before {
  content: "\e913";
}

.icon-clean:before {
  content: "\e914";
}

.icon-mop:before {
  content: "\e915";
}

.icon-floor-mop:before {
  content: "\e916";
}

.icon-washing-plate:before {
  content: "\e917";
}

.icon-complete:before {
  content: "\e918";
}

.icon-file:before {
  content: "\e919";
}

.icon-feedback:before {
  content: "\e91a";
}

.icon-team:before {
  content: "\e91b";
}

.icon-cleaner:before {
  content: "\e91c";
}

.icon-export:before {
  content: "\e91d";
}

.icon-linked-in-logo-of-two-letters:before {
  content: "\e91e";
}

.icon-dribbble:before {
  content: "\e91f";
}

.icon-pointed-star:before {
  content: "\e920";
}

.icon-right-quotation-mark:before {
  content: "\e921";
}

.icon-quote:before {
  content: "\e922";
}

.icon-quote-left:before {
  content: "\e923";
}

.icon-conversation:before {
  content: "\e924";
}

.icon-bookmark:before {
  content: "\e925";
}

.icon-send:before {
  content: "\e926";
}

.icon-open-mail:before {
  content: "\e927";
}

.icon-cleaning-1:before {
  content: "\e928";
}

.icon-household:before {
  content: "\e929";
}

.icon-house-1:before {
  content: "\e92a";
}

.icon-oosouji:before {
  content: "\e92b";
}

.icon-right:before {
  content: "\e92c";
}

.icon-down-arrow:before {
  content: "\e92d";
}

.icon-up-arrow:before {
  content: "\e92e";
}

.icon-straight-quotes:before {
  content: "\e92f";
}

.icon-star:before {
  content: "\e930";
}

.icon-visibility:before {
  content: "\e931";
}

.icon-heart:before {
  content: "\e932";
}

.icon-chatting:before {
  content: "\e933";
}

.icon-play:before {
  content: "\e934";
}

.icon-play-1:before {
  content: "\e935";
}

.icon-play-button:before {
  content: "\e936";
}

.icon-office-desk:before {
  content: "\e937";
}

.icon-carpet:before {
  content: "\e938";
}

.icon-working-time:before {
  content: "\e939";
}

.icon-wash-your-hands:before {
  content: "\e93a";
}

.icon-packaging:before {
  content: "\e93b";
}

.icon-share:before {
  content: "\e93c";
}

.icon-user:before {
  content: "\e93d";
}

.icon-group:before {
  content: "\e93e";
}

.icon-consulting:before {
  content: "\e93f";
}

.icon-support:before {
  content: "\e940";
}

.icon-lightbulb:before {
  content: "\e941";
}

.icon-grid:before {
  content: "\e942";
}

.icon-grid-1:before {
  content: "\e943";
}

.icon-menu-of-three-lines:before {
  content: "\e944";
}

.icon-left-arrow-2:before {
  content: "\e945";
}

.icon-right-chevron:before {
  content: "\e946";
}

.icon-shopping-basket:before {
  content: "\e947";
}

.icon-map:before {
  content: "\e948";
}

.icon-call:before {
  content: "\e949";
}

/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/slick-slider/slick.css */
/* 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;
}


/* https://www.yuvaniaestheticclinic.com/resources/assets/vendors/language-switcher/polyglot-language-switcher.css */
@charset "utf-8";

.language-switcher {
    position: relative;
    display: block;
    width: 130px;
    height: 50px;
    background: transparent;
    display: block;
    padding: 0px 0px;
    border-radius: 0px;
}

#polyglotLanguageSwitcher {}

#polyglotLanguageSwitcher,
#polyglotLanguageSwitcher * {
    margin: 0;
    padding: 11px 0px 12px;
    outline: none;
}

#polyglotLanguageSwitcher ul {
    list-style: none;
}

#polyglotLanguageSwitcher {
    color: #fff !important;
    line-height: normal;
    position: relative;
}

#polyglotLanguageSwitcher form {
    display: none;
}



/* ---------------------------------------------------------------------- */
/* JS-created Code
/* ---------------------------------------------------------------------- */
#polyglotLanguageSwitcher a {
    text-decoration: none;
    display: block;
    padding: 2px 0px 3px 0;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 0px center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.025em;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

#polyglotLanguageSwitcher a.current:link,
#polyglotLanguageSwitcher a.current:visited,
#polyglotLanguageSwitcher a.current:active {
    position: relative;
    /* sets the initial position for the trigger arrow */
}

#polyglotLanguageSwitcher a.active {
    /* This style is applied as long as the drop-down menu is visible. */
    border-bottom: none !important;
    border-radius: 3px 3px 0 0 !important;
}

#polyglotLanguageSwitcher span.trigger {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
}

#polyglotLanguageSwitcher span.trigger:before {
    content: "\e901";
    font-family: 'icomoon' !important;
    position: absolute;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    top: 0px;
    right: 0;
}

#polyglotLanguageSwitcher a.current:hover span.trigger,
#polyglotLanguageSwitcher a.current:active span.trigger,
#polyglotLanguageSwitcher a.active span.trigger {
    background-position: left bottom !important;
}

/* Drop-Down Menu */
#polyglotLanguageSwitcher ul.dropdown {
    display: none;
    position: absolute;
    top: 55px;
    left: 0px;
    border-top: none !important;
    border-radius: 0px;
    background: #eff0f0;
    width: 130px;
    padding: 0;
    z-index: 9999999;
}

#polyglotLanguageSwitcher ul.dropdown li {
    width: 100%;
    padding: 4px 0px;
    display: block;
    border-top: 1px solid #e6e7e7;
    border-bottom: 1px solid #f6f8f8;
    transition: all 0.2s ease-in-out;
}

#polyglotLanguageSwitcher ul.dropdown li:first-child {
    border-top: none;
}

#polyglotLanguageSwitcher ul.dropdown li:last-child {
    border-bottom: none;
}

#polyglotLanguageSwitcher ul.dropdown li a {
    width: 100%;
    color: var(--thm-black);
}

#polyglotLanguageSwitcher ul.dropdown li:after {
    display: none !important;
}

#polyglotLanguageSwitcher ul.dropdown li:hover a {
    color: var(--thm-base);
}



#en {
    background-image: url(/resources/assets/vendors/language-switcher/en.png);
    background-image: none;
}

#fr {
    background-image: url(/resources/assets/vendors/language-switcher/fr.png);
    background-image: none;
}

#de {
    background-image: url(/resources/assets/vendors/language-switcher/de.png);
    background-image: none;
}

#it {
    background-image: url(/resources/assets/vendors/language-switcher/it.png);
    background-image: none;
}

#es {
    background-image: url(/resources/assets/vendors/language-switcher/es.png);
    background-image: none;
}

/* https://www.yuvaniaestheticclinic.com/resources/assets/css/style.css */
    /*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
    /*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

    @import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;400;500;600;700&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap");
    :root {
        --thm-font: 'Mulish', sans-serif;
        --thm-font-2: 'Open Sans', sans-serif;
        --thm-gray: #878c8f;
        --thm-gray-rgb: 135, 140, 143;
        --thm-base: #075f33;
        --thm-base-rgb: 7, 95, 51;
        --thm-black: #075f33;
        --thm-black-rgb: 7, 95, 51;
        --thm-gray-bg: #f1f3f2;
        --thm-primary: #ff5e15;
        --thm-primary-rgb: 255, 94, 21;
    }
html{
    overflow-x: hidden;
}
    .auto-container {
        position: static;
        max-width: 1200px;
        padding: 0px 15px;
        margin: 0 auto;
    }

    .row {
        --bs-gutter-x: 30px;
    }

    .gutter-y-30 {
        --bs-gutter-y: 30px;
    }

    body {
        color: var(--thm-gray);
        font-size: 16px;
        line-height: 32px;
        font-weight: 400;
        /* font-family: var(--thm-font); */
        /* font-family: 'Inter', sans-serif; */
        font-family: 'Mulish', sans-serif;
    }

    body.locked {
        overflow: hidden;
    }

    a {
        color: var(--thm-black);
        font-family: 'Mulish', sans-serif;
    }

    a,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
    }

    ::-webkit-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    :-ms-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    ::-ms-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    ::placeholder {
        color: inherit;
        opacity: 1;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: var(--thm-black);
        /* font-family: var(--thm-font); */
        font-family: 'Mulish', sans-serif;
        font-family: 'DM Serif Display', serif;
        margin: 0;
    }

    p {
        margin: 0;
        font-family: 'Mulish', sans-serif;
        color: #000;
        font-size: 18px;
    }

    dl,
    ol,
    ul {
        margin-top: 0;
        margin-bottom: 0;
        font-family: 'Mulish', sans-serif;
    }

    ::-webkit-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    :-ms-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    ::-ms-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    ::placeholder {
        color: inherit;
        opacity: 1;
    }

    /***
=============================================
    Form Validation Styles
=============================================
***/

    input:focus,
    textarea:focus,
    select:focus {
        border-color: var(--thm-base);
        outline: none;
    }

    #contact-form input[type="text"].error {
        border-color: red;
    }

    #contact-form input[type="email"].error {
        border-color: red;
    }

    #contact-form select.error {
        border-color: red;
    }

    #contact-form textarea.error {
        border-color: red;
    }

    #contact-form label.error {
        display: none !important;
    }

    .page-wrapper {
        position: relative;
        margin: 0 auto;
        width: 100%;
        min-width: 300px;
        overflow: hidden;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 1200px;
        }
    }

    ::-webkit-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    :-ms-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    ::-ms-input-placeholder {
        color: inherit;
        opacity: 1;
    }

    ::placeholder {
        color: inherit;
        opacity: 1;
    }

    button {
        cursor: pointer;
        border: none;
        background: transparent;
        padding: 0;
        font-family: 'Lora', serif !important;
    }

    ul,
    li {
        list-style: none;
        margin: 0;
        padding: 0;
        font-family: 'Lora', serif !important;
    }

    ol,
    li {
        margin: 0;
        padding: 0;
    }

    /***
=============================================
    Rating Box 
=============================================
***/

    .rating-box {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .rating-box ul {
        overflow: hidden;
    }

    .rating-box ul li {
        position: relative;
        float: left;
        margin-right: 4px;
        line-height: 0;
    }

    .rating-box ul li:last-child {
        margin-right: 0;
    }

    .rating-box ul li span {
        position: relative;
        display: inline-block;
        color: #FFC93D;
        font-size: 16px;
        line-height: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    /***
=============================================
   Sec Title 
=============================================
***/

    .sec-title {
        position: relative;
        display: block;
        /* margin-top: 25px; */
        padding-bottom: 35px;
    }

    .sec-title .sub-title {
        position: relative;
        display: block;
        /* padding-bottom: 15px; */
        font-family: 'DM Serif Display', serif;
    }

    .sec-title .sub-title .text {
        position: relative;
        display: block;
    }

    .sec-title .sub-title .text span {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 16px;
        line-height: 30px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 2px;
    }

    .sec-title .sub-title .text span::before {
        /* position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: var(--thm-base);
    content: ""; */
    }

    .sec-title h2 {
        color: var(--thm-black);
        font-size: 33px;
        line-height: 1.2em;
        font-weight: 500;
        font-family: 'DM Serif Display', serif;
    }

    /***
=============================================
   Thm Btn
=============================================
***/

    .thm-btn {
        position: relative;
        display: inline-block;
        border-radius: 35px;
        padding: 0px 30px 0px;
        line-height: 35px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        /* background: var(--thm-base); */
        background: linear-gradient(45deg, #991b95, #d24580);
        overflow: hidden;
        font-family: var(--thm-font);
        text-transform: capitalize;
        transition: all 0.5s ease-in-out 0.2s;
        z-index: 1;
    }

    .thm-btn:before {
        position: absolute;
        top: 125px;
        left: -50px;
        right: -50px;
        height: 170px;
        content: "";
        background: #700e8d;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        border-radius: 50%;
        transition-duration: 800ms;
        transition: 1s all ease;
        z-index: 1;
    }

    .thm-btn:hover:before {
        top: 0%;
        left: -70px;
        right: -70px;
    }

    .thm-btn .txt {
        position: relative;
        z-index: 1;
    }

    .thm-btn:hover,
    .thm-btn:focus {
        color: #ffffff;
    }

    /***
=============================================
   Owl Dot Style1
=============================================
***/

    .owl-carousel.owl-dot-style1 .owl-dots {
        position: relative;
        text-align: center;
        line-height: 0;
        margin-top: 50px !important;
        display: block;
    }

    .owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 5px;
        background-color: #e7e7e7;
        border: 0px solid #a5a5a5;
        margin: 0px 10px;
        padding: 0px;
        border-radius: 0%;
        transition: all 100ms linear;
        transition-delay: 0.1s;
    }

    .owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        background: var(--thm-base);
        border-radius: 0%;
        transform: scale(0);
        transition: all 500ms ease;
    }

    .owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
        transform: scale(1.0);
    }

    .owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
        display: none;
    }

    img {
        max-width: 100%;
        height: auto;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
    }

    /***
=============================================
   Scroll To Top
=============================================
***/

    .scroll-to-top {
       position: fixed;
    right: 3px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e236a8;
    border: 2px solid #e236a8;
    color: #ffffff;
    font-size: 20px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999999999;
    }

    .scroll-to-top:after {
        position: absolute;
        content: '';
        top: 100%;
        left: 5%;
        height: 10px;
        width: 90%;
        opacity: 1;
        z-index: -1;
        background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
        background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    }

    .scroll-to-top:before {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: transparent;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-animation-delay: .9s;
        animation-delay: .9s;
        content: "";
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
        -webkit-animation: ripple 3s infinite;
        animation: ripple 3s infinite;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

    .scroll-to-top:hover {
        color: #ffffff;
        background-color: #6a208d;
        border-color: #6a208d;
    }

    .scroll-to-top i::before {
        position: relative;
        display: inline-block;
        transform: rotate(180deg);
    }

    /***
=============================================
   Styled Pagination
=============================================
***/

    .styled-pagination {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        padding-top: 20px;
    }

    .styled-pagination li {
        position: relative;
        display: inline-block;
        margin-right: 15px;
    }

    .styled-pagination li:last-child {
        margin-right: 0;
    }

    .styled-pagination li a {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 60px;
        background: transparent;
        border-radius: 50%;
        color: var(--thm-black);
        font-size: 16px;
        line-height: 60px;
        font-weight: 500;
        border: 1px solid #dee0e2;
        text-align: center;
        transition: all 500ms ease;
        font-family: var(--thm-font);
        z-index: 1;
    }

    .styled-pagination li:hover a,
    .styled-pagination li.active a {
        color: #ffffff;
        background: var(--thm-base);
        border-color: var(--thm-base);
    }

    .styled-pagination li.prev a,
    .styled-pagination li.next a {
        border-radius: 50%;
        color: var(--thm-base);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .styled-pagination li.prev a:hover,
    .styled-pagination li.next a:hover {
        color: #ffffff;
    }

    .styled-pagination li a span:before {
        position: relative;
        top: 1px;
        color: var(--thm-black);
        font-size: 17px;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .styled-pagination li a:hover span:before,
    .styled-pagination li.active a span:before {
        color: #ffffff;
    }

    .checked-box1 {
        position: relative;
        display: block;
        min-height: 20px;
    }

    .checked-box1 label {
        position: relative;
        display: inline-block;
        padding-left: 30px;
        margin-right: 0px;
        margin-bottom: 0;
        color: var(--thm-gray);
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
        cursor: pointer;
        min-height: 20px;
        font-family: var(--thm-font);
    }

    .checked-box1 input[type="checkbox"] {
        display: none;
    }

    .checked-box1 input[type="checkbox"]+label span {
        position: absolute;
        top: 0px;
        left: 0;
        width: 20px;
        height: 20px;
        vertical-align: middle;
        background-color: transparent;
        border: 1px solid #80868d;
        cursor: pointer;
        border-radius: 4px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .checked-box1 label span:before {
        font-family: 'icomoon' !important;
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0;
        right: 0;
        content: "\e922";
        font-size: 10px;
        font-weight: 700;
        width: 20px;
        height: 20px;
        margin: 0px;
        opacity: 0;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .checked-box1 input[type="checkbox"]:checked+label span {
        border-color: #80868d;
    }

    .checked-box1 input[type="checkbox"]:checked+label span:before {
        opacity: 1.0;
    }

    /***
=============================================
   Search Popup
=============================================
***/

    .search-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        padding-left: 20px;
        padding-right: 20px;
        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;
        -webkit-transform: translateY(-110%);
        transform: translateY(-110%);
        -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
        transition: opacity 500ms ease, -webkit-transform 500ms ease;
        transition: transform 500ms ease, opacity 500ms ease;
        transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
    }

    .search-popup.active {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--thm-black);
        opacity: 0.75;
        cursor: pointer;
    }

    .search-popup__content {
        width: 100%;
        max-width: 560px;
    }

    .search-popup__content form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
    }

    .search-popup__content form input[type="search"],
    .search-popup__content form input[type="text"] {
        width: 100%;
        background-color: #fff;
        font-size: 16px;
        border: none;
        outline: none;
        height: 66px;
        padding-left: 30px;
        padding-right: 75px;
    }

    .search-popup__content .thm-btn {
        padding: 0;
        width: 68px;
        height: 68px;
        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;
        text-align: center;
        position: absolute;
        top: 0;
        right: -1px;
        border-radius: 0;
        background-color: var(--thm-base);
        border: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .search-popup__content .thm-btn::before {
        border-radius: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .search-popup__content .thm-btn i::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        background-color: transparent;
        margin-left: 0;
        z-index: 5;
    }

    .bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
    .bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
    .bootstrap-select .show>.btn-light.dropdown-toggle {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .bootstrap-select>.dropdown-toggle {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .bootstrap-select .dropdown-toggle:focus,
    .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
        outline: none !important;
    }

    .bootstrap-select .dropdown-menu {
        border: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        z-index: 991;
        border-radius: 0;
    }

    .bootstrap-select .dropdown-menu>li+li>a {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bootstrap-select .dropdown-menu>li.selected>a {
        background: var(--brote-primary);
        color: #fff;
    }

    .bootstrap-select .dropdown-menu>li>a {
        font-size: 16px;
        font-weight: 500;
        padding: 4px 20px;
        color: #ffffff;
        background: var(--brote-base);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .bootstrap-select .dropdown-menu>li>a:hover {
        background: var(--brote-white);
        color: var(--brote-base);
        cursor: pointer;
    }

    /* Preloader Css*/

    .handle-preloader {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: var(--thm-base);
        display: flex;
        display: -ms-flexbox;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        z-index: 9999999;
    }

    .preloader-close {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 18px;
        line-height: 30px;
        background: #fff;
        text-align: center;
        cursor: pointer;
        z-index: 99999999;
    }

    .handle-preloader .animation-preloader {
        position: absolute;
        z-index: 100;
    }

    .handle-preloader .animation-preloader .spinner {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 0 auto 45px auto;
        animation-name: zoomInOut;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        -webkit-animation-name: zoomInOut;
        -webkit-animation-duration: 3s;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-in-out;
        -moz-animation-name: zoomInOut;
        -moz-animation-duration: 3s;
        -moz-animation-iteration-count: infinite;
        -moz-animation-timing-function: ease-in-out;
        -ms-animation-name: zoomInOut;
        -ms-animation-duration: 3s;
        -ms-animation-iteration-count: infinite;
        -ms-animation-timing-function: ease-in-out;
        -o-animation-name: zoomInOut;
        -o-animation-duration: 3s;
        -o-animation-iteration-count: infinite;
        -o-animation-timing-function: ease-in-out;
    }

    .handle-preloader .animation-preloader .txt-loading {
        text-align: center;
        user-select: none;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        position: relative;
        display: inline-block;
        color: transparent;
        font-size: 70px;
        line-height: 70px;
        font-weight: 600;
        letter-spacing: 15px;
        text-transform: uppercase;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
        font-family: var(--thm-font);
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
        position: absolute;
        top: 0;
        left: 0;
        animation: letters-loading 4s infinite;
        content: attr(data-text-preloader);
        opacity: 0;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
        animation-delay: 0.2s;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
        animation-delay: 0.4s;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
        animation-delay: 0.6s;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
        animation-delay: 0.8s;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
        animation-delay: 1s;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
        animation-delay: 1.3s;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
        animation-delay: 1.5s;
    }

    /**
animation: spinner 1s infinite linear;


.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
**/

    .preloader .loaded .animation-preloader {
        opacity: 0;
        transition: 0.3s ease-out;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {}

    .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
        color: #ffffff;
    }

    .handle-preloader .animation-preloader .spinner {
        border: 3px solid #ffffff;
        /**border-top-color: rgba(255, 255, 255, 0.5); **/
    }

    /* Animation preloader */

    @keyframes spinner {
        to {
            transform: rotateZ(360deg);
        }
    }

    @keyframes letters-loading {

        0%,
        75%,
        100% {
            opacity: 0;
            transform: rotateY(-90deg);
        }

        25%,
        50% {
            opacity: 1;
            transform: rotateY(0deg);
        }
    }

    @media screen and (max-width: 767px) {
        .handle-preloader .animation-preloader .spinner {
            height: 8em;
            width: 8em;
        }

        .mob--view {
            display: inline-block !important;
        }

        .desk--view {
            display: none !important;
        }
    }

    @media screen and (max-width: 500px) {
        .handle-preloader .animation-preloader .spinner {
            height: 7em;
            width: 7em;
        }

        .handle-preloader .animation-preloader .txt-loading .letters-loading {
            font-size: 30px;
            letter-spacing: 10px;
        }
    }

    /*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/

    .mobile-nav__wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
        transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        visibility: hidden;
    }

    .mobile-nav__wrapper.expanded {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        visibility: visible;
        -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

    .mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-nav__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffc9c18a;
        opacity: 0.7;
        cursor: pointer;
    }

    .mobile-nav__content {
        position: relative;
        width: 300px;
        background-color: #ffd6d0;
        height: 100%;
        overflow-y: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        z-index: 10;
    }

    .mobile-nav__wrapper.expanded .mobile-nav__content {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
        transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    }

    .mobile-nav__close {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        background-color: rgb(255 255 255 / 30%);
        color: #b95a4d;
        font-size: 18px;
        cursor: pointer;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .mobile-nav__close:hover {
        background-color: var(--thm-black);
    }

    .mobile-nav__close i:before {
        position: relative;
        display: inline-block;
        transform: rotate(45deg);
    }

    .mobile-nav__content .logo-box {
        margin-bottom: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .mobile-nav__container {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav__content .main-menu__list,
    .mobile-nav__content .main-menu__list>li>ul,
    .mobile-nav__content .main-menu__list>li>ul>li>ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .mobile-nav__content .main-menu__list>li>ul,
    .mobile-nav__content .main-menu__list>li>ul>li>ul {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0px;
        padding-left: 15px;
        background: linear-gradient(1deg, #fdfafa, #ffe2d4);
    }

    .mobile-nav__content .main-menu__list>li:not(:last-child),
    .mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
    .mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav__content .main-menu__list>li>a,
    .mobile-nav__content .main-menu__list>li>ul>li>a,
    .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        line-height: 30px;
        color: #000000;
        font-size: 16px;
        font-family: var(--thm-font-2);
        font-weight: 500;
        /* height: 46px; */
        transition: 500ms;
        padding: 2px 0px;
    }

    .mobile-nav__content .main-menu__list>li>ul>li>a {
        font-size: 14px;
        font-weight: 400;
    }

    .mobile-nav__content .main-menu__list>li>a.expanded,
    .mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
    .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
        color: #b20864;
    }

    .mobile-nav__content .main-menu__list>li>a>button,
    .mobile-nav__content .main-menu__list>li>ul>li>a>button,
    .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
        width: 30px;
        height: 30px;
        background-color: #cb685b;
        border: none;
        outline: none;
        color: #fff;
        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;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: -webkit-transform 500ms ease;
        transition: -webkit-transform 500ms ease;
        transition: transform 500ms ease;
        transition: transform 500ms ease, -webkit-transform 500ms ease;
        padding: 0;
    }

    .mobile-nav__content .main-menu__list>li>a>button.expanded,
    .mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
    .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        background-color: #fff;
        color: var(--thm-base);
    }

    .mobile-nav__content .home-showcase__title {
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 0px;
    }

    .mobile-nav__contact {
        position: relative;
        display: block;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .mobile-nav__contact li {
        position: relative;
        display: flex;
        align-items: center;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }

    .mobile-nav__contact li+li {
        margin-top: 15px;
    }

    .mobile-nav__contact li a {
        color: #ffffff;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

    .mobile-nav__contact li a:hover {
        color: var(--thm-black);
    }

    .mobile-nav__contact li>i {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 0%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 12px;
        margin-right: 10px;
    }

    .mobile-nav__top {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .mobile-nav__social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav__social a {
        position: relative;
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-size: 16px;
        line-height: 40px;
        text-align: center;
        transition: 500ms;
    }

    .mobile-nav__social a+a {
        margin-left: 10px;
    }

    .mobile-nav__social a:hover {
        color: var(--thm-base);
        background-color: #ffffff;
    }

    /* no menu after 2rd level dropdown */

    .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
    .mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
        display: none !important;
    }

    /*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/

    .main-header {
        position: relative;
        display: block;
        width: 100%;
        background: transparent;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 99;
    }

    .main-menu {
        position: relative;
        display: block;
    }

    .main-menu__wrapper {
        position: relative;
        display: block;
    }

    .main-menu__wrapper-inner {
        position: relative;
        display: block;
        align-items: center;
    }

    .main-menu-box {
        display: inline-block;
        /* float: right;
        margin-left: auto; */
    }

    /****
  .main-menu__right {
    position: relative;
    display: block;
    float: right;
  }
  
  .main-menu__search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 23px 0;
  }
  
  .main-menu__search-box:before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -30px;
    content: "";
    width: 1px;
    background-color: var(--brote-white);
    opacity: .10;
  }
  
  .main-menu__search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    color: var(--brote-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--brote-primary);
  }
  ***/

    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: none;
    }

    @media (min-width: 1200px) {

        .main-menu .main-menu__list,
        .main-menu .main-menu__list>li>ul,
        .main-menu .main-menu__list>li>ul>li>ul,
        .stricky-header .main-menu__list,
        .stricky-header .main-menu__list>li>ul,
        .stricky-header .main-menu__list>li>ul>li>ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
    }

    .main-menu .main-menu__list>li,
    .stricky-header .main-menu__list>li {
        position: relative;
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .main-menu .main-menu__list>li+li,
    .stricky-header .main-menu__list>li+li {
        margin-left: 30px;
    }

    .main-menu .main-menu__list>li>a,
    .stricky-header .main-menu__list>li>a {
        position: relative;
        color: #222122;
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
        text-transform: capitalize;
        display: flex;
        align-items: center;
        font-family: var(--thm-font);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        font-family: 'Mulish', sans-serif;
    }

    .main-menu .main-menu__list>li.current>a,
    .main-menu .main-menu__list>li:hover>a,
    .stricky-header .main-menu__list>li.current>a,
    .stricky-header .main-menu__list>li:hover>a {
        color: #d53d83;
    }

    .main-menu .main-menu__list>li.dropdown>a,
    .stricky-header .main-menu__list>li.dropdown>a {
        padding-right: 20px;
    }

    /* .main-menu .main-menu__list>li.dropdown>a:before {
        position: absolute;
        top: 1px;
        right: 2px;
        font-family: 'icomoon' !important;
        content: "\e907";
        color: #141314;
        font-size: 11px;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 1;
    } */

    .main-menu .main-menu__list>li.current.dropdown>a:before,
    .main-menu .main-menu__list>li:hover.dropdown>a:before {
        color: #d53d83;
    }

    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 270px;
        /* background: linear-gradient(181deg, #ef82b9, #fff6fadb); */
        /* background-color: #fff; */
        -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;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        transform-origin: top;
        transform-style: preserve-3d;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: all;
        /* box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05); */
        z-index: 99;
    }

    .main-menu .main-menu__list>li>ul>li>ul>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul>li>ul {
        display: none;
    }

    .main-menu .main-menu__list>li:hover>ul,
    .main-menu .main-menu__list>li>ul>li:hover>ul,
    .stricky-header .main-menu__list>li:hover>ul,
    .stricky-header .main-menu__list>li>ul>li:hover>ul {
        opacity: 1;
        visibility: visible;
        transform: rotateX(0deg);
        transition: all 700ms ease;
    }

    .main-menu .main-menu__list>li>ul>li,
    .main-menu .main-menu__list>li>ul>li>ul>li,
    .stricky-header .main-menu__list>li>ul>li,
    .stricky-header .main-menu__list>li>ul>li>ul>li {
        position: relative;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .main-menu .main-menu__list>li>ul>li+li,
    .main-menu .main-menu__list>li>ul>li>ul>li+li,
    .stricky-header .main-menu__list>li>ul>li+li,
    .stricky-header .main-menu__list>li>ul>li>ul>li+li {
        border-top: 1px solid #af2765;
    }

    .main-menu .main-menu__list>li>ul>li>a,
    .main-menu .main-menu__list>li>ul>li>ul>li>a,
    .stricky-header .main-menu__list>li>ul>li>a,
    .stricky-header .main-menu__list>li>ul>li>ul>li>a {
        position: relative;
        display: flex;
        font-size: 16px;
        line-height: 30px;
        color: #1d1d1d;
        letter-spacing: 0;
        background: linear-gradient(1deg, #fff1ea, #ffe2d4);
        font-weight: 500;
        display: -webkit-box;
        display: -ms-flexbox;
        padding: 10px 20px;
        -webkit-transition: 500ms;
        transition: 500ms;
        font-family: var(--thm-font);
    }

    .main-menu .main-menu__list>li>ul>li:hover>a,
    .main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
    .stricky-header .main-menu__list>li>ul>li:hover>a,
    .stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
        color: #d7488a;
        background-color: #e236a8;
    }

    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        top: 0;
        left: 100%;
    }

    .main-menu .main-menu__list li ul li>ul.right-align,
    .stricky-header .main-menu__list li ul li>ul.right-align {
        top: 0;
        left: auto;
        right: 100%;
    }

    /*-------------------------------------
    Stricky Header Css
  ---------------------------------------*/

    .stricky-header {
        position: fixed;
        z-index: 991;
        top: 0;
        left: 0;
        background-color: #fff;
        width: 100%;
        visibility: hidden;
        -webkit-transform: translateY(-120%);
        transform: translateY(-120%);
        -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
        transition: visibility 500ms ease, -webkit-transform 500ms ease;
        transition: transform 500ms ease, visibility 500ms ease;
        transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    }

    @media (max-width: 1199px) {
        .stricky-header {
            display: none !important;
        }
    }

    .stricky-header.stricky-fixed {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }

    /***
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--brote-base);
  }
  **/

    .main-menu .mobile-nav__toggler {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 25px;
        cursor: pointer;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

    .main-menu .mobile-nav__toggler:hover {
        color: var(--brote-black);
    }

    @media (min-width: 1200px) {
        .main-menu .mobile-nav__toggler {
            display: none;
        }
    }

    .stricky-header.main-menu {
        background-color: #ffffff;
        text-align: center;
        background: linear-gradient(1deg, #fdfafa, #ffe2d4);
    }

    .stricky-header .main-menu-box {
        display: block;
        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;
    }

    .stricky-header .main-menu__wrapper {
        background-color: #ffffff;
    }

    .stricky-header .main-menu__wrapper-inner {
        justify-content: space-between;
    }

    .stricky-header .phone-number-box-style1 {
        display: none;
    }

    .stricky-header .main-menu__list>li {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .stricky-header .main-menu__list>li+li {
        margin-left: 30px;
    }

    .stricky-header .main-menu-style1-right {
        margin-left: 30px;
    }

    /***
=============================================
Main Header One
=============================================
***/

    .main-header-one {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
    }

    .main-header-one .auto-container {
        max-width: 1530px;
        width: 100%;
    }

    .main-header-one__inner {
        position: relative;
        display: block;
    }

    .main-header-one .main-menu__wrapper-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header-one__left {
        position: relative;
        display: flex;
        align-items: center;
    }

    .logo-box-one {
        position: relative;
        display: block;
    }

    .logo-box-one a {
        position: relative;
        display: inline-block;
    }

    .logo-box-one a img {
        width: 100%;
    }

    .header-search-box {
        position: relative;
        display: block;
        line-height: 0;
        margin-left: 60px;
        padding-left: 62px;
    }

    .header-search-box::before {
        position: absolute;
        top: -15px;
        left: 0;
        bottom: -15px;
        width: 1px;
        background: rgba(255, 255, 255, 0.3);
        content: "";
    }

    .header-search-box a {
        color: #ffffff;
        font-size: 20px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .header-search-box a:hover {
        color: var(--thm-primary);
    }

    .header-one-social-links {
        position: relative;
        display: block;
        line-height: 0;
        margin-left: 62px;
    }

    .header-one-social-links ul {
        position: relative;
        display: block;
    }

    .header-one-social-links ul li {
        position: relative;
        display: inline-block;
        margin-right: 16px;
    }

    .header-one-social-links ul li:last-child {
        margin-right: 0;
    }

    .header-one-social-links ul li a {
        position: relative;
        display: block;
    }

    .header-one-social-links ul li a span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .header-one-social-links ul li a:hover span::before {
        color: var(--thm-primary);
    }

    .main-header-one__middle {
        position: relative;
        display: block;
    }

    .main-header-one__right {
        position: relative;
        display: block;
        padding-left: 27px;
        padding-right: 25px;
    }

    .main-header-one__right::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.3);
        content: "";
    }

    .main-header-one__right .contact-box {
        position: relative;
        display: flex;
        align-items: center;
    }

    .main-header-one__right .contact-box .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #7a107a;
        border-radius: 50%;
    }

    .main-header-one__right .contact-box .icon span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
    }

    .main-header-one__right .contact-box .text {
        position: relative;
        display: block;
        margin-left: 10px;
    }

    .main-header-one__right .contact-box .text a {
        color: #ffffff;
        font-size: 18px;
        line-height: 28px;
        font-weight: 600;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .main-header-one__right .contact-box .text a:hover {
        color: var(--thm-primary);
    }

    .stricky-header.stricky-header--one .main-menu__wrapper {
        background-color: var(--thm-base);
    }

    .stricky-header.stricky-header--one .main-header-one__right {
        display: none;
    }

    /***
=============================================
Main Header Two
=============================================
***/

    .main-header-two {
        position: relative;
        display: block;
    }

    .main-header-two__inner {
        position: relative;
        display: block;
        background: #ffff;
        /* border-bottom: 3px solid #991b95; */
        box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    }

    .main-header-two .auto-container {
        max-width: 1530px;
        width: 100%;
    }

    .main-header-two .main-menu__wrapper-inner {
        position: relative;
        display: block;
        align-items: center;
        justify-content: space-between;
    }

    .main-header-two__left {
        position: relative;
        display: inline-block;
        align-items: center;
        /* padding: 5px 20px; */
        padding-left: 80px;
    }

    .main-header-two__left .logo-box-two {
        position: relative;
        display: block;
        padding-right: 40px;
        padding-top: 10px;
    }

    .main-header-two__left .logo-box-two::before {
        position: absolute;
        top: -30px;
        left: -9999999px;
        bottom: 0px;
        right: 0;
        /* background: var(--thm-primary); */
        content: "";
        /* background: #6a208d; */
    }

    .main-header-two__left .logo-box-two a {
        position: relative;
        display: inline-block;
    }

    .main-header-two__left .header-search-box {
        margin-left: 60px;
        padding-left: 0px;
        padding-right: 40px;
    }

    .main-header-two__left .header-search-box::before {
        position: absolute;
        top: -15px;
        left: auto;
        right: 0;
        bottom: -15px;
        width: 1px;
        background: rgba(255, 255, 255, 0.3);
        content: "";
    }

    .main-header-two__left .header-one-social-links {
        margin-left: 40px;
    }

    .main-header-two__middle {
        position: relative;
        display: inline-block;
    }

    .main-header-two__right {
        position: relative;
        display: inline-block;
        padding-right: 15px;
        /* float: right; */
        padding-top: 20px;
    }

        /* .main-header-two__right::before {
            position: absolute;
            top: -31px;
            left: 0;
            right: -999999px;
            bottom: -31px;
        
            content: "";
        
        } */

    .main-header-two__right .contact-box {
        position: relative;
        display: flex;
        align-items: center;
    }

    .main-header-two__right .contact-box .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        /* background: antiquewhite; */
        border-radius: 50%;
    }

    .main-header-two__right .contact-box .icon span::before {
        position: relative;
        display: inline-block;
        color: #b93470;
        font-size: 20px;
        font-weight: 700;
    }

    .main-header-two__right .contact-box .text {
        position: relative;
        display: block;
        margin-left: 10px;
    }

    .main-header-two__right .contact-box .text p {
        color: #af3470;
        font-size: 18px;
        line-height: 22px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .main-header-two__right .contact-box .text a {
        color: #ffffff;
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        letter-spacing: -0.05em;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .main-header-two__right .contact-box .text a:hover {
        color: var(--thm-black);
    }

    .stricky-header.stricky-header--two .main-menu__wrapper {
        background-color: #fff;
        /* border-bottom: 3px solid #991b95;*/
    }

    .stricky-header.stricky-header--two .main-header-two__right {
        display: none;
    }

    .stricky-header.stricky-header--two .main-header-two__left .logo-box-two::before {
        display: none;
    }

    /***
=============================================
Main Header Three
=============================================
***/

    .main-header-three {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
    }

    .main-header-three__inner {
        position: relative;
        display: block;
    }

    .main-header-three .auto-container {
        max-width: 1530px;
        width: 100%;
    }

    .main-header-three .main-menu__wrapper-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #ffffff;
    }

    .main-header-three__left {
        position: relative;
        display: block;
    }

    .logo-box-three {
        position: relative;
        display: block;
        padding-left: 60px;
        padding-right: 60px;
        z-index: 1;
    }

    .logo-box-three::before {
        position: absolute;
        top: -30px;
        left: 0;
        bottom: -30px;
        right: 0;
        background: var(--thm-primary);
        content: "";
        z-index: -1;
    }

    .logo-box-three a {
        position: relative;
        display: inline-block;
    }

    .main-header-three__middle {
        position: relative;
        display: block;
    }

    .main-header-three .main-menu .main-menu__list>li>a {
        color: var(--thm-base);
    }

    .main-header-three .main-menu .main-menu__list>li.dropdown>a:before {
        color: var(--thm-base);
    }

    .main-header-three .main-menu .main-menu__list>li.current.dropdown>a:before,
    .main-header-three .main-menu .main-menu__list>li:hover.dropdown>a:before {
        color: var(--thm-primary);
    }

    .main-header-three .main-menu .main-menu__list>li.current>a,
    .main-header-three .main-menu .main-menu__list>li:hover>a,
    .main-header-three .stricky-header .main-menu__list>li.current>a,
    .main-header-three .stricky-header .main-menu__list>li:hover>a {
        color: #6c125c;
    }

    .main-header-three .main-menu .main-menu__list>li>a::after {
        position: absolute;
        top: 30px;
        left: 5px;
        bottom: -39px;
        right: 0;
        margin: 0 auto;
        width: 2px;
        height: 0;
        background: var(--thm-primary);
        transition: all 0.4s ease-in-out 0.3s;
        content: "";
    }

    .main-header-three .main-menu .main-menu__list>li:hover>a::after,
    .main-header-three .main-menu .main-menu__list>li.current>a:after {
        transition: all 0.4s ease-in-out 0.3s;
        height: 38px;
    }

    .main-header-three__right {
        position: relative;
        display: flex;
        align-items: center;
    }

    .main-header-three__right .header-search-box {
        position: relative;
        display: block;
        padding-right: 30px;
        margin-left: 0px;
        padding-left: 0px;
    }

    .main-header-three__right .header-search-box a {
        color: var(--thm-black);
        font-size: 20px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .main-header-three__right .header-search-box a:hover {
        color: var(--thm-primary);
    }

    .main-header-three__right .header-search-box::before {
        position: absolute;
        top: -15px;
        left: auto;
        right: 0;
        bottom: -15px;
        width: 1px;
        background: #cbcbcb;
        content: "";
    }

    .main-header-three__right .contact-box {
        position: relative;
        display: block;
        padding-left: 55px;
        margin-left: 40px;
        margin-right: 35px;
    }

    .main-header-three__right .contact-box .icon {
        position: absolute;
        top: 5px;
        left: 0;
        line-height: 0;
    }

    .main-header-three__right .contact-box .icon span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 35px;
    }

    .main-header-three__right .contact-box .text {
        position: relative;
        display: block;
    }

    .main-header-three__right .contact-box .text p {
        color: var(--thm-black);
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .main-header-three__right .contact-box .text a {
        color: var(--thm-black);
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        letter-spacing: -0.011em;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .main-header-three__right .contact-box .text a:hover {
        color: var(--thm-primary);
    }

    .main-header-three__right .btn-box {
        position: relative;
        display: block;
    }

    .main-header-three__right .btn-box a {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
        font-weight: 400;
        text-transform: capitalize;
        background: var(--thm-primary);
        line-height: 65px;
        padding-left: 40px;
        padding-right: 40px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .main-header-three__right .btn-box a:hover {
        background: var(--thm-base);
    }

    .stricky-header.stricky-header--three .main-header-three__right .btn-box {
        display: none;
    }

    .stricky-header.stricky-header--three .logo-box-three::before {
        display: none;
    }

    .stricky-header.stricky-header--three .main-menu__wrapper {
        background-color: var(--thm-base);
    }

    .stricky-header.stricky-header--three .main-header-three__right .contact-box {
        margin-right: 0px;
        padding-left: 50px;
        margin-left: 25px;
    }

    .stricky-header.stricky-header--three .main-header-three__right .contact-box .icon span::before {
        color: #fff;
    }

    .stricky-header.stricky-header--three .main-header-three__right .contact-box .text p {
        color: #ffffff;
    }

    .stricky-header.stricky-header--three .main-header-three__right .contact-box .text a {
        color: #ffffff;
    }

    .stricky-header.stricky-header--three .main-header-three__right .contact-box .text a:hover {
        color: var(--thm-primary);
    }

    .stricky-header.stricky-header--three .main-header-three__right .header-search-box a {
        color: #ffffff;
    }

    .stricky-header.stricky-header--three .main-header-three__right .header-search-box a:hover {
        color: var(--thm-primary);
    }

    .stricky-header.stricky-header--three .logo-box-three {
        padding-left: 0px;
        padding-right: 25px;
    }

    /***
=============================================
Main Slider One
=============================================
***/

    .main-slider-one {
        position: relative;
        display: block;
    }

    .main-slider-one .shape1 {
        position: absolute;
        top: 290px;
        left: 40px;
        opacity: 0.2;
        z-index: 2;
    }

    .main-slider-one .shape2 {
        position: absolute;
        left: 700px;
        bottom: 10px;
        opacity: 0.2;
        z-index: 2;
    }

    .main-slider-one .shape3 {
        position: absolute;
        top: 200px;
        right: 50px;
        opacity: 0.2;
        z-index: 2;
    }

    .main-slider-one .shape4 {
        position: absolute;
        top: 130px;
        left: 260px;
        opacity: 0.3;
        z-index: 2;
    }

    .main-slider-one .shape5 {
        position: absolute;
        top: 200px;
        left: 850px;
        opacity: 0.3;
        z-index: 2;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
    }

    .main-slider-one .shape6 {
        position: absolute;
        left: 200px;
        bottom: 70px;
        opacity: 0.3;
        z-index: 2;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
    }

    .main-slider-one__img {
        position: absolute;
        top: -35px;
        right: -75px;
        width: 900px;
        height: 900px;
        border-radius: 50%;
        overflow: hidden;
        border-top-right-radius: 0;
        opacity: 0;
        transform: translateX(40%);
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
        z-index: 2;
    }

    .main-slider-one__img img {
        width: auto;
    }

    .main-slider-one .swiper-slide-active .main-slider-one__img {
        opacity: 1;
        transform: translateX(0);
        -webkit-transition-delay: 2500ms;
        -moz-transition-delay: 2500ms;
        -ms-transition-delay: 2500ms;
        -o-transition-delay: 2500ms;
        transition-delay: 2500ms;
    }

    .main-slider-one .image-layer {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(var(--thm-base-rgb), 0.88);
        opacity: 1;
        background-repeat: no-repeat;
        background-position: center center;
        background-blend-mode: color-burn;
        background-size: cover;
        z-index: 1;
    }

    .main-slider-one__content {
        position: relative;
        display: block;
        padding: 299px 0px 225px;
        z-index: 5;
    }

    .main-slider-one__content .tagline {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
        transform: perspective(400px) rotateY(0deg) translateY(-80px);
        -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        transition: all 1500ms ease;
        z-index: 10;
    }

    .main-slider-one .swiper-slide-active .main-slider-one__content .tagline {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
        transform: perspective(400px) rotateY(0deg) translateY(0px);
        -webkit-transition-delay: 1800ms;
        -moz-transition-delay: 1800ms;
        -ms-transition-delay: 1800ms;
        -o-transition-delay: 1800ms;
        transition-delay: 1800ms;
    }

    .main-slider-one__content .tagline::before {
        position: absolute;
        top: 15px;
        right: -60px;
        width: 40px;
        height: 3px;
        background: #ffffff;
        content: "";
    }

    .main-slider-one__content .tagline p {
        color: #ffffff;
        font-size: 24px;
        line-height: 29px;
        font-weight: 500;
        z-index: 5;
    }

    .main-slider-one__content .title {
        position: relative;
        display: block;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
        transform: perspective(400px) rotateY(0deg) translateY(-80px);
        -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        transition: all 1500ms ease;
        z-index: 10;
    }

    .main-slider-one .swiper-slide-active .main-slider-one__content .title {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
        transform: perspective(400px) rotateY(0deg) translateY(0px);
        -webkit-transition-delay: 1200ms;
        -moz-transition-delay: 1200ms;
        -ms-transition-delay: 1200ms;
        -o-transition-delay: 1200ms;
        transition-delay: 1200ms;
    }

    .main-slider-one__content .title h2 {
        color: #ffffff;
        font-size: 60px;
        line-height: 1.2em;
        font-weight: 700;
    }

    .main-slider-one__content .text {
        position: relative;
        display: block;
        margin-top: 11px;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
        transform: perspective(400px) rotateY(0deg) translateY(80px);
        -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        transition: all 1500ms ease;
        z-index: 10;
    }

    .main-slider-one .swiper-slide-active .main-slider-one__content .text {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
        transform: perspective(400px) rotateY(0deg) translateY(0px);
        -webkit-transition-delay: 1200ms;
        -moz-transition-delay: 1200ms;
        -ms-transition-delay: 1200ms;
        -o-transition-delay: 1200ms;
        transition-delay: 1200ms;
    }

    .main-slider-one__content .text p {
        color: #ffffff;
    }

    .main-slider-one__content .btn-box {
        position: relative;
        display: block;
        margin-top: 49px;
        line-height: 0;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
        transform: perspective(400px) rotateY(0deg) translateY(80px);
        -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transition: all 1500ms ease;
        -moz-transition: all 1500ms ease;
        -ms-transition: all 1500ms ease;
        -o-transition: all 1500ms ease;
        transition: all 1500ms ease;
        z-index: 10;
    }

    .main-slider-one .swiper-slide-active .main-slider-one__content .btn-box {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
        -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
        transform: perspective(400px) rotateY(0deg) translateY(0px);
        -webkit-transition-delay: 1800ms;
        -moz-transition-delay: 1800ms;
        -ms-transition-delay: 1800ms;
        -o-transition-delay: 1800ms;
        transition-delay: 1800ms;
    }

    .main-slider-one__content .btn-box .thm-btn {
        background: var(--thm-primary);
    }

    .main-slider__nav {
        position: absolute;
        top: 43%;
        left: 80px;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        transform-origin: bottom;
        transform-style: preserve-3d;
        line-height: 0;
        height: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transform: scaleX(1.0) translateX(0px);
        z-index: 105;
    }

    .main-slider__nav .swiper-button-next,
    .main-slider__nav .swiper-button-prev {
        position: relative;
        display: block;
        height: 60px;
        width: 60px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
        line-height: 60px;
        opacity: 1;
        margin: 0;
        transition: all 500ms ease;
        z-index: 100;
    }

    .main-slider__nav .swiper-button-prev {
        float: left;
        left: 0;
        margin-bottom: 10px;
    }

    .main-slider__nav .swiper-button-next {
        float: right;
        right: 0;
    }

    .main-slider__nav .swiper-button-next:hover,
    .main-slider__nav .swiper-button-prev:hover {
        color: #ffffff;
        background: var(--thm-base);
    }

    .main-slider__nav .swiper-button-next::after,
    .main-slider__nav .swiper-button-prev::after {
        display: none;
    }

    .main-slider__nav .swiper-button-prev i::before {
        position: relative;
        display: inline-block;
        font-size: 20px;
        line-height: 60px;
        font-weight: 700;
    }

    .main-slider__nav .swiper-button-next i::before {
        position: relative;
        display: inline-block;
        font-size: 20px;
        line-height: 60px;
        font-weight: 700;
    }

    /***
=============================================
Main Slider Two
=============================================
***/

    .main-slider-two {
        position: relative;
        display: block;
        z-index: 1;
    }

    .main-slider-two .image-layer {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        transition: transform 7000ms ease, opacity 1500ms ease-in;
        transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        z-index: 1;
    }

    .main-slider.main-slider-two .swiper-slide-active .image-layer {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .main-slider-two .image-layer::before {
        /* position: absolute; */
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgb(241, 243, 242);
        background: linear-gradient(90deg, rgba(241, 243, 242, 1) 6%, rgba(241, 243, 242, 1) 33%, rgba(241, 243, 242, 0.4542191876750701) 50%, rgba(241, 243, 242, 0.006039915966386533) 53%, rgba(241, 243, 242, 0) 74%);
        content: "";
    }

    .main-slider-two .shape1 {
        position: absolute;
        top: -130px;
        left: -30px;
        opacity: 0.07;
        z-index: 1;
    }

    .main-slider-two .shape2 {
        position: absolute;
        top: -70px;
        left: 0px;
        opacity: 0.4;
        z-index: 1;
    }

    .main-slider-two .shape3 {
        position: absolute;
        left: -270px;
        bottom: 0;
        opacity: 0.4;
        z-index: 1;
    }

    .main-slider-two .shape4 {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        margin-left: -110px;
        opacity: 0.4;
        z-index: 1;
    }

    .main-slider-two .shape5 {
        position: absolute;
        bottom: 0;
        opacity: 0.4;
        z-index: 1;
        right: -110px;
    }

    .main-slider-two .shape6 {
        position: absolute;
        top: 70px;
        left: 290px;
        z-index: 1;
    }

    .main-slider-two .shape7 {
        position: absolute;
        left: 240px;
        bottom: 400px;
        z-index: 1;
    }

    .main-slider-two .shape8 {
        position: absolute;
        left: 600px;
        bottom: 130px;
        z-index: 1;
    }

    .main-slider-two .shape9 {
        position: absolute;
        top: 50px;
        right: 80px;
        z-index: 1;
    }

    .main-slider-two .container {
        padding: 225px 30px 230px;
    }

    .main-slider-two__content {
        position: relative;
        display: block;
        z-index: 2;
    }

    .main-slider-two__content .tagline {
        position: relative;
        display: inline-block;
        margin-bottom: 29px;
        opacity: 0;
        -webkit-transition: all 1000ms ease;
        transition: all 1000ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    .main-slider-two .swiper-slide-active .main-slider-two__content .tagline {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }

    .main-slider-two__content .tagline::before {
        position: absolute;
        left: 0;
        bottom: -3px;
        right: 0;
        height: 1px;
        background: var(--thm-black);
        content: "";
        width: 0%;
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
    }

    .main-slider-two .swiper-slide-active .main-slider-two__content .tagline::before {
        width: 100%;
        -webkit-transition-delay: 1500ms;
        -moz-transition-delay: 1500ms;
        -ms-transition-delay: 1500ms;
        -o-transition-delay: 1500ms;
        transition-delay: 1500ms;
    }

    .main-slider-two__content .tagline p {
        color: var(--thm-black);
        font-size: 24px;
        line-height: 29px;
        font-weight: 700;
    }

    .main-slider-two__content .title {
        position: relative;
        display: block;
        margin-bottom: 10px;
        opacity: 0;
        -webkit-transition: all 1300ms ease;
        transition: all 1300ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    .main-slider-two .swiper-slide-active .main-slider-two__content .title {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 1800ms;
        transition-delay: 1800ms;
    }

    .main-slider-two__content .title h2 {
        color: var(--thm-black);
        font-size: 60px;
        line-height: 1.2em;
        font-weight: 700;
    }

    .main-slider-two__content .text {
        position: relative;
        display: block;
        margin-bottom: 49px;
        opacity: 0;
        -webkit-transition: all 1300ms ease;
        transition: all 1300ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    .main-slider-two .swiper-slide-active .main-slider-two__content .text {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 2300ms;
        transition-delay: 2300ms;
    }

    .main-slider-two__content .text p {
        color: var(--thm-black);
    }

    .main-slider-two__content .btn-box {
        position: relative;
        display: block;
        line-height: 0;
        opacity: 0;
        -webkit-transition: all 1300ms ease;
        transition: all 1300ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    .main-slider-two .swiper-slide-active .main-slider-two__content .btn-box {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 2800ms;
        transition-delay: 2800ms;
    }

    .main-slider-two__content .btn-box .thm-btn {
        background: var(--thm-primary);
    }

    .main-slider-two__content .btn-box .thm-btn::before {
        background: var(--thm-base);
    }

    .main-slider-two__nav {
        position: absolute;
        top: 41%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        max-width: 1500px;
        width: 100%;
        padding: 0 15px;
        height: 0;
        line-height: 0;
        z-index: 100;
    }

    .main-slider-two__nav .swiper-button-next,
    .main-slider-two__nav .swiper-button-prev {
        position: relative;
        display: block;
        height: 60px;
        width: 60px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
        line-height: 60px;
        opacity: 1;
        margin: 0;
        transition: all 500ms ease;
        z-index: 100;
    }

    .main-slider-two__nav .swiper-button-prev {
        float: left;
        left: 0;
        margin-bottom: 10px;
    }

    .main-slider-two__nav .swiper-button-next {
        float: right;
        right: 0;
    }

    .main-slider-two__nav .swiper-button-next:hover,
    .main-slider-two__nav .swiper-button-prev:hover {
        color: #ffffff;
        background: var(--thm-base);
    }

    .main-slider-two__nav .swiper-button-next::after,
    .main-slider-two__nav .swiper-button-prev::after {
        display: none;
    }

    .main-slider-two__nav .swiper-button-prev i::before {
        position: relative;
        display: inline-block;
        font-size: 20px;
        line-height: 60px;
        font-weight: 700;
    }

    .main-slider-two__nav .swiper-button-next i::before {
        position: relative;
        display: inline-block;
        font-size: 20px;
        line-height: 60px;
        font-weight: 700;
    }

    /***
=============================================
Main Slider Three
=============================================
***/

    .main-slider-three {
        position: relative;
        display: block;
        background: var(--thm-base);
        z-index: 1;
    }

    .main-slider-three__img {
        position: absolute;
        top: -90px;
        right: 0;
        z-index: -1;
        opacity: 0;
        transform: translateX(40%);
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
    }

    .main-slider-three .swiper-slide-active .main-slider-three__img {
        opacity: 1;
        transform: translateX(0);
        -webkit-transition-delay: 2500ms;
        -moz-transition-delay: 2500ms;
        -ms-transition-delay: 2500ms;
        -o-transition-delay: 2500ms;
        transition-delay: 2500ms;
    }

    .main-slider-three .shape1 {
        position: absolute;
        top: 0px;
        left: 0;
        opacity: 0.05;
        z-index: -1;
    }

    .main-slider-three .shape2 {
        position: absolute;
        left: -200px;
        bottom: 30px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.09);
        z-index: -1;
        opacity: 0;
        transform: translateX(-100%);
    }

    .main-slider-three .swiper-slide-active .shape2 {
        opacity: 1;
        transform: translate(0);
        transition: all 1700ms ease;
        transition-delay: 2300ms;
    }

    .main-slider-three .shape3 {
        position: absolute;
        top: 170px;
        left: 240px;
        opacity: 0.7;
        z-index: -1;
    }

    .main-slider-three .shape4 {
        position: absolute;
        left: 200px;
        bottom: 75px;
        opacity: 0.55;
        z-index: -1;
    }

    .main-slider-three .shape5 {
        position: absolute;
        right: 0;
        bottom: 0;
        opacity: 0.05;
        z-index: -1;
    }

    .main-slider-three .shape6 {
        position: absolute;
        top: 180px;
        left: 40px;
        opacity: 0.5;
        z-index: -1;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
    }

    .main-slider-three .shape7 {
        position: absolute;
        left: 70px;
        bottom: 130px;
        opacity: 0.5;
        z-index: -1;
    }

    .main-slider-three .shape8 {
        position: absolute;
        top: 170px;
        left: 620px;
        opacity: 0.5;
        z-index: -1;
    }

    .main-slider-three .shape9 {
        position: absolute;
        bottom: 45px;
        right: 680px;
        opacity: 0.5;
        z-index: -1;
    }

    .main-slider-three .shape10 {
        position: absolute;
        top: 155px;
        right: 655px;
        opacity: 0.5;
        z-index: -1;
    }

    .main-slider-three__content {
        position: relative;
        display: block;
        padding: 313px 0px 190px;
    }

    .main-slider-three__content .tagline {
        position: relative;
        display: inline-block;
        margin-bottom: 26px;
        opacity: 0;
        -webkit-transition: all 1000ms ease;
        transition: all 1000ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    .main-slider-three .swiper-slide-active .main-slider-three__content .tagline {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }

    .main-slider-three__content .tagline::before {
        position: absolute;
        left: 0;
        bottom: 0px;
        right: 0;
        height: 1px;
        background: #ffffff;
        content: "";
        width: 0%;
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
    }

    .main-slider-three .swiper-slide-active .main-slider-three__content .tagline::before {
        width: 100%;
        -webkit-transition-delay: 1500ms;
        -moz-transition-delay: 1500ms;
        -ms-transition-delay: 1500ms;
        -o-transition-delay: 1500ms;
        transition-delay: 1500ms;
    }

    .main-slider-three__content .tagline p {
        color: #ffffff;
        font-size: 22px;
        line-height: 32px;
        font-weight: 700;
        z-index: 5;
    }

    .main-slider-three__content .title {
        position: relative;
        display: block;
        opacity: 0;
        -webkit-transition: all 1300ms ease;
        transition: all 1300ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    .main-slider-three .swiper-slide-active .main-slider-three__content .title {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 1800ms;
        transition-delay: 1800ms;
    }

    .main-slider-three__content .title h2 {
        color: #ffffff;
        font-size: 70px;
        line-height: 1.2em;
        font-weight: 700;
        z-index: 5;
    }

    .main-slider-three__content .btn-box {
        position: relative;
        display: block;
        margin-top: 43px;
        line-height: 0;
        opacity: 0;
        -webkit-transition: all 1300ms ease;
        transition: all 1300ms ease;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        z-index: 5;
    }

    .main-slider-three__content .btn-box .thm-btn {
        background: var(--thm-primary);
    }

    .main-slider-three .swiper-slide-active .main-slider-three__content .btn-box {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-delay: 2300ms;
        transition-delay: 2300ms;
    }

    /***
=============================================
  Page Header
=============================================
***/

    .page-header {
        position: relative;
        display: block;
        padding: 288px 0px 209px;
        background: var(--thm-base);
        z-index: 1;
    }

    .page-header .shape1 {
        position: absolute;
        top: 230px;
        left: 40px;
        opacity: 0.2;
        z-index: -1;
    }

    .page-header .shape2 {
        position: absolute;
        top: 40px;
        left: 560px;
        z-index: -1;
        opacity: 0.2;
    }

    .page-header .shape3 {
        position: absolute;
        top: 220px;
        left: 330px;
        z-index: -1;
        opacity: 0.2;
    }

    .page-header .shape4 {
        position: absolute;
        left: 300px;
        bottom: 115px;
        z-index: -1;
        opacity: 0.2;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
    }

    .page-header .shape5 {
        position: absolute;
        left: 670px;
        bottom: 30px;
        z-index: -1;
        opacity: 0.2;
    }

    .page-header .shape6 {
        position: absolute;
        left: 890px;
        bottom: 200px;
        z-index: -1;
        opacity: 0.2;
    }

    .page-header__img {
        position: absolute;
        top: -65px;
        right: -85px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        overflow: hidden;
        border-top-right-radius: 0;
    }

    .page-header__img::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(7, 95, 51);
        background: linear-gradient(0deg, rgba(7, 95, 51, 0) 61%, rgba(7, 95, 51, 0) 66%, rgba(7, 95, 51, 0.8309698879551821) 100%);
        content: "";
        z-index: 8;
    }

    .page-header__inner {
        position: relative;
        display: block;
    }

    .page-header__inner h2 {
        color: #ffffff;
        font-size: 80px;
        line-height: 1em;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 25px;
    }

    .page-header__inner .thm-breadcrumb {
        position: relative;
        display: block;
    }

    .page-header__inner .thm-breadcrumb li {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .page-header__inner .thm-breadcrumb li span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 18px;
        top: 2px;
    }

    .page-header__inner .thm-breadcrumb li a {
        color: #ffffff;
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        text-transform: capitalize;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .page-header__inner .thm-breadcrumb li a:hover {
        color: var(--thm-primary);
    }

    /***
=============================================
About One
=============================================
***/

    .about-one {
        position: relative;
        display: block;
        background: #f7f7f7bf;
        padding: 80px 0px 61px;
        z-index: 1;
    }

    .about-one__shape1 {
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0.05;
        z-index: -1;
    }

    .about-one__img {
        position: relative;
        display: block;
        /* padding-left: 100px; */
    }

    .about-one__img1 {
        position: relative;
        display: block;
        border-radius: 5px;
        overflow: hidden;
        border-left: 5px solid #e59bb7;
        border-bottom: 5px solid #e5c46a;
        padding: 5px;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    }

    .about-one__img1 img {
        width: 100%;
        border-radius: 5px;
    }

    .about-one__img2 {
        position: absolute;
        left: 0;
        bottom: -100px;
        border-bottom-right-radius: 60px;
        overflow: hidden;
    }

    .about-one__img2 img {
        width: 100%;
    }

    .about-one__experience-box {
        position: absolute;
        top: 0px;
        left: 0px;
        display: flex;
        align-items: center;
        /* background: var(--thm-primary); */
        background: linear-gradient(45deg, #991b95, #d24580);
        padding: 42px 50px 37px;
        border-radius: 10px;
        border-bottom-left-radius: 0px;
        z-index: 2;
    }

    .about-one__experience-box::before {
        position: absolute;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
        border: 2px dashed rgba(255, 255, 255, 1.0);
        border-radius: 10px;
        border-bottom-left-radius: 0px;
        content: "";
    }

    .about-one__experience-box .count-box {
        position: relative;
        display: block;
    }

    .about-one__experience-box .count-box h2 {
        color: #ffffff;
        font-size: 60px;
        line-height: 0.8em;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .about-one__experience-box .count-box h2 .odometer.odometer-auto-theme,
    .about-one__experience-box .count-box h2 .odometer.odometer-theme-default {
        font-family: var(--thm-font);
        line-height: 0.8em;
        letter-spacing: -0.02em;
    }

    .about-one__experience-box .title-box {
        position: relative;
        display: block;
        margin-left: 23px;
        margin-top: -3px;
    }

    .about-one__experience-box .title-box h3 {
        color: #ffffff;
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        letter-spacing: -0.02em;
        text-transform: capitalize;
    }

    .about-one__content {
        position: relative;
        display: block;
        /* margin-right: -185px; */
        margin-left: 20px;
        padding-top: 0px;
    }

    .about-one__content .sec-title {
        padding-bottom: 5px;
    }

    .about-one__content .text {
        position: relative;
        display: block;
    }

    .about-one__content .text p {
        margin: 0;
        color: #170121;
        font-weight: 600;
        font-size: 17px;
        margin-top: 10px;
        text-align: justify;
    }

    .about-one__content-list {
        position: relative;
        display: block;
        margin-top: 22px;
    }

    .about-one__content-list li {
        position: relative;
        display: block;
        padding-left: 27px;
        margin-bottom: 3px;
    }

    .about-one__content-list li:last-child {
        margin-bottom: 0;
    }

    .about-one__content-list li .icon-box {
        position: absolute;
        top: 0;
        left: 0;
    }

    .about-one__content-list li .icon-box span:before {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 15px;
        top: 6px;
        font-weight: 700;
    }

    .about-one__content-list li .text-box {
        position: relative;
        display: block;
    }

    .about-one__content-list li .text-box p {
        margin: 0px;
    }

    .about-one__content-text2 {
        position: relative;
        display: block;
        margin-top: 35px;
    }

    .about-one__content-text2-single {
        position: relative;
        display: block;
    }

    .about-one__content-text2-list {
        position: relative;
        display: block;
    }

    .about-one__content-text2-list li {
        position: relative;
        display: block;
        padding-left: 50px;
        margin-bottom: 23px;
    }

    .about-one__content-text2-list li:last-child {
        margin-bottom: 0;
    }

    .about-one__content-text2-list li .icon-box {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--thm-base);
    }

    .about-one__content-text2-list li .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
    }

    .about-one__content-text2-list li .text-box {
        position: relative;
        display: block;
    }

    .about-one__content-text2-list li .text-box p {
        margin: 0;
        font-size: 18px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .about-one__content-bottom {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 17px;
    }

    .about-one__content-bottom .btn-box {
        position: relative;
        display: block;
        line-height: 0;
    }

    .about-one__client-info-box {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 50px;
    }

    .about-one__client-info-box .img-box {
        position: relative;
        display: block;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
    }

    .about-one__client-info-box .img-box img {
        width: 100%;
    }

    .about-one__client-info-box .title-box {
        position: relative;
        display: block;
        margin-left: 20px;
    }

    .about-one__client-info-box .title-box h2 {
        color: var(--thm-base);
        font-size: 25px;
        line-height: 35px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .about-one__client-info-box .title-box p {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        text-transform: capitalize;
    }

    /***
=============================================
Cta One
=============================================
***/

    .cta-one {
        position: relative;
        display: block;
        padding: 88px 0px 88px;
        margin-bottom: -65px;
        z-index: 5;
    }

    .cta-one .auto-container {
        max-width: 1400px;
        width: 100%;
    }

    .cta-one__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 200px;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        z-index: -1;
    }

    .cta-one__bg::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--thm-base-rgb), 0.88);
        content: "";
        z-index: -1;
    }

    .cta-one__inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cta-one__inner .text-box {
        position: relative;
        display: block;
    }

    .cta-one__inner .text-box h2 {
        color: #ffffff;
        font-size: 50px;
        line-height: 60px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .cta-one__inner .btn-box {
        position: relative;
        display: block;
        line-height: 0;
        padding-right: 80px;
    }

    .cta-one__inner .btn-box .thm-btn {
        background: #ffffff;
    }

    .cta-one__inner .btn-box .thm-btn .txt {
        color: #000000;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .cta-one__inner .btn-box .thm-btn:hover .txt {
        color: #ffffff;
    }

    /***
=============================================
Features One
=============================================
***/

    .features-one {
        position: relative;
        display: block;
        background: #fdefef;
        padding: 80px 0px 80px;
        z-index: 1;
    }

    .features-one .shape1 {
        position: absolute;
        top: 90px;
        left: 280px;
        z-index: -1;
    }

    .features-one .shape2 {
        position: absolute;
        left: 50px;
        bottom: 500px;
        z-index: -1;
    }

    .features-one__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .features-one__bg::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgb(241, 243, 242);
        background: linear-gradient(90deg, rgba(241, 243, 242, 1) 9%, rgba(241, 243, 242, 1) 37%, rgba(241, 243, 242, 1) 63%, rgba(241, 243, 242, 1) 79%, rgba(241, 243, 242, 0.05085784313725494) 93%);
        z-index: -2;
        content: "";
    }

    .features-one__single {
        position: relative;
        display: block;
        background: #f265a6;
        box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
        padding: 60px 20px 52px;
        border-bottom-right-radius: 60px;
        margin-bottom: 30px;
        border-left: 4px solid #6a208d;
        text-align: center;
    }

    .features-one__single.mb60 {
        margin-top: 60px;
    }

    .features-one__single.style2 {
        background: #641987;
        border-left: 4px solid #ffd055;
    }

    .features-one__single.style2 .icon-box .round-box {
        background: rgba(255, 255, 255, 0.12);
    }

    .features-one__single.style2 .icon-box span::before {
        color: #ffffff;
    }

    .features-one__single.style2 .text-box h3 a {
        color: #ffffff;
    }

    .features-one__single.style2 .text-box p {
        color: #ffffff;
    }

    .features-one__single .icon-box {
        position: relative;
        display: inline-block;
        margin-bottom: 22px;
        padding-left: 25px;
        z-index: 1;
        border: 3px solid #feb800;
        border-radius: 58px;
        padding: 3px;
    }

    .features-one__single .icon-box .round-box {
        position: absolute;
        top: 0;
        left: 0px;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #f3f3f3;
        z-index: -1;
    }

    .features-one__single .icon-box span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 65px;
        transition: all 500ms linear;
        transition-delay: 0.1s;
        transform: scale(1);
    }

    .features-one__single:hover .icon-box span::before {
        transform: scale(0.9);
    }

    .features-one__single .text-box {
        position: relative;
        display: block;
    }

    .features-one__single .text-box h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 2px;
    }

    .features-one__single .text-box h3 a {
        color: #240234;
    }

    .features-one__single .text-box p {
        margin: 0px;
    }

    /***
=============================================
Features Two
=============================================
***/

    .features-two {
        position: relative;
        display: block;
        background: #fdefef;
        padding: 80px 0px 80px;
        z-index: 1;
    }

    .features-two__inner {
        position: relative;
        display: block;
    }

    .features-two__img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        border-top-left-radius: 250px;
        border-top-right-radius: 250px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }

    .features-two__img img {
        width: 100%;
    }

    .features-two__list {
        position: relative;
        display: block;
    }

    .features-two__list li {
        position: relative;
        display: block;
        padding-top: 50px;
        max-width: 430px;
        width: 100%;
        float: left;
        margin-bottom: 31px;
    }

    .features-two__list li.style2 {
        float: right;
    }

    .features-two__list li .inner {
        position: relative;
        display: block;
        background: #ffffff;
        box-shadow: rgb(50 50 93 / 25%) 0px 30px 60px -12px, rgb(0 0 0 / 30%) 0px 18px 36px -18px;
        padding: 67px 40px 36px;
        border-bottom-right-radius: 60px;
    }

    .features-two__list li .count-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 44px;
        top: 0;
        left: 40px;
        width: 90px;
        height: 90px;
        background: linear-gradient(54deg, #51186c, #e236a8);
        z-index: 3;
    }

    .features-two__list li .count-box span {
        color: #ffffff;
        font-size: 35px;
        line-height: 45px;
        font-weight: 600;
    }

    .features-two__list li .inner h2 {
        font-size: 26px;
        line-height: 36px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 17px;
    }

    .features-two__list li .inner h2 a {
        color: #4c0f60;
    }

    .features-two__list li .inner p {
        font-size: 16px;
        line-height: 28px;
        color: black;
    }

    .features-two__list li.style3 .inner {
        background: linear-gradient(91deg, #51186c, #aa1678);
    }

    .features-two__list li.style3 .inner h2 a {
        color: #ffffff;
    }

    .features-two__list li.style3 .inner p {
        color: #ffffff;
    }

    .features-two__list li.style3 .count-box {
        background: #ffffff;
        box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
    }

    .features-two__list li.style3 .count-box span {
        color: #3c054e;
    }

    /***
=============================================
Counter Two
=============================================
***/

    .counter-one {
        position: relative;
        display: block;
        background: var(--thm-black);
        padding: 120px 0px 90px;
        z-index: 1;
    }

    .counter-one__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0.03;
        z-index: -1;
    }

    .counter-one__inner {
        position: relative;
        display: block;
    }

    .counter-one__box {
        position: relative;
        display: block;
        overflow: hidden;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
    }

    .counter-one__single {
        position: relative;
        display: block;
        float: left;
        width: 20%;
        padding: 0px 15px 0px;
        z-index: 3;
    }

    .counter-one__single .inner {
        position: relative;
        display: block;
        background: rgba(255, 255, 255, 0.2);
        padding: 45px 15px 32px;
        margin-bottom: 30px;
        border-bottom-right-radius: 60px;
        z-index: 1;
    }

    .counter-one__single .inner::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: scaleX(0.8) rotateX(0deg);
        transition: all 0.4s linear;
        background: var(--thm-primary);
        border-bottom-right-radius: 60px;
        opacity: 0;
        content: "";
        z-index: -1;
    }

    .counter-one__single:hover .inner::before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .counter-one__single .icon-box {
        position: relative;
        display: inline-block;
        margin-bottom: 23px;
    }

    .counter-one__single .icon-box span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 50px;
        transition: all 500ms linear;
        transition-delay: 0.1s;
        transform: scale(1);
    }

    .counter-one__single:hover .icon-box span:before {
        transform: scale(0.9);
    }

    .counter-one__single .text-box {
        position: relative;
        display: block;
    }

    .counter-one__single .text-box p {
        color: #ffffff;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .counter-one__single .text-box h2 {
        color: #ffffff;
        font-size: 38px;
        line-height: 48px;
        font-weight: 500;
    }

    .counter-one .odometer.odometer-auto-theme,
    .counter-one .odometer.odometer-theme-default {
        font-family: var(--thm-font);
        line-height: 48px;
    }

    .counter-one .odometer-formatting-mark {
        display: none;
    }

    /***
=============================================
Portfolio One
=============================================
***/

    .portfolio-one {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 90px;
        z-index: 1;
    }

    .portfolio-one .auto-container {
        max-width: 1880px;
        width: 100%;
    }

    .portfolio-one__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .portfolio-one__single-img {
        position: relative;
        display: block;
    }

    .portfolio-one__single-img .inner {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 20px;
        border-bottom-left-radius: 0px;
        z-index: 1;
        border-top-right-radius: 100px;
    }

    .portfolio-one__single-img .inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
        z-index: 1;
        transition: all 500ms ease;
        /* background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 60%); */
    }

    .portfolio-one__single-img .inner::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* transition-delay: .1s; */
        /* transition-timing-function: ease-in-out; */
        /* transition-duration: .7s; */
        /* transition-property: all; */
        /* background: rgba(var(--thm-black-rgb), 0.6); */
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .portfolio-one__single:hover .portfolio-one__single-img .inner::before {
        opacity: 1;
    }

    .portfolio-one__single-img .inner img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .portfolio-one__single:hover .portfolio-one__single-img .inner img {
        transform: scale(1);
    }

    .portfolio-one__single-img .inner .content-box {
        position: absolute;
        left: 0;
        bottom: 0px;
        background: #490b58;
        padding: 33px 30px 30px;
        border-top-right-radius: 40px;
        width: 380px;
        z-index: 2;
    }

    .portfolio-one__single-img .inner .content-box p {
        color: #ffffff;
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 3px;
    }

    .portfolio-one__single-img .inner .content-box h2 {
        font-size: 30px;
        line-height: 40px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .portfolio-one__single-img .inner .content-box h2 a {
        color: #ffffff;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .portfolio-one__single-img .inner .content-box h2 a:hover {
        color: #feb800;
    }

    .portfolio-one__single-img .inner .btn-box {
        position: absolute;
        bottom: 0px;
        left: 350px;
        z-index: 2;
    }

    .portfolio-one__single-img .inner .btn-box a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #feb800;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .portfolio-one__single-img .inner .btn-box a:hover {
        background: #e236a8;
    }

    .portfolio-one__single-img .inner .btn-box a span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .portfolio-one__single-img .inner .btn-box a:hover span::before {
        color: #ffffff;
    }

    /***
=============================================
Team One
=============================================
***/

    .team-one {
        position: relative;
        display: block;
        background: #eef0f6;
        padding: 120px 0px 290px;
        z-index: 1;
    }

    .team-one .shape1 {
        position: absolute;
        left: 50px;
        bottom: 305px;
        z-index: -1;
    }

    .team-one .shape2 {
        position: absolute;
        top: 195px;
        right: 355px;
        z-index: -1;
    }

    .team-one .shape3 {
        position: absolute;
        right: 280px;
        bottom: 50px;
        z-index: -1;
    }

    .team-one .shape4 {
        position: absolute;
        top: 150px;
        right: 150px;
        z-index: -1;
    }

    .team-one .shape5 {
        position: absolute;
        bottom: 300px;
        right: 255px;
        z-index: -1;
    }

    .team-one .shape6 {
        position: absolute;
        top: 175px;
        left: 500px;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
        z-index: -1;
    }

    .team-one .shape7 {
        position: absolute;
        left: 210px;
        bottom: 240px;
        z-index: -1;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
    }

    .team-one .shape8 {
        position: absolute;
        left: 230px;
        bottom: 370px;
        z-index: -1;
    }

    .team-one__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .team-one__single-img {
        position: relative;
        display: block;
        border-bottom-right-radius: 60px;
        overflow: hidden;
    }

    .team-one__single-img img {
        width: 100%;
        transition: all 900ms ease 100ms;
    }

    .team-one__single:hover .team-one__single-img img {
        transform: scale(1.2, 1.2);
    }

    .team-one__single-img .content-box {
        position: absolute;
        left: 0;
        bottom: 0;
        background: var(--thm-primary);
        padding: 22px 20px 23px;
        opacity: 0;
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
        -webkit-transition: all 900ms ease;
        transition: all 900ms ease;
    }

    .team-one__single:hover .team-one__single-img .content-box {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    .team-one__single-img .content-box h2 {
        font-size: 22px;
        line-height: 32px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .team-one__single-img .content-box h2 a {
        color: #ffffff;
    }

    .team-one__single-img .content-box p {
        color: #ffffff;
        font-size: 15px;
        line-height: 25px;
        font-weight: 400;
        text-transform: capitalize;
    }

    .team-one__single-img ul {
        position: absolute;
        top: 25px;
        right: 20px;
        background: var(--thm-primary);
        padding: 12px 15px 11px;
        border-radius: 10px;
        opacity: 0;
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        -webkit-transition: all 900ms ease;
        transition: all 900ms ease;
    }

    .team-one__single:hover .team-one__single-img ul {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    .team-one__single-img ul li {
        position: relative;
        display: block;
        margin-bottom: 6px;
    }

    .team-one__single-img ul li:last-child {
        margin-bottom: 0px;
    }

    .team-one__single-img ul li a {
        position: relative;
        display: block;
    }

    .team-one__single-img ul li a span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
    }

    /***
=============================================
Brand One
=============================================
***/

    .brand-one {
        position: relative;
        display: block;
        padding: 0px 0px 120px;
        margin-top: -200px;
        z-index: 5;
    }

    .brand-one__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top left;
        width: calc((100% - -130px) / 2);
        z-index: -1;
    }

    .brand-one__inner {
        position: relative;
        display: block;
    }

    .brand-one__content {
        position: relative;
        display: block;
        background: var(--thm-base);
        max-width: 870px;
        width: 100%;
        float: right;
        padding: 72px 70px 70px;
    }

    .brand-one__content .sec-title {
        padding-bottom: 37px;
    }

    .brand-one__content .sec-title h2 {
        color: #ffffff;
    }

    .brand-one__content .sec-title .sub-title .text span {
        color: #ffffff;
    }

    .brand-one__content .sec-title .sub-title .text span::before {
        background: #ffffff;
    }

    .brand-one__box {
        position: relative;
        display: block;
    }

    .brand-one__box li {
        position: relative;
        display: block;
        float: left;
        border: 2px solid rgba(255, 255, 255, 0.6);
        width: 33.33333%;
        text-align: center;
    }

    .brand-one__box li:nth-child(1) {
        border-right: none;
        border-bottom: none;
    }

    .brand-one__box li:nth-child(2) {
        border-right: none;
        border-bottom: none;
    }

    .brand-one__box li:nth-child(3) {
        border-bottom: none;
    }

    .brand-one__box li:nth-child(4) {
        border-right: none;
    }

    .brand-one__box li:nth-child(5) {
        border-right: none;
    }

    .brand-one__box li a {
        position: relative;
        display: inline-block;
        padding: 20px 0px 20px;
    }

    .brand-one__box li a img {
        transition: .5s ease;
        transform: scale(1.02);
        opacity: 0.8;
    }

    .brand-one__box li:hover a img {
        opacity: 1;
        transform: scale(1);
    }

    /***
=============================================
Pricing Plan One
=============================================
***/

    .pricing-plan-one {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 50px 0px 65px;
        z-index: 1;
    }

    .pricing-plan-one__single {
        position: relative;
        display: block;
        margin-bottom: 0px;
        padding-top: 10px;
        border: double;
        color: #8f255c7a;
        padding: 5px;
    }

    .pricing-plan-one__single-img {
        overflow: hidden;
        z-index: 5;
        /* border-bottom: 2px solid #e1b85f; */
        /* border-bottom-left-radius: 10px; */
        /* border-bottom-right-radius: 10px; */
        /* border-top: 2px solid #e1b85f; */
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        border: 1px solid #d3d3d37d;
    }

    .pricing-plan-one__single-img:before {
        /* position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; */
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        background: rgba(var(--thm-black-rgb), 0.6);
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .pricing-plan-one__single:hover .pricing-plan-one__single-img::before {
        /* opacity: 1; */
    }

    .pricing-plan-one__single-img img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
        height: 100%;

    }

    .pricing-plan-one__single:hover .pricing-plan-one__single-img img {
        transform: scale(1);
    }

    .pricing-plan-one__single-inner {
        position: relative;
        display: block;
        background: #ffffff;
        border: 1px solid #e7dddd;
        padding: 100px 13px 20px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 1;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        border-radius: 2px;
        height: 230px;
    }

    .pricing-plan-one__single:hover .pricing-plan-one__single-inner {
        box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
        border: 1px solid transparent;
    }

    .pricing-plan-one__single-inner .shape1 {
        position: absolute;
        top: 0;
        right: 0;
        opacity: 0.22;
        z-index: -1;
    }

    .pricing-plan-one__single-inner .table-header {
        position: relative;
        display: block;
        /* background: var(--thm-base); */
        /* padding: 5px 0px 5px; */
        border-radius: 5px;
        margin: 0 auto;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .pricing-plan-one__single:hover .pricing-plan-one__single-inner .table-header {
        /* background: var(--thm-primary); */
    }

    .pricing-plan-one__single-inner .table-header h2 {
        position: relative;
        color: #4a065d;
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
    }

    .pricing-plan-one__single-inner .table-header h2 .dollar {
        position: absolute;
        top: -5px;
        font-size: 15px;
    }

    .pricing-plan-one__single-inner .table-header h2 .text {
        position: relative;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        text-transform: capitalize;
        margin-left: 10px;
    }

    .pricing-plan-one__single-inner .table-content {
        position: relative;
        display: block;
        text-align: left;
        margin-top: 13px;
    }

    .pricing-plan-one__single-inner .table-content ul {
        position: relative;
        display: block;
    }

    .pricing-plan-one__single-inner .table-content ul li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .pricing-plan-one__single-inner .table-content ul li:last-child {
        margin-bottom: 0;
    }

    .pricing-plan-one__single-inner .table-content ul li .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border: 1px solid #e8e7e7;
        border-radius: 50%;
    }

    .pricing-plan-one__single-inner .table-content ul li .icon-box span:before {
        position: relative;
        display: inline-block;
        color: #222222;
        font-size: 15px;
    }

    .pricing-plan-one__single-inner .table-content ul li .text-box {
        position: relative;
        display: block;
        flex: 1;
        /* margin-left: 20px; */
    }

    .pricing-plan-one__single-inner .table-content ul li .text-box p {
        text-align: justify;
        color: #1a1a1c;
        font-size: 16px;
        line-height: 24px;
    }

    .pricing-plan-one__single-inner .table-footer {
        position: relative;
        display: block;
        margin-top: 15px;
    }

    .pricing-plan-one__single-inner .table-footer a {
        position: relative;
        display: inline-block;
        color: #4a065d;
        font-size: 16px;
        line-height: 10px;
        font-weight: 500;
        text-transform: capitalize;
        background: #fff;
        border-radius: 46px;
        padding: 5px 36px 5px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 1;
        border: double #b97c93;
    }

    .pricing-plan-one__single-inner .table-footer a:hover {
        color: #ffffff;
    }

    .pricing-plan-one__single-inner .table-footer a:before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #4a065d;
        transform: scale(0.9);
        opacity: 0;
        transition: all 300ms linear;
        transition-delay: 0.2s;
        border-radius: 48px;
        content: "";
        z-index: -1;
    }

    .pricing-plan-one__single-inner .table-footer a:hover:before {
        opacity: 1;
        transform: scale(1.0);
    }

    /***
=============================================
Slogan One
=============================================
***/

    .slogan-one {
        position: relative;
        display: block;
        padding: 143px 0px 381px;
        z-index: 1;
    }

    .slogan-one .auto-container {
        max-width: 1530px;
        width: 100%;
    }

    .slogan-one__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        z-index: -1;
    }

    .slogan-one__bg::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgb(241, 243, 242);
        background: linear-gradient(90deg, rgba(241, 243, 242, 1) 9%, rgba(241, 243, 242, 1) 20%, rgba(241, 243, 242, 1) 37%, rgba(241, 243, 242, 0.6643032212885154) 63%, rgba(241, 243, 242, 0) 74%);
        content: "";
        z-index: -2;
    }

    .slogan-one__inner {
        position: relative;
        display: block;
    }

    .slogan-one__inner h4 {
        color: var(--thm-base);
        font-size: 22px;
        line-height: 32px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 12px;
    }

    .slogan-one__inner h2 {
        color: var(--thm-base);
        font-size: 60px;
        line-height: 80px;
        font-weight: 600;
        text-transform: capitalize;
    }

    /***
=============================================
Testimonials One
=============================================
***/

    .testimonials-one {
        position: relative;
        display: block;
        margin-top: -235px;
        z-index: 3;
    }

    .testimonials-one::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 750px;
        background: var(--thm-base);
        content: "";
        z-index: -1;
    }

    .testimonials-one__left {
        position: relative;
        display: block;
        margin-left: -165px;
        max-width: 520px;
        width: 100%;
        padding: 120px 0px 120px;
    }

    .testimonials-one__left-inner {
        position: relative;
        display: block;
    }

    .testimonials-one__single {
        position: relative;
        display: block;
    }

    .testimonials-one__single .icon {
        position: relative;
        display: block;
        margin-bottom: 17px;
    }

    .testimonials-one__single .icon span::before {
        color: #ffffff;
        font-size: 45px;
    }

    .testimonials-one__single h2 {
        color: #ffffff;
        font-size: 38px;
        line-height: 60px;
        font-weight: 500;
    }

    .testimonials-one__single .client-info {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 70px;
    }

    .testimonials-one__single .client-info .img-box {
        position: relative;
        display: block;
    }

    .testimonials-one__single .client-info .img-box .inner {
        position: relative;
        display: block;
        overflow: hidden;
        border-top-left-radius: 30px;
    }

    .testimonials-one__single .client-info .img-box .inner::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border: 5px solid #ffffff;
        border-top-left-radius: 30px;
        content: "";
    }

    .testimonials-one__single .client-info .img-box .inner img {
        width: 100%;
    }

    .testimonials-one__single .client-info .img-box .icon {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -30px;
        right: -30px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--thm-primary);
    }

    .testimonials-one__single .client-info .img-box .icon span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
    }

    .testimonials-one__single .client-info .text-box {
        position: relative;
        display: block;
        flex: 1;
        margin-left: 45px;
    }

    .testimonials-one__single .client-info .text-box .review-box {
        position: relative;
        display: block;
        margin-bottom: 3px;
    }

    .testimonials-one__single .client-info .text-box .review-box li {
        position: relative;
        display: inline-block;
    }

    .testimonials-one__single .client-info .text-box .review-box li span::before {
        position: relative;
        display: inline-block;
        color: #fab600;
        font-size: 15px;
    }

    .testimonials-one__single .client-info .text-box .text {
        position: relative;
        display: block;
    }

    .testimonials-one__single .client-info .text-box .text h2 {
        color: #ffffff;
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: -0.02em;
    }

    .testimonials-one__single .client-info .text-box .text p {
        color: #ffffff;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .testimonials-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 0px;
        position: absolute;
        top: 35%;
        right: -130px;
    }

    .testimonials-one__carousel.owl-carousel .owl-dots .owl-dot {
        position: relative;
        display: block;
        width: 10px;
        height: 10px;
        background: #f1f3f2;
        margin: 13px 0px;
        padding: 0px;
        border-radius: 50%;
        transition: all 300ms linear;
        transition-delay: 0.2s;
    }

    .testimonials-one__carousel.owl-carousel .owl-dots .owl-dot::before {
        position: absolute;
        top: -5px;
        left: -5px;
        bottom: -5px;
        right: -5px;
        border: 2px solid #f1f3f2;
        content: "";
        transform: scale(0.5);
        border-radius: 50%;
        transition: all 300ms linear;
        transition-delay: 0.2s;
    }

    .testimonials-one__carousel.owl-carousel .owl-dots .owl-dot.active::before {
        transform: scale(1.0);
    }

    .testimonials-one__carousel.owl-theme .owl-dots .owl-dot span {
        display: none;
    }

    .testimonials-one__form {
        position: absolute;
        bottom: 0;
        display: block;
        background-color: #ffffff;
        box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
        padding: 43px 40px 55px;
        max-width: 470px;
        width: 100%;
        z-index: 2;
    }

    .testimonials-one__form .title-box {
        position: relative;
        display: block;
    }

    .testimonials-one__form .title-box h2 {
        color: var(--thm-black);
        font-size: 50px;
        line-height: 60px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .testimonials-one__form .form-box {
        position: relative;
        margin-top: 37px;
    }

    .testimonials-one__form .form-box form {
        position: relative;
    }

    .testimonials-one__form .form-box form .form-group {
        position: relative;
        margin-bottom: 20px;
    }

    .testimonials-one__form .form-box form .form-group input[type="text"],
    .testimonials-one__form .form-box form .form-group input[type="email"],
    .testimonials-one__form .form-box form .form-group input[type="tel"],
    .testimonials-one__form .form-box form .form-group input[type="url"],
    .testimonials-one__form .form-box form .form-group textarea,
    .testimonials-one__form .form-box form .form-group select {
        position: relative;
        display: block;
        font-size: 15px;
        color: var(--thm-gray);
        font-weight: 400;
        text-transform: none;
        padding: 0px 20px 0px;
        width: 100%;
        height: 70px;
        background-color: #f4f5f8;
        border-radius: 5px;
        outline: none;
        border: none;
        font-family: var(--thm-font);
    }

    .testimonials-one__form .form-box form .form-group textarea {
        height: 140px;
        resize: none;
        padding-top: 19px;
    }

    .testimonials-one__form .form-box form .form-group .select-box {
        position: relative;
        display: block;
        width: 100%;
        height: 70px;
    }

    .testimonials-one__form .form-box form .form-group .nice-select {
        background: #f4f5f8;
        width: 100%;
        height: 70px;
        line-height: 70px;
        border: none;
        color: var(--thm-gray);
        font-size: 15px;
        font-weight: 400;
        text-transform: none;
        font-style: normal;
        padding: 0px 20px 0px;
        border-radius: 5px;
        font-family: var(--thm-font);
    }

    .testimonials-one__form .form-box form .form-group .nice-select:after {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.3);
        border-right: 2px solid rgba(0, 0, 0, 0.3);
        right: 23px;
        margin-top: 0px;
        top: 27px;
        z-index: 10;
    }

    .testimonials-one__form .form-box form .form-group .nice-select .list {
        background-color: rgba(255, 255, 255, 1.0);
    }

    .testimonials-one__form .form-box form .button-box {
        position: relative;
        display: block;
    }

    .testimonials-one__form .form-box form .button-box button {
        position: relative;
        z-index: 5;
    }

    .testimonials-one__form .form-box form .button-box button.thm-btn {
        background-color: var(--thm-black);
        position: relative;
        display: block;
        width: 100%;
        border-radius: 0;
        line-height: 65px;
        z-index: 5;
    }

    .testimonials-one__form .form-box form .button-box button.thm-btn::before {
        background: var(--thm-primary);
        color: #ffffff;
    }

    /***
=============================================
Blog One
=============================================
***/

    .blog-one {
        position: relative;
        display: block;
        background: #f7eeeef0;
        padding: 30px 0px 80px;
    }

    .blog-one__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        border: 2px solid #f4e1fb;
        border-radius: 5px;
        padding: 2px;
    }

    .blog-one__single-img {
        position: relative;
        display: block;
    }

    .blog-one__single-img .date-box {
        position: absolute;
        left: 29px;
        bottom: -35px;
        background: var(--thm-base);
        border-radius: 6px;
        text-align: center;
        width: 84%;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        border-top: 3px solid #e1b85f;
    }

    .blog-one__single-img .date-box p {
        color: #ffffff;
        font-size: 20px;
        line-height: 20px;
        font-weight: 500;
        display: contents;
    }

    .blog-one__single-img .inner {
        position: relative;
        display: block;
        overflow: hidden;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        z-index: 1;
    }

    .blog-one__single-img .inner:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        /* background: rgba(var(--thm-black-rgb), 0.6); */
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .blog-one__single:hover .blog-one__single-img .inner::before {
        opacity: 1;
    }

    .blog-one__single-img .inner img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .blog-one__single:hover .blog-one__single-img .inner img {
        transform: scale(1);
    }

    .blog-one__single__content {
        position: relative;
        display: block;
        background: #ffffff;
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
        padding: 60px 35px 29px;
        padding-right: 20px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .blog-one__single__content .meta-box {
        position: relative;
        display: block;
        overflow: hidden;
        margin-bottom: 22px;
    }

    .blog-one__single__content .meta-box li {
        position: relative;
        display: flex;
        align-items: center;
        float: left;
        margin-right: 30px;
        line-height: 0;
    }

    .blog-one__single__content .meta-box li:last-child {
        margin-right: 0px;
    }

    .blog-one__single__content .meta-box li .icon {
        position: relative;
        display: block;
    }

    .blog-one__single__content .meta-box li .icon span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 15px;
        font-weight: 700;
    }

    .blog-one__single__content .meta-box li .text {
        position: relative;
        display: block;
        margin-left: 8px;
        margin-top: 0;
    }

    .blog-one__single__content .meta-box li .text p {
        font-size: 15px;
        font-weight: 600;
        font-family: var(--thm-font-2);
        margin: 0;
    }

    .blog-one__single__content .meta-box li .text p a {
        color: var(--thm-gray);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .blog-one__single__content .meta-box li .text p a:hover {
        color: var(--thm-base);
    }

    .blog-one__single__content h2 {
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 21px;
    }

    .blog-one__single__content h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .blog-one__single__content h2 a:hover {
        color: var(--thm-base);
    }

    .blog-one__single__content p {
        position: relative;
        margin: 0;
        margin-bottom: 34px;
    }

    .blog-one__single__content .bottom-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #e4e4ea;
        padding-top: 20px;
        justify-content: center;
    }

    .blog-one__single__content .bottom-box .read-more-btn {
        position: relative;
        display: block;
    }

    .blog-one__single__content .bottom-box .read-more-btn a {
        color: #92139e;
        font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .blog-one__single__content .bottom-box .read-more-btn a:hover {
        color: var(--thm-base);
    }

    .blog-one__single__content .bottom-box .icon-box {
        position: relative;
        display: inline-block;
    }

    .blog-one__single__content .bottom-box .icon-box a {
        position: relative;
        color: var(--thm-gray);
        transition: all 200ms linear;
        transition-delay: 0.1s;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(var(--thm-base-rgb), 1.0);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 10px;
    }

    .blog-one__single__content .bottom-box .icon-box a:hover {
        color: #ffffff;
    }

    .blog-one__single__content .bottom-box .icon-box a span:before {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
    }

    /***
=============================================
Footer One
=============================================
***/

    .footer-one {
        position: relative;
        display: block;
    }

    .footer-one__top {
        position: relative;
        display: block;
        z-index: 1;
    }

    .footer-one__top__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        z-index: -1;
    }

    .footer-one__top-inner {
        position: relative;
        display: block;
        padding: 68px 100px 80px;
        z-index: 1;
    }

    .footer-one__top-inner .shape6 {
        position: absolute;
        left: -325px;
        bottom: 25px;
        opacity: 0.55;
        z-index: -1;
    }

    .footer-one__top-inner .shape7 {
        position: absolute;
        top: 0;
        right: 165px;
        z-index: -1;
    }

    .footer-one__top-inner::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-base);
        content: "";
        z-index: -1;
    }

    .footer-one__top-inner .title {
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 58px;
    }

    .footer-one__top-inner .title h2 {
        color: #ffffff;
        font-size: 50px;
        line-height: 60px;
        font-weight: 500;
        letter-spacing: -0.02em;
    }

    .footer-one__top-inner form {
        position: relative;
        display: block;
    }

    .footer-one__top-inner form ul {
        position: relative;
        display: block;
        margin-left: -10px;
        margin-right: -10px;
    }

    .footer-one__top-inner form ul li {
        position: relative;
        display: block;
        float: left;
        width: 25%;
        padding: 0px 10px 0px;
    }

    .footer-one__top-inner form ul li .input-box input[type="text"],
    .footer-one__top-inner form ul li .input-box input[type="email"] {
        position: relative;
        display: block;
        background: #ffffff;
        width: 100%;
        height: 60px;
        border: 0px solid #dcdfe2;
        color: var(--thm-gray);
        font-size: 15px;
        font-weight: 400;
        text-transform: none;
        font-style: normal;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 5px;
        transition: all 500ms ease;
        font-family: var(--thm-font);
        letter-spacing: 0.02em;
        outline: none;
    }

    .footer-one__top-inner form ul li .button-box {
        position: relative;
        display: block;
    }

    .footer-one__top-inner form ul li .button-box .footer-one__top-btn {
        color: var(--thm-gray);
        font-size: 16px;
        line-height: 60px;
        font-weight: 500;
        background: #ffffff;
        border-radius: 5px;
        padding: 0px 40px 0px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .footer-one__top-inner form ul li .button-box .footer-one__top-btn:hover {
        background: var(--thm-primary);
        color: #ffffff;
    }

    .footer {
        position: relative;
        display: block;
        background: #ffe7e7;
        padding: 56px 0px 66px;
        overflow: hidden;
        z-index: 1;
    }

    .footer__pattern {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        opacity: 0.04;
        z-index: -1;
    }

    .footer .shape1 {
        position: absolute;
        top: 0;
        right: 0;
        opacity: 0.2;
        z-index: -1;
    }

    .footer .shape2 {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
        z-index: -1;
    }

    .footer .shape3 {
        position: absolute;
        left: -10px;
        bottom: 30px;
        opacity: 0.35;
        z-index: -1;
    }

    .footer .shape4 {
        position: absolute;
        top: 60px;
        right: 75px;
        opacity: 0.35;
        z-index: -1;
    }

    .footer .shape5 {
        position: absolute;
        bottom: -20px;
        right: 450px;
        opacity: 0.35;
        z-index: -1;
    }

    .footer-widget__single {
        position: relative;
        display: block;
    }

    .footer-widget__single .title {
        position: relative;
        display: block;
        margin-bottom: 22px;
        margin-top: -8px;
    }

    .footer-widget__single .title h2 {
        color: var(--thm-black);
        font-size: 24px;
        line-height: 34px;
        font-weight: 700;
        text-transform: capitalize;
        font-family: 'Mulish', sans-serif !important;
    }

    .footer-widget__single-about {
        position: relative;
        display: block;
    }

    .footer-widget__single-about .text-box {
        position: relative;
        display: block;
    }

    .footer-widget__single-about .text-box p {
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-widget__single-about .social-link {
        position: relative;
        display: block;
       margin-top: 13px;
    margin-left: 27px;
    }

    .footer-widget__single-about .social-link li {
        position: relative;
        display: inline-block;
        margin-right: 0px;
    }

    .footer-widget__single-about .social-link li:last-child {
        margin-right: 0;
    }

    .footer-widget__single-about .social-link li a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

    .footer-widget__single-about .social-link li a::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        /*background: var(--thm-primary);*/
        transform: scale(0.5);
        opacity: 0;
        transition: all 300ms linear;
        transition-delay: 0.1s;
        content: "";
    }

    .footer-widget__single-about .social-link li a:hover::before {
        transform: scale(1);
        opacity: 1;
    }

    .footer-widget__single-about .social-link li a span::before {
      position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    font-size: 23px;
    font-weight: 500;
    color: #af3470;
    }

    .footer-widget__single-links {
        position: relative;
        display: block;
    }

    .footer-widget__single-links-list {
        position: relative;
        display: block;
    }

    .footer-widget__single-links-list li {
        position: relative;
        display: block;
        margin-bottom: 11px;
        color: #181717;
        font-size: 18px;
        font-family: 'Mulish', sans-serif !important;
        font-weight: 500;
    }

    .footer-widget__single-links-list li:last-child {
        margin-bottom: 0;
    }

    .footer-widget__single-links-list li a {
        position: relative;
        margin-left: 3px;
        display: inline-block;
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        line-height: 25px;
        font-weight: 500;
        text-transform: capitalize;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        color: #181717;
        font-size: 18px;
        font-family: 'Mulish', sans-serif !important;
        font-weight: 400;
    }

    .footer-widget__single-links-list li a:hover {
        color: #830744;
    }

    .footer-widget__single-blog {
        position: relative;
        display: block;
    }

    .footer-widget__single-blog-list {
        position: relative;
        display: block;
    }

    .footer-widget__single-blog-list li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    .footer-widget__single-blog-list li:last-child {
        margin-bottom: 0;
    }

    .footer-widget__single-blog-list li .img-box {
        position: relative;
        display: block;
        border-radius: 5px;
        overflow: hidden;
    }

    .footer-widget__single-blog-list li .img-box img {
        width: 100%;
    }

    .footer-widget__single-blog-list li .img-box .overlay-icon {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(var(--thm-black-rgb), .80);
        border-radius: 5px;
        opacity: 0;
        transform: perspective(400px) scale(0);
        transform-origin: top;
        transition: all 0.5s ease-in-out 0s;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .footer-widget__single-blog-list li:hover .img-box .overlay-icon {
        opacity: 1;
        transform: perspective(400px) scale(1.0);
        transition: all 0.3s ease-in-out 0.3s;
    }

    .footer-widget__single-blog-list li .img-box .overlay-icon a {
        color: #ffffff;
        font-size: 20px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .footer-widget__single-blog-list li .text-box {
        position: relative;
        display: block;
        margin-left: 20px;
        flex: 1;
    }

    .footer-widget__single-blog-list li .text-box span {
        color: #ffb400;
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
    }

    .footer-widget__single-blog-list li .text-box p {
        font-size: 16px;
        line-height: 30px;
        font-weight: 600;
    }

    .footer-widget__single-blog-list li .text-box p a {
        color: rgba(255, 255, 255, 0.8);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .footer-widget__single-blog-list li .text-box p a:hover {
        color: #ffffff;
    }

    .footer-widget__single-newsletter {
        position: relative;
        display: block;
    }

    .footer-widget__single-newsletter .text-box {
        position: relative;
        display: block;
    }

    .footer-widget__single-newsletter .text-box p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        line-height: 30px;
        font-weight: 500;
    }

    .footer-widget__single-newsletter .newsletter-form {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 30px;
    }

    .footer-widget__single-newsletter .newsletter-form input[type="email"] {
        position: relative;
        display: block;
        width: 100%;
        height: 60px;
        padding: 0 30px;
        padding-right: 70px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        border-radius: 10px;
        transition: all 500ms ease;
        font-family: var(--thm-font);
        text-transform: none;
        outline: none;
    }

    .footer-widget__single-newsletter .newsletter-form input::-webkit-input-placeholder {
        color: #ffffff;
    }

    .footer-widget__single-newsletter .newsletter-form input:-moz-placeholder {
        color: #ffffff;
    }

    .footer-widget__single-newsletter .newsletter-form input::-moz-placeholder {
        color: #ffffff;
    }

    .footer-widget__single-newsletter .newsletter-form input:-ms-input-placeholder {
        color: #ffffff;
    }

    .footer-widget__single-newsletter .newsletter-form button {
        position: absolute;
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: 50px;
        height: 40px;
        color: var(--thm-base);
        font-size: 16px;
        line-height: 40px;
        border-radius: 5px;
        background: #ffffff;
        transition: all 300ms ease 100ms;
    }

    .footer-widget__single-newsletter .newsletter-form input[type="email"]:focus {
        color: #ffffff;
    }

    .footer-widget__single-newsletter .newsletter-form input[type="email"]:focus+button,
    .footer-widget__single-newsletter .newsletter-form button:hover {
        color: #ffffff;
        background: var(--thm-base);
    }

    .footer-one__bottom {
        position: relative;
        display: block;
        background: #f9dbdb;
        padding: 25px 0px 24px;
    }

    .footer-one__bottom .bottom-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-one__bottom .bottom-inner .copyright {
        position: relative;
        display: block;
    }

    .footer-one__bottom .bottom-inner .copyright p {
        color: #a90471;
        font-size: 16px;
        line-height: 30px;
        font-weight: 500;
        font-family: 'Mulish', sans-serif;
    }

    .footer-one__bottom-menu {
        position: relative;
        display: block;
    }

    .footer-one__bottom-menu li {
        position: relative;
        display: inline-block;
        padding-right: 10px;
        margin-right: 5px;
    }

    .footer-one__bottom-menu li::before {
        position: absolute;
        top: 8px;
        bottom: 8px;
        right: 0;
        width: 1px;
        background: #ffffff;
        content: "";
    }

    .footer-one__bottom-menu li:last-child:before {
        display: none;
    }

    .footer-one__bottom-menu li a {
        color: #ffffff;
        font-size: 16px;
        line-height: 30px;
        font-weight: 400;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .footer-one__bottom-menu li a:hover {
        color: var(--thm-primary);
    }

    /***
=============================================
Feature Three
=============================================
***/

    .feature-three {
        position: relative;
        display: block;
        background: #eef0f6;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .feature-three .shape1 {
        position: absolute;
        top: 150px;
        right: 310px;
        z-index: -1;
    }

    .feature-three .container-fluid {
        padding-right: var(--bs-gutter-x, 0rem);
        padding-left: var(--bs-gutter-x, 0rem);
    }

    .features-three__inner {
        position: relative;
        display: block;
    }

    .feature-three__single {
        position: relative;
        display: block;
        overflow: hidden;
        max-width: 370px;
        width: 100%;
        padding: 50px 40px 50px;
        z-index: 1;
    }

    .feature-three__single .shape1 {
        position: absolute;
        top: 45px;
        right: 10px;
        opacity: 0.5;
        z-index: 1;
    }

    .feature-three__single .shape2 {
        position: absolute;
        left: 0;
        bottom: 25px;
        opacity: 0.5;
        z-index: 1;
    }

    .feature-three__single::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #ffffff;
        border-radius: 10px;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
        content: "";
        z-index: -1;
    }

    .feature-three__single::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: scaleX(0.7) rotateX(0deg);
        transition: all 0.4s linear;
        border-radius: 10px;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
        background: var(--thm-base);
        opacity: 0;
        z-index: -1;
        content: "";
    }

    .feature-three__single:hover::after {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .feature-three__single-icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #eef0f6;
        margin: 0 auto 37px;
    }

    .feature-three__single-icon span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 50px;
    }

    .feature-three__single h2 {
        font-size: 28px;
        line-height: 38px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .feature-three__single h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .feature-three__single:hover h2 a {
        color: #ffffff;
    }

    .feature-three__single .border-box {
        position: relative;
        display: block;
        width: 50px;
        height: 3px;
        background: #eef0f6;
        margin: 10px auto 0px;
    }

    .feature-three__single .border-box::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 10px;
        height: 3px;
        background: var(--thm-primary);
        content: "";
        margin: 0 auto;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .feature-three__single:hover .border-box::before {
        background: #96a7d8;
    }

    .feature-three__single p {
        margin: 0;
        margin-top: 10px;
    }

    .feature-three__single .btn-box {
        position: relative;
        display: inline-block;
        margin-top: 24px;
    }

    .feature-three__single:hover p {
        color: #ffffff;
    }

    .feature-three__single .btn-box a {
        position: relative;
        display: block;
        padding: 0px 30px 0px;
        background: #eef0f6;
        color: #00415d;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        letter-spacing: 0.1em;
        line-height: 50px;
        border-radius: 25px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .feature-three__single .btn-box a:hover {
        background: var(--thm-primary);
        color: #ffffff;
    }

    .feature-three__single .btn-box a span::before {
        position: relative;
        display: inline-block;
        color: #00415d;
        font-size: 15px;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        top: 2px;
    }

    .feature-three__single .btn-box a:hover span::before {
        color: #ffffff;
    }

    .feature-three__carousel.owl-carousel {
        display: block;
        max-width: 370px;
        width: 100%;
        margin: 0 auto;
    }

    .feature-three__carousel.owl-carousel .owl-stage-outer {
        overflow: visible;
        padding: 0px 0px 0px;
    }

    .feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single::after {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.6s linear;
        opacity: 1;
    }

    .feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single h2 a {
        color: #ffffff;
    }

    .feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single p {
        color: #ffffff;
    }

    .feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single .border-box::before {
        background: #96a7d8;
    }

    /***
=============================================
About Two
=============================================
***/

    .about-two {
        position: relative;
        display: block;
        background: #ffffff;
        box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
        padding: 180px 0px 120px;
        z-index: 2;
    }

    .about-two__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-position: top right;
    }

    .about-two__img {
        position: relative;
        display: block;
        margin-left: -50px;
        margin-right: 30px;
        z-index: 1;
    }

    .about-two__img .shape1 {
        position: absolute;
        top: -23px;
        right: -23px;
        width: 180px;
        height: 180px;
        background: var(--thm-primary);
        z-index: -1;
    }

    .about-two__img .shape2 {
        position: absolute;
        right: -25px;
        bottom: -25px;
        z-index: -1;
    }

    .about-two__img1 {
        position: relative;
        display: block;
    }

    .about-two__img1 img {
        width: 100%;
    }

    .about-two__img1 .counter-box {
        position: absolute;
        left: -25px;
        bottom: -25px;
        background: var(--thm-primary);
        padding: 40px 30px 35px;
    }

    .about-two__img1 .counter-box h2 {
        color: #ffffff;
        font-size: 55px;
        font-weight: 600;
        letter-spacing: -0.07em;
        line-height: 0
    }

    .about-two__img1 .counter-box h2 .plus {
        font-size: 40px;
        margin-left: -5px;
    }

    .about-two__img1 .counter-box h2 .text {
        font-size: 33px;
        line-height: 43px;
        font-weight: 700;
        letter-spacing: 0;
    }

    .about-two__img .odometer.odometer-auto-theme,
    .about-two__img .odometer.odometer-theme-default {
        font-family: var(--thm-font);
        line-height: 0.9em;
    }

    .about-two__img2 {
        position: absolute;
        top: -60px;
        left: 0px;
        width: 160px;
        height: 160px;
        border: 5px solid #ffffff;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
    }

    .about-two__img2 img {
        width: 100%;
    }

    .about-two__content {
        position: relative;
        display: block;
        margin-left: 30px;
    }

    .about-two__content .sec-title {
        padding-bottom: 26px;
    }

    .about-two__content-text {
        position: relative;
        display: block;
    }

    .about-two__content-text p {
        margin: 0;
        color: var(--thm-black);
        font-weight: 500;
    }

    .about-two__content-text2 {
        position: relative;
        display: block;
        margin-top: 35px;
    }

    .about-two__content-text2-single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .about-two__content-text2-single .img-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 75px;
        height: 75px;
        z-index: 1;
        margin-left: 10px;
        margin-bottom: 27px;
    }

    .about-two__content-text2-single .img-box::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-base);
        border-radius: 5px;
        border-bottom-left-radius: 30px;
        content: "";
        z-index: -1;
    }

    .about-two__content-text2-single .img-box::before {
        position: absolute;
        top: -10px;
        left: -10px;
        bottom: 0;
        right: 0;
        background: #d9dee6;
        border-radius: 5px;
        content: "";
        z-index: -1;
    }

    .about-two__content-text2-single .img-box img {
        width: auto;
    }

    .about-two__content-text2-single .text-box {
        position: relative;
        display: block;
    }

    .about-two__content-text2-single .text-box h3 {
        font-size: 22px;
        line-height: 32px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 6px;
    }

    .about-two__content-text2-single .text-box h3 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .about-two__content-text2-single .text-box h3 a:hover {
        color: var(--thm-primary);
    }

    .about-two__content-text2-single .text-box p {
        margin: 0;
    }

    .about-two__content-text3 {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 1px;
    }

    .about-two__content-text3 .btn-box {
        position: relative;
        display: block;
        line-height: 0;
    }

    .about-two__content-text3 .btn-box .thm-btn {
        background: var(--thm-primary);
    }

    .about-two__content-text3 .btn-box .thm-btn::before {
        background: var(--thm-base);
    }

    .about-two__client-info-box {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 50px;
    }

    .about-two__client-info-box .img-box {
        position: relative;
        display: block;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
    }

    .about-two__client-info-box .img-box img {
        width: 100%;
    }

    .about-two__client-info-box .title-box {
        position: relative;
        display: block;
        margin-left: 25px;
    }

    .about-two__client-info-box .title-box h3 {
        font-size: 25px;
        line-height: 35px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .about-two__client-info-box .title-box p {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        text-transform: capitalize;
    }

    /***
=============================================
Gallery One
=============================================
***/

    .gallery-one {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .gallery-one .container-fluid {
        padding-right: var(--bs-gutter-x, 0rem);
        padding-left: var(--bs-gutter-x, 0rem);
    }

    .gallery-one__single {
        position: relative;
        display: block;
        padding-top: 75px;
        max-width: 375px;
        width: 100%;
        z-index: 1;
    }

    .gallery-one__single::before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: #eef0f6;
        clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);
        content: "";
        z-index: -1;
    }

    .gallery-one__single-img {
        position: relative;
        display: block;
    }

    .gallery-one__single-img .inner {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 50%;
        border-top-left-radius: 0px;
        z-index: 1;
    }

    .gallery-one__single-img .inner img {
        width: 100%;
        transform: scale(1.01);
        transition: all 700ms ease;
    }

    .gallery-one__single:hover .gallery-one__single-img .inner img {
        transform: scale(1.2);
    }

    .gallery-one__single-img .inner::before {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        content: '';
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, .2);
        border-radius: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        z-index: 1;
    }

    .gallery-one__single:hover .gallery-one__single-img .inner::before {
        -webkit-animation: circle .75s;
        animation: circle .75s;
    }

    .gallery-one__single-img .content-box {
        position: absolute;
        left: 0;
        bottom: 0;
        background: #ffffff;
        padding: 32px 0px 33px;
        padding-left: 20px;
        width: 280px;
        border-top-right-radius: 20px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 2;
    }

    .gallery-one__single-img .content-box::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        transform: scaleX(0.7) rotateX(20deg);
        transition: all 0.4s linear;
        z-index: -1;
        background: var(--thm-primary);
        border-top-right-radius: 20px;
        opacity: 0;
    }

    .gallery-one__single:hover .gallery-one__single-img .content-box::before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .gallery-one__single-img .content-box h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .gallery-one__single-img .content-box h3 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .gallery-one__single:hover .gallery-one__single-img .content-box h3 a {
        color: #ffffff;
    }

    .gallery-one__single-img .content-box p {
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        text-transform: capitalize;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .gallery-one__single:hover .gallery-one__single-img .content-box p {
        color: #ffffff;
    }

    .gallery-one__single-img .btn-box {
        position: absolute;
        left: 255px;
        bottom: 32px;
        z-index: 2;
    }

    .gallery-one__single-img .btn-box a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--thm-black);
        border-radius: 10px;
        transition: all 200ms linear;
        transition-delay: 0.3s;
    }

    .gallery-one__single:hover .gallery-one__single-img .btn-box a {
        background: #ffffff;
    }

    .gallery-one__single-img .btn-box a span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .gallery-one__single:hover .gallery-one__single-img .btn-box a span:before {
        color: var(--thm-black);
    }

    .gallery-one__carousel.owl-carousel {
        display: block;
        max-width: 375px;
        width: 100%;
        margin: 0 auto;
    }

    .gallery-one__carousel.owl-carousel .owl-stage-outer {
        overflow: visible;
        padding: 0px 0px 0px;
    }

    /***
=============================================
Services Two
=============================================
***/

    .services-two {
        position: relative;
        display: block;
        background: var(--thm-black);
        padding: 120px 0px 320px;
        z-index: 1;
    }

    .services-two .shape1 {
        position: absolute;
        top: 500px;
        left: 50px;
        opacity: 0.3;
        z-index: -1;
    }

    .services-two .shape2 {
        position: absolute;
        top: 150px;
        right: 310px;
        z-index: -1;
        opacity: 0.3;
    }

    .services-two .shape3 {
        position: absolute;
        top: 15px;
        left: 330px;
        z-index: -1;
        opacity: 0.3;
    }

    .services-two .shape4 {
        position: absolute;
        top: 50px;
        right: 750px;
        z-index: -1;
        webkit-animation: animation1 5s ease-in infinite;
        animation: animation1 5s ease-in infinite;
        opacity: 0.3;
    }

    .services-two .shape5 {
        position: absolute;
        top: -70px;
        right: -70px;
        z-index: -1;
        opacity: 0.3;
    }

    .services-two .shape6 {
        position: absolute;
        right: -10px;
        bottom: 135px;
        z-index: -1;
        opacity: 0.3;
    }

    .services-two .shape7 {
        position: absolute;
        bottom: 460px;
        right: -60px;
        z-index: -1;
        opacity: 0.3;
    }

    .services-two .shape8 {
        position: absolute;
        bottom: 220px;
        left: 370px;
        z-index: -1;
        opacity: 0.3;
    }

    .services-two .sec-title .sub-title .text span {
        color: #ffffff;
    }

    .services-two .sec-title .sub-title .text span::before {
        background: #ffffff;
    }

    .services-two .sec-title h2 {
        color: #ffffff;
    }

    .services-two__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
        background: #ffffff;
        padding: 37px 45px 37px;
        padding-right: 50px;
        border-top-right-radius: 50px;
        border-bottom-left-radius: 50px;
    }

    .services-two__single .inner {
        position: relative;
        display: block;
        padding-left: 130px;
    }

    .services-two__single .inner .img-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 8px;
        left: 0;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #eef0f6;
        border: 8px solid #ffffff;
        box-shadow: 0px 2px 20px 0px rgb(9, 24, 84, 0.08);
    }

    .services-two__single .inner .img-box img {
        width: auto;
        transition: .5s ease;
        transform: scale(1.0);
    }

    .services-two__single:hover .inner .img-box img {
        transform: scale(1.05);
    }

    .services-two__single .inner .content-box {
        position: relative;
        display: block;
    }

    .services-two__single .inner .content-box h2 {
        font-size: 22px;
        line-height: 32px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 8px;
    }

    .services-two__single .inner .content-box h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .services-two__single .inner .content-box h2 a:hover {
        color: var(--thm-primary);
    }

    .services-two__single .inner .content-box p {
        font-size: 14px;
        line-height: 26px
    }

    /***
=============================================
Testimonial Two
=============================================
***/

    .testimonial-two {
        position: relative;
        display: block;
        background: #dddddd;
        padding: 120px 0px 120px;
        overflow: hidden;
        z-index: 1;
    }

    .testimonial-two__img7 {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .testimonial-two__content {
        position: relative;
        display: block;
        max-width: 880px;
        width: 100%;
    }

    .testimonial-two__content .sec-title h2 {
        color: #ffffff;
    }

    .testimonial-two__content .sec-title .sub-title .text span {
        color: #ffffff;
    }

    .testimonial-two__content .sec-title .sub-title .text span::before {
        background: #ffffff;
    }

    .testimonial-two__content .shape1 {
        position: absolute;
        top: -340px;
        left: -260px;
        width: 1210px;
        height: 1210px;
        border-radius: 50%;
        background: var(--thm-black);
    }

    #testimonial-two__thumb {
        width: 350px;
        margin-left: 0;
    }

    .testimonial-two__img {
        position: relative;
        display: block;
        cursor: pointer;
        transition: all 500ms ease;
    }

    .testimonial-two__img .inner {
        width: 105px;
        height: 105px;
        border-radius: 50%;
        overflow: hidden;
        transition: all 500ms ease;
    }

    .testimonial-two__img .inner::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgb(255, 255, 255, 0.2);
        transition: all 500ms ease;
        border-radius: 50%;
        content: "";
    }

    #testimonial-two__thumb .swiper-slide-thumb-active .testimonial-two__img .inner::before {
        background-color: rgba(var(--moniz-base-rgb, 255, 255, 255), .0);
    }

    .testimonial-two__img .inner>img {
        width: 105px;
        border-radius: 50%;
        transition: all 0.5s ease-in-out 0.6s;
    }

    .testimonial-two__img .icon {
        position: absolute;
        bottom: 15px;
        right: -5px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-radius: 50%;
        text-align: center;
        color: var(--thm-base);
        font-size: 10px;
        font-weight: 700;
        background: #ffffff;
        transform: scale(0);
        transition: all 500ms ease;
    }

    #testimonial-two__thumb .swiper-slide-thumb-active .testimonial-two__img .icon {
        transform: scale(1);
    }

    .testimonial-two__content-box {
        position: relative;
        display: block;
        margin-top: 62px;
    }

    .testimonial-two__content-box-single {
        position: relative;
        display: block;
    }

    .testimonial-two__content-box-single .inner {
        position: relative;
        display: block;
        padding-left: 150px;
    }

    .testimonial-two__content-box-single .inner .icon-box {
        position: absolute;
        right: 0;
        bottom: 5px;
    }

    .testimonial-two__content-box-single .inner .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 50px;
        line-height: 50px;
    }

    .testimonial-two__content-box-single .inner .img-box {
        position: absolute;
        top: 8px;
        left: 0;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
    }

    .testimonial-two__content-box-single .inner .img-box img {
        width: 100%;
    }

    .testimonial-two__content-box-single .inner .content-box {
        position: relative;
        display: block;
    }

    .testimonial-two__content-box-single .inner .content-box h4 {
        color: #ffffff;
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
    }

    .testimonial-two__content-box-single .inner .content-box .name {
        position: relative;
        display: block;
        margin-top: 27px;
    }

    .testimonial-two__content-box-single .inner .content-box .name h4 {
        color: #d0d2d0;
        font-size: 20px;
        line-height: 22px;
        font-weight: 500;
        letter-spacing: -0.02em;
        text-transform: capitalize;
    }

    .testimonial-two__content-box-single .inner .content-box .name span {
        color: #ffffff;
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        text-transform: capitalize;
        letter-spacing: 0.01em;
    }

    #testimonial-two__carousel-pagination {
        position: absolute;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        top: -117px;
        right: 0;
        left: auto;
        width: 100%;
        z-index: 20;
    }

    #testimonial-two__carousel-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border-radius: 0px;
        background-color: rgba(255, 255, 255, 0.2);
        border: 0px solid var(--thm-black);
        border-color: transparent;
        transition: all 500ms ease;
        opacity: 1;
        margin: 0;
        display: block;
    }

    #testimonial-two__carousel-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
        margin-left: 6px;
    }

    #testimonial-two__carousel-pagination .swiper-pagination-bullet-active {
        background-color: #ffffff;
    }

    /***
=============================================
Our Banefits One
=============================================
***/

    .banefits-two {
        position: relative;
        display: block;
        background: #eef0f6;
        padding: 120px 0px 210px;
        margin-top: 5px;
        z-index: 1;
    }

    .banefits-two .shape1 {
        position: absolute;
        left: 50px;
        bottom: 230px;
        z-index: -1;
    }

    .banefits-two .shape2 {
        position: absolute;
        top: 208px;
        right: 275px;
        z-index: -1;
    }

    .banefits-two__single {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 55px 30px 38px;
        margin-bottom: 30px;
    }

    .banefits-two__single-img {
        position: relative;
        display: block;
        text-align: center;
        margin: 0 auto;
        z-index: 1;
    }

    .banefits-two__single-img::before {
        position: absolute;
        top: -10px;
        left: -10px;
        bottom: -10px;
        right: -10px;
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        background: #f3f5fb;
        content: "";
        z-index: -1;
    }

    .banefits-two__single-img .inner {
        position: relative;
        display: block;
        overflow: hidden;
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    }

    .banefits-two__single-img .inner::before {
        position: absolute;
        top: 0%;
        left: 0%;
        bottom: 0%;
        right: 0%;
        content: '';
        background-color: rgba(var(--thm-base-rgb), .60);
        transform: scaleY(1.0);
        opacity: 0;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        z-index: 1;
    }

    .banefits-two__single:hover .banefits-two__single-img .inner::before {
        opacity: 0.70;
        transform: scaleY(1.0);
    }

    .banefits-two__single-img .inner img {
        width: 100%;
        transform: scale(1.0);
        transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    }

    .banefits-two__single:hover .banefits-two__single-img .inner img {
        transform: scale(1.1) rotate(1deg);
    }

    .banefits-two__single-content {
        position: relative;
        display: block;
        margin-top: 37px;
    }

    .banefits-two__single-content h2 {
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 4px;
    }

    .banefits-two__single-content h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .banefits-two__single-content h2 a:hover {
        color: var(--thm-primary);
    }

    .banefits-two__single-content p {
        font-size: 15px;
        line-height: 24px;
        font-weight: 600;
        text-transform: capitalize;
    }

    /***
=============================================
Contact One
=============================================
***/

    .contact-one {
        position: relative;
        display: block;
        padding: 110px 0px 90px;
        margin-top: -120px;
        z-index: 1;
    }

    .contact-one::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 47%;
        background: var(--thm-black);
        content: "";
        z-index: -1;
    }

    .contact-one .shape1 {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
        z-index: -1;
    }

    .contact-one__bg {
        position: absolute;
        top: 0px;
        bottom: -120px;
        left: 0;
        width: calc((100% - 150px) / 1);
        background-position: top right;
        background-repeat: no-repeat;
        background-size: cover;
        clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
        z-index: -2;
    }

    .contact-one__form {
        position: relative;
        display: block;
        margin-left: -100px;
        z-index: 1;
    }

    .contact-one__form .sec-title {
        padding-bottom: 42px;
    }

    .contact-one__form .sec-title h2 {
        color: #ffffff;
    }

    .contact-one__form .sec-title .sub-title .text span {
        color: #ffffff;
    }

    .contact-one__form .sec-title .sub-title .text span::before {
        background: #ffffff;
    }

    .contact-one__form .input-box {
        position: relative;
        display: block;
        margin-bottom: 20px;
    }

    .contact-one__form .input-box input[type="text"],
    .contact-one__form .input-box input[type="email"],
    .contact-one__form .input-box textarea {
        position: relative;
        display: block;
        background: rgba(255, 255, 255, .1);
        width: 100%;
        height: 50px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        padding-left: 30px;
        padding-right: 20px;
        border-radius: 0px;
        transition: all 500ms ease;
        font-family: var(--thm-font);
        outline: none;
    }

    .contact-one__form form input[type="text"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="text"]:-moz-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="text"]::-moz-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="text"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="email"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="email"]:-moz-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="email"]::-moz-placeholder {
        color: #ffffff;
    }

    .contact-one__form form input[type="email"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .contact-one__form form textarea::-webkit-input-placeholder {
        color: #ffffff;
    }

    .contact-one__form form textarea:-moz-placeholder {
        color: #ffffff;
    }

    .contact-one__form form textarea::-moz-placeholder {
        color: #ffffff;
    }

    .contact-one__form form textarea:-ms-input-placeholder {
        color: #ffffff;
    }

    .contact-one__form .input-box .select-box {
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
    }

    .contact-one__form .input-box .nice-select {
        background: rgba(255, 255, 255, .1);
        width: 100%;
        height: 50px;
        line-height: 50px;
        border: 1px solid rgba(255, 255, 255, .25);
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        padding-left: 30px;
        padding-right: 20px;
        border-radius: 0px;
    }

    .contact-one__form .input-box .nice-select:after {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        right: 30px;
        margin-top: 0px;
        top: 19px;
        z-index: 10;
    }

    .contact-one__form .nice-select .list {
        background-color: var(--thm-primary);
    }

    .contact-one__form-btn {
        position: relative;
    }

    .contact-one__form-btn .thm-btn {
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: 0px;
        line-height: 48px;
        width: 100%;
        font-size: 16px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .contact-one__form-btn .thm-btn:hover {
        border-color: var(--thm-primary);
    }

    #ui-datepicker-div.ui-widget-content {
        background: #fff none repeat scroll 0 0;
        border: 1px solid var(--thm-black);
        color: #252525;
        font-size: 14px;
        border-radius: 0px;
        width: 270px;
        padding: 5px;
    }

    #ui-datepicker-div.ui-datepicker .ui-datepicker-header {
        background: var(--thm-base) none repeat scroll 0 0;
        border: 2px solid var(--thm-base);
        border-radius: 0;
        color: #ffffff;
        font-weight: 700;
        padding: 5px 0;
        position: relative;
    }

    .ui-datepicker td a {
        color: #000000 !important;
        text-align: center;
        background-image: none !important;
        background: #f5f5f5 !important;
        border: 1px solid #f9f9f9 !important;
    }

    .ui-state-highlight,
    .ui-widget-content .ui-state-highlight,
    .ui-widget-header .ui-state-highlight {
        border: 1px solid #333333 !important;
        background: #333333 !important;
        color: #ffffff !important;
    }

    .ui-datepicker .ui-datepicker-prev {
        left: 5px;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        border-radius: 30%;
        height: 20px;
        position: absolute;
        top: 7px;
        width: 20px;
        transition: all 500ms ease;
        cursor: pointer;
    }

    .ui-datepicker .ui-datepicker-next {
        right: 5px;
    }

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        top: 7px;
        background: #fff;
        border: none;
    }

    .ui-datepicker table {
        border-collapse: collapse;
        font-size: 13px;
        margin: 0 0 0.4em;
        width: 100%;
    }

    .ui-datepicker th {
        border: medium none;
        font-weight: 600;
        padding: 2px 3px;
        text-align: center;
    }

    .ui-datepicker-calendar .ui-state-default:hover,
    .ui-datepicker-calendar .ui-state-default:active {
        background: #43c3ea;
        color: #fff;
        border-color: #43c3ea;
    }

    #ui-datepicker-div.ui-widget {
        font-family: var(--thm-font);
    }

    #ptTimeSelectCntr .ui-widget {
        font-family: var(--thm-font);
    }

    /***
=============================================
Pricing Plan Two
=============================================
***/

    .pricing-plan-two {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 240px 0px 90px;
    }

    .pricing-plan-two__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
        background: #fafbfa;
        border: 1px solid #f3f3f3;
        border-radius: 6px;
        padding: 20px 20px 20px;
    }

    .pricing-plan-two__single-inner {
        position: relative;
        display: block;
        background: #ffffff;
        border-radius: 6px;
        border: 1px solid #f1f1f0;
        padding: 30px 30px 35px;
        z-index: 1;
    }

    .pricing-plan-two__single-inner-bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        border-radius: 6px;
        transform: scaleX(0.8) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 0;
        z-index: -1;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner-bg {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .pricing-plan-two__single-inner-bg::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--thm-base-rgb), 0.97);
        content: "";
        z-index: -2;
        content: "";
        border-radius: 6px;
    }

    .pricing-plan-two__single-inner .table-header {
        position: relative;
        display: block;
        padding: 15px 30px 17px;
        z-index: 1;
    }

    .pricing-plan-two__single-inner .table-header::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #fafbfa;
        border: 1px solid #f3f3f3;
        content: "";
        z-index: -1;
        transition: all 500ms linear;
        transition-delay: 0.3s;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-header::before {
        -moz-transform: skew(-10deg, 0deg);
        -webkit-transform: skew(-10deg, 0deg);
        -o-transform: skew(-10deg, 0deg);
        -ms-transform: skew(-10deg, 0deg);
        transform: skew(-10deg, 0deg);
        border-radius: 5px;
    }

    .pricing-plan-two__single-inner .table-header h2 {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 50px;
        line-height: 60px;
        font-weight: 600;
        margin-bottom: 5px;
        padding-left: 17px;
        padding-right: 10px;
    }

    .pricing-plan-two__single-inner .table-header h2 .dollar {
        position: absolute;
        top: -9px;
        left: 0;
        color: var(--thm-black);
        font-size: 25px;
        padding-right: 10px;
    }

    .pricing-plan-two__single-inner .table-header h2 .text {
        position: absolute;
        top: -16px;
        color: var(--thm-black);
        font-size: 12px;
        font-weight: 400;
        text-transform: capitalize;
        letter-spacing: 0.03em;
        margin-left: 9px;
    }

    .pricing-plan-two__single-inner .table-header h5 {
        color: var(--thm-black);
        font-size: 16px;
        line-height: 26px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 4px;
    }

    .pricing-plan-two__single-inner .table-header .review-box {
        position: relative;
        display: block;
    }

    .pricing-plan-two__single-inner .table-header .review-box li {
        position: relative;
        display: inline-block;
    }

    .pricing-plan-two__single-inner .table-header .review-box li span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-primary);
        font-size: 15px;
    }

    .pricing-plan-two__single-inner .table-content {
        position: relative;
        display: block;
        margin-top: 30px;
    }

    .pricing-plan-two__single-inner .table-content ul {
        position: relative;
        display: block;
    }

    .pricing-plan-two__single-inner .table-content ul li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .pricing-plan-two__single-inner .table-content ul li:last-child {
        margin-bottom: 0;
    }

    .pricing-plan-two__single-inner .table-content ul li .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border: 1px solid #e8e7e7;
        border-radius: 50%;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .icon-box {
        border-color: #ffffff;
    }

    .pricing-plan-two__single-inner .table-content ul li .icon-box span:before {
        position: relative;
        display: inline-block;
        color: #222222;
        font-size: 15px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .icon-box span:before {
        color: #ffffff;
    }

    .pricing-plan-two__single-inner .table-content ul li .text-box {
        position: relative;
        display: block;
        flex: 1;
        margin-left: 20px;
    }

    .pricing-plan-two__single-inner .table-content ul li .text-box p {
        color: #838691;
        font-size: 15px;
        line-height: 25px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .text-box p {
        color: #ffffff;
    }

    .pricing-plan-two__single-inner .table-footer {
        position: relative;
        display: block;
        margin-top: 40px;
        text-align: center;
        line-height: 0;
    }

    .pricing-plan-two__single-inner .table-footer .thm-btn {
        background: #fafbfa;
        border: 1px solid #f3f3f3;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-footer .thm-btn {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
    }

    .pricing-plan-two__single-inner .table-footer .thm-btn:hover {
        border-color: var(--thm-primary);
    }

    .pricing-plan-two__single-inner .table-footer .thm-btn .txt {
        color: var(--thm-gray);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-footer .thm-btn .txt {
        color: #ffffff;
    }

    /***
=============================================
Brand Two
=============================================
***/

    .brand-two {
        position: relative;
        display: block;
        padding: 100px 0 100px;
        z-index: 2;
    }

    .brand-two::before {
        position: absolute;
        top: 0;
        left: 200px;
        bottom: 0;
        right: 0;
        background: var(--thm-black);
        border-bottom-left-radius: 60px;
        content: "";
        z-index: -1;
    }

    .brand-two .swiper-slide {
        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: 1px solid rgba(255, 255, 255, 0.5);
        height: 130px;
        transition: .5s ease;
    }

    .brand-two .swiper-slide:hover {
        border-color: #ffffff;
    }

    .brand-two .swiper-slide img {
        transition: .5s ease;
        transform: scale(1.02);
        opacity: 0.5;
        width: auto;
    }

    .brand-two .swiper-slide:hover img {
        opacity: 1;
        transform: scale(1);
    }

    /***
=============================================
Poroduct One
=============================================
***/

    .poroduct-one {
        position: relative;
        display: block;
        background: #eef0f6;
        padding: 240px 0px 80px;
        margin-top: -120px;
        z-index: 1;
    }

    .poroduct-one__top {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 57px;
    }

    .poroduct-one__top .content-box {
        position: relative;
        display: block;
    }

    .poroduct-one__top .content-box .sec-title {
        padding-bottom: 0px;
    }

    .poroduct-one__top .btn-box {
        position: relative;
        display: block;
    }

    .poroduct-one__top .btn-box .thm-btn {
        border: 1px solid var(--thm-black);
        background: transparent;
    }

    .poroduct-one__top .btn-box .thm-btn:hover {
        border-color: var(--thm-primary);
    }

    .poroduct-one__top .btn-box .thm-btn .txt {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .poroduct-one__top .btn-box .thm-btn:hover .txt {
        color: #ffffff;
    }

    .poroduct-one__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .poroduct-one__single-img {
        position: relative;
        display: block;
        z-index: 1;
    }

    .poroduct-one__single-img .inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fefefe;
        padding: 0px 10px 0px;
        overflow: hidden;
        height: 300px;
    }

    .poroduct-one__single-img .inner img {
        width: auto;
        transform: scale(1);
        transition: all 0.7s ease 0s;
    }

    .poroduct-one__single:hover .poroduct-one__single-img .inner img {
        transform: scale(1.1);
    }

    .poroduct-one__single-img .inner .overlay-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: space-between;
        left: 70px;
        bottom: 30px;
        right: 70px;
        background: var(--thm-black);
        padding: 10px 25px 10px;
        transition: .6s;
        transform: perspective(400px) scaleY(0);
        transition-delay: 0.1s;
        transform-origin: bottom;
        z-index: 5;
    }

    .poroduct-one__single:hover .poroduct-one__single-img .inner .overlay-box {
        transform: perspective(400px) scaleY(1.0);
        transition-delay: 0.3s;
    }

    .poroduct-one__single-img .inner .overlay-box .title {
        position: relative;
        display: block;
    }

    .poroduct-one__single-img .inner .overlay-box .title h6 {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
    }

    .poroduct-one__single-img .inner .overlay-box .title h6 a {
        color: #ffffff;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .poroduct-one__single-img .inner .overlay-box .title h6 a:hover {
        color: #ffffff;
    }

    .poroduct-one__single-img .inner .overlay-box .icon {
        position: relative;
        display: block;
    }

    .poroduct-one__single-img .inner .overlay-box .icon ul {
        position: relative;
        display: block;
    }

    .poroduct-one__single-img .inner .overlay-box .icon ul li {
        position: relative;
        display: inline-block;
        margin-right: 11px;
    }

    .poroduct-one__single-img .inner .overlay-box .icon ul li:last-child {
        margin-right: 0px;
    }

    .poroduct-one__single-img .inner .overlay-box .icon ul li a {
        position: relative;
        display: block;
        color: #ffffff;
        font-size: 15px;
    }

    .poroduct-one__single-content {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 33px;
    }

    .poroduct-one__single-content .left-content {
        position: relative;
        display: block;
    }

    .poroduct-one__single-content .left-content p {
        color: #707480;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
        font-family: var(--thm-font-2);
        letter-spacing: -0.01em;
        margin-bottom: 5px;
    }

    .poroduct-one__single-content .left-content h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: -0.01em;
        margin-bottom: 2px;
    }

    .poroduct-one__single-content .left-content h3 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .poroduct-one__single-content .left-content h3 a:hover {
        color: var(--thm-primary);
    }

    .poroduct-one__single-content .left-content span {
        color: #1a213e;
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
    }

    .poroduct-one__single-content .left-content span del {
        position: relative;
        display: inline-block;
        margin-right: 15px;
    }

    .poroduct-one__single-content .rating-box {
        position: relative;
        display: block;
    }

    .poroduct-one__single-content .rating-box ul li span {
        color: var(--thm-primary);
    }

    /***
=============================================
Banefits One
=============================================
***/

    .banefits-one {
        /* position: relative; */
        display: block;
        padding: 20px 0px 120px;
        z-index: 5;
        /* background: #af2765; */
    }

    .banefits-one::before {
        position: absolute;
        top: 0;
        left: 210px;
        bottom: 0;
        right: 0;
        background: #ffffff;
        content: "";
        z-index: -1;
    }

    .banefits-one__pattern {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: top right;
        z-index: -1;
    }

    .banefits-one-inner {
        position: relative;
        display: block;
    }

    .banefits-one__tab-box {
        position: relative;
        display: block;
    }

    .banefits-one__tab-box .tab-buttons {
        position: relative;
        display: flex;
        text-align: center;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
        margin-bottom: 10px;
        justify-content: center;
    }

    .banefits-one__tab-box .tab-buttons .tab-btn {
        position: relative;
        float: left;
        max-width: 390px;
        width: 100%;
    }

    .banefits-one__tab-box .tab-buttons .tab-btn+.tab-btn {
        margin-left: 0px;
    }

    .banefits-one__tab-box .tab-buttons .tab-btn:nth-child(1) span {
        border-top-left-radius: 10px;
    }

    /* .banefits-one__tab-box .tab-buttons .tab-btn:nth-child(3) span {
    border-top-right-radius: 10px;
} */

    .banefits-one__tab-box .tab-buttons .tab-btn span {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 20px;
        font-weight: 700;
        text-transform: capitalize;
        /* background-color: #ffffff; */
        padding: 17px 0px 17px;
        cursor: pointer;
        transition: all 0.3s ease;
        max-width: 303px;
        width: 96%;
        text-align: center;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 1;
        font-family: 'Mulish', sans-serif;
        letter-spacing: 1px;
    }

    .banefits-one__tab-box .tab-buttons .tab-btn.active-btn span {
        color: #d53d83;
        border-bottom: 1px solid;
        width: 100%;
        /* background: #ffddea;
        box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px; */
    }

    .banefits-one__tab-box .tab-buttons .tab-btn span:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0%;
        content: "";
        /* background-color: #ffddea; */
        transition: all 0.3s ease;
        z-index: -1;
    }

    .banefits-one__tab-box .tab-buttons .tab-btn.active-btn span:before {
        height: 100%;
    }

    .banefits-one__tab-box .tabs-content {
        position: relative;
        display: block;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    }

    .banefits-one__tab-box .tabs-content .tab {
        position: relative;
        display: none;
        -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
        transform: translateY(35px);
        -webkit-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
    }

    .banefits-one__tab-box .tabs-content .tab.active-tab {
        display: block;
        margin-top: 0px;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }

    .tabs-content__inner {
        position: relative;
        display: block;
        /* background-color: #ffffff;
        border: 1px solid #ffe3f0;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px; */
    }

    .tabs-content__img {
        position: relative;
        display: block;
        /* background: #ffffff; */
        border-bottom: 2px dashed #bc9644;
        /* box-shadow: 2px 3.464px 18px 0px rgb(227 222 222); */
        overflow: hidden;
        padding: 41px 0px 42px;
        border-radius: 11px;
        z-index: 1;
    }

    .tabs-content__img .inner {
        position: relative;
        display: block;
        border-radius: 10px;
        overflow: hidden;
        max-width: 600px;
        width: 100%;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        margin-left: 42px;
        border: 2px solid #bc964452;
        /* margin: 0 auto; */
        z-index: 1;
    }

    .tabs-content__img .inner:before {
        /* position: absolute; */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        background: rgba(var(--thm-primary-rgb), 0.4);
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .tabs-content__img:hover .inner::before {
        opacity: 1;
    }

    .tabs-content__img .inner img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .tabs-content__img:hover .inner img {
        transform: scale(1);
    }

    .tabs-content__content {
        position: relative;
        display: block;
    }

    .tabs-content__content-accordion {
        position: relative;
        display: block;
        margin-left: 40px;
    }

    .accordion-box {
        position: relative;
        display: block;
    }

    .accordion-box .block {
        position: relative;
        display: block;
        margin-bottom: 20px;
        transition: all 500ms ease;
        background: rgba(255, 255, 255);
        box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
    }

    .accordion-box .block.mb20 {
        margin-bottom: 0px;
    }

    .accordion-box .block:last-child {
        margin-bottom: 0px;
    }

    .accordion-box .block .acc-btn {
        position: relative;
        display: block;
        cursor: pointer;
        transition: all 500ms ease;
        padding-top: 24px;
        padding-left: 40px;
        padding-bottom: 23px;
        padding-right: 40px;
    }

    .accordion-box .block .acc-btn.active {
        padding-bottom: 19px;
    }

    .accordion-box .block .acc-btn h3 {
        color: var(--thm-black);
        font-size: 17px;
        line-height: 27px;
        font-weight: 700;
        transition: all 500ms ease;
    }

    .accordion-box .block .acc-btn.active h3 {
        color: var(--thm-black);
    }

    .accordion-box .block .acc-btn .icon-outer {
        position: absolute;
        top: 50%;
        right: 40px;
        width: 20px;
        height: 20px;
        color: var(--thm-black);
        font-size: 18px;
        text-align: right;
        line-height: 20px;
        font-weight: 700;
        cursor: pointer;
        transform: translateY(-50%) rotate(0deg);
        transition: all 500ms ease;
        z-index: 1;
    }

    .accordion-box .block .acc-btn.active .icon-outer {
        color: var(--thm-black);
        transform: translateY(-50%) rotate(0deg);
    }

    .accordion-box .block .acc-btn .icon-outer i:before {
        font-weight: 700;
    }

    .accordion-box .block .acc-btn.active .icon-outer i:before {
        position: relative;
        font-size: 20px;
        font-family: 'icomoon' !important;
        font-weight: 700;
        margin: 0px;
        content: "\e92d";
    }

    .accordion-box .block .acc-content {
        position: relative;
        display: none;
        padding-top: 30px;
        padding-left: 40px;
        padding-bottom: 34px;
        padding-right: 40px;
        border-top: 1px solid #bdc0c2;
    }

    .accordion-box .block .acc-content.current {
        display: block;
    }

    .accordion-box .block .acc-content p {
        margin: 0;
        color: var(--thm-gray);
        font-weight: 400;
    }

    /***
=============================================
About Three
=============================================
***/

    .about-three {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .about-three__img {
        position: absolute;
        top: 0;
        left: 60%;
        bottom: 122px;
        right: 0;
        background-position: top right;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
    }

    .about-three__content {
        position: relative;
        display: block;
        margin-right: -70px;
    }

    .about-three__content .sec-title {
        padding-bottom: 37px;
    }

    .about-three__content-text1 {
        position: relative;
        display: block;
    }

    .about-three__content-text1 p {
        margin: 0;
    }

    .about-three__content-text2 {
        position: relative;
        display: block;
        margin-top: 35px;
    }

    .about-three__content-text2-single {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 38px;
    }

    .about-three__content-text2-single .img-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        z-index: 1;
    }

    .about-three__content-text2-single .img-box::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-base);
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        content: "";
        z-index: -1;
    }

    .about-three__content-text2-single .img-box img {
        width: auto;
    }

    .about-three__content-text2-single .content-box {
        position: relative;
        display: block;
        flex: 1;
        margin-left: 40px;
    }

    .about-three__content-text2-single .content-box h2 {
        color: var(--thm-black);
        font-size: 27px;
        line-height: 37px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 11px;
    }

    .about-three__content-text2-single .content-box p {
        margin: 0;
    }

    .about-three__content-text3 {
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 9px;
    }

    .about-three__content-text3 .btn-box {
        position: relative;
        display: block;
        line-height: 0;
    }

    .about-three__content-text3 .btn-box .thm-btn {
        background: var(--thm-primary);
    }

    .about-three__content-text3 .btn-box .thm-btn::before {
        background: var(--thm-base);
    }

    .about-three__client-info-box {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 50px;
    }

    .about-three__client-info-box .img-box {
        position: relative;
        display: block;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
    }

    .about-three__client-info-box .img-box img {
        width: 100%;
    }

    .about-three__client-info-box .title-box {
        position: relative;
        display: block;
        margin-left: 25px;
    }

    .about-three__client-info-box .title-box h3 {
        font-size: 25px;
        line-height: 35px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .about-three__client-info-box .title-box p {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        text-transform: capitalize;
    }

    /***
=============================================
Services Three
=============================================
***/

    .services-three {
        position: relative;
        display: block;
        background-color: #eef0f6;
        padding: 420px 0 180px;
        z-index: 1;
    }

    .services-three__single {
        position: relative;
        display: block;
        padding: 65px 50px 55px;
        z-index: 1;
    }

    .services-three__single::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #ffffff;
        clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 95%);
        border-radius: 0px;
        content: "";
        z-index: -1;
    }

    .services-three__single-bg {
        position: absolute;
        left: 0;
        bottom: -60px;
        right: 0;
        background: var(--thm-base);
        border-radius: 0px;
        height: 200px;
        content: "";
        z-index: -2;
    }

    .services-three__single-bg::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-primary);
        transform: scaleX(0.7) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 0;
        border-radius: 0px;
        content: "";
    }

    .services-three__single:hover .services-three__single-bg::before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .services-three__single-inner {
        position: relative;
        display: block;
    }

    .services-three__single-inner .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: var(--thm-base);
        margin: 0 auto 22px;
        z-index: 1;
    }

    .services-three__single-inner .icon-box::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-primary);
        transform: scale(0.5);
        opacity: 0;
        transition: all 400ms linear;
        transition-delay: 0.1s;
        border-radius: 50%;
        content: "";
        z-index: -1;
    }

    .services-three__single:hover .services-three__single-inner .icon-box::before {
        transform: scale(1);
        opacity: 1;
    }

    .services-three__single-inner .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 70px;
        transition: all 500ms linear;
        transition-delay: 0.1s;
        transform: scale(1);
    }

    .services-three__single:hover .services-three__single-inner .icon-box span::before {
        transform: scale(0.9);
    }

    .services-three__single-inner .content-box {
        position: relative;
        display: block;
    }

    .services-three__single-inner .content-box h2 {
        font-size: 24px;
        line-height: 34px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 11px;
    }

    .services-three__single-inner .content-box h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .services-three__single-inner .content-box h2 a:hover {
        color: var(--thm-primary);
    }

    .services-three__single-inner .content-box p {
        margin: 0;
    }

    .services-three__single-inner .content-box .btn-box {
        position: relative;
        display: block;
        margin-top: 19px;
    }

    .services-three__single-inner .content-box .btn-box a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background-color: #f1f1f5;
        margin: 0 auto;
    }

    .services-three__single-inner .content-box .btn-box a span::before {
        position: relative;
        display: inline-block;
        color: #717178;
        font-size: 20px;
        font-weight: 700;
        transition: all 300ms linear;
        transition-delay: 0.1s;
    }

    .services-three__single-inner .content-box .btn-box a:hover span::before {
        color: #ffffff;
    }

    .services-three__single-inner .content-box .btn-box a::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        background: var(--thm-primary);
        transform: scale(0.7);
        opacity: 0;
        transition: all 300ms linear;
        transition-delay: 0.1s;
        content: "";
    }

    .services-three__single-inner .content-box .btn-box a:hover::before {
        transform: scale(1);
        opacity: 1;
    }

    /***
=============================================
   Video One
=============================================
***/

    .video-one {
        position: relative;
        display: block;
        margin-bottom: -300px;
        z-index: 2;
    }

    .video-one__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
    }

    .video-one__inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 250px 0px 250px;
        z-index: 1;
    }

    .video-one__inner .shape1 {
        position: absolute;
        top: 0;
        left: -55px;
        bottom: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 0;
    }

    .video-one__inner .video-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-one__inner .video-box a {
        position: relative;
        display: inline-block;
        z-index: 5;
    }

    .video-one__icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        line-height: 90px;
        text-align: center;
        font-size: 25px;
        color: #ffffff;
        background-color: var(--thm-primary);
        border-radius: 50%;
        margin: 0 auto;
    }

    .video-one__icon::before {
        position: absolute;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 50%;
        content: "";
    }

    .video-one__inner .video-box .border-animation {
        position: absolute;
        top: -15px;
        left: -15px;
        bottom: -15px;
        right: -15px;
        border: 1px solid rgba(255, 255, 255, 1.0);
        animation: squares 2.9s linear 0s infinite;
        -webkit-animation: squares 2.9s linear 0s infinite;
        -ms-animation: squares 2.9s linear 0s infinite;
        -o-animation: squares 2.9s linear 0s infinite;
        -webkit-animation-play-state: running;
        animation-play-state: running;
        opacity: 0;
        border-radius: 50%;
    }

    .video-one__inner .video-box .border-animation.border-2 {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    .video-one__inner .video-box .border-animation.border-3 {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    /***
=============================================
Work Process One
=============================================
***/

    .work-process-one {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 0px 0px 70px;
        z-index: 1;
    }

    .work-process-one .shape1 {
        position: absolute;
        top: 160px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .work-process-one__single {
        position: relative;
        display: block;
        margin-bottom: 40px;
        padding: 0px 20px 0px;
        z-index: 1;
    }

    .work-process-one__single.mt-100 {
        margin-top: 100px;
    }

    .work-process-one__single.mt-50 {
        margin-top: 50px;
    }

    .work-process-one__single .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 150px;
        background: #ffffff;
        box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
        border-radius: 10px;
        margin: 0 auto;
        z-index: 1;
    }

    .work-process-one__single .icon-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0px;
        right: 0;
        border-radius: 10px;
        background-color: var(--thm-primary);
        transition: -webkit-transform 0.4s ease;
        transition: transform 0.4s ease;
        transition: transform 0.4s ease, -webkit-transform 0.4s ease;
        transform-origin: bottom right;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        z-index: -1;
    }

    .work-process-one__single:hover .icon-box::before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        transform-origin: top center;
    }

    .work-process-one__single .icon-box span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 60px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .work-process-one__single:hover .icon-box span::before {
        color: #ffffff;
    }

    .work-process-one__single .content-box {
        position: relative;
        display: block;
        margin-top: 27px;
    }

    .work-process-one__single .content-box h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: -0.02em;
        margin-bottom: 7px;
    }

    .work-process-one__single .content-box h3 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .work-process-one__single .content-box h3 a:hover {
        color: var(--thm-primary);
    }

    .work-process-one__single .content-box p {
        margin: 0;
    }

    /***
=============================================
Team Two
=============================================
***/

    .team-two {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .team-two .auto-container {
        max-width: 1530px;
        width: 100%;
    }

    .team-two__single {
        position: relative;
        display: block;
        z-index: 1;
    }

    .team-two__single::before {
        position: absolute;
        top: 100px;
        left: 0;
        bottom: 0;
        right: 0;
        background: #fff4ff;
        /* box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%); */
        border-radius: 9px;
        content: "";
        z-index: -1;
        box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
        border: 1px solid #b625ce;
        min-height: 414px;
    }

    .team-two__single::after {
        position: absolute;
        top: 100px;
        left: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(265deg, #6a208d, #e236a8);
        transform: scaleX(0.7) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 0;
        border-radius: 9px;
        content: "";
        z-index: -1;
        min-height: 414px;
    }

    .team-two__single:hover::after {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .team-two__single-img {
        position: relative;
        display: block;
        border-radius: 10px;
        overflow: hidden;
        max-width: 320px;
        width: 100%;
        z-index: 1;
    }

    .team-two__single-img:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        background: rgba(var(--thm-primary-rgb), 0.3);
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .team-two__single:hover .team-two__single-img:before {
        opacity: 1;
    }

    .team-two__single-img img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .team-two__single:hover .team-two__single-img img {
        transform: scale(1);
    }

    .team-two__single-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 30px 23px;
    }

    .team-two__single-content .content-box {
        position: relative;
        display: block;
        line-height: 0;
    }

    .team-two__single-content .content-box h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .team-two__single-content .content-box h3 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-two__single:hover .team-two__single-content .content-box h3 a {
        color: #ffffff;
    }

    .team-two__single-content .content-box span {
        color: var(--thm-base);
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        text-transform: capitalize;
    }

    .team-two__single:hover .team-two__single-content .content-box span {
        color: #ffffff;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-two__single-content .social-links {
        position: relative;
        display: block;
        z-index: 5;
    }

    .team-two__single-content .social-links li {
        position: relative;
        display: inline-block;
    }

    .team-two__single-content .social-links li.share {
        position: relative;
    }

    .team-two__single-content .social-links>li>a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: linear-gradient(26deg, #e236a8, #6a208d);
        border-radius: 5px;
        z-index: 1;
    }

    .team-two__single-content .social-links>li>a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #ffffff;
        border-radius: 5px;
        transform: scale(0.5);
        opacity: 0;
        -webkit-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .team-two__single:hover .team-two__single-content .social-links>li>a::before {
        transform: scale(1.0);
        opacity: 1;
    }

    .team-two__single-content .social-links>li>a>span {
        position: relative;
        display: block;
    }

    .team-two__single-content .social-links>li>a>span::before {
        position: relative;
        display: inline-block;
        top: -1px;
        color: #ffffff;
        font-size: 13px;
        line-height: 13px;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-two__single:hover .team-two__single-content .social-links>li>a span::before {
        color: var(--thm-base);
    }

    .team-two__single-content .social-links .share .social-links-inner {
        position: absolute;
        top: -160px;
        left: 0px;
        right: 0;
        line-height: 0;
        transform: scaleY(0);
        transform-origin: center;
        transform-style: preserve-3d;
        -webkit-transition: all 0.5s linear;
        -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
        transform-origin: bottom center;
    }

    .team-two__single-content .social-links .share i {
        color: #fff;
    }

    .team-two__single-content .social-links .share:hover i {
        color: #0f316f;
    }

    .team-two__single:hover .social-links .share i {
        color: #0f316f;
    }

    .team-two__single-content .social-links .share:hover .social-links-inner {
        transform: scaleY(1.0);
        -webkit-transition-delay: 100ms;
        -moz-transition-delay: 100ms;
        -ms-transition-delay: 100ms;
        -o-transition-delay: 100ms;
        transition-delay: 100ms;
    }

    .team-two__single-content .social-links .share .social-links-inner li {
        position: relative;
        display: block;
        margin-bottom: 10px;
    }

    .team-two__single-content .social-links .share .social-links-inner li:last-child {
        margin-bottom: 0px;
    }

    .team-two__single-content .social-links .share .social-links-inner li a {
        position: relative;
        display: block;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 43px;
        height: 43px;
        background: #ffffff;
        border-radius: 5px;
        z-index: 1;
    }

    .team-two__single-content .social-links .share .social-links-inner li a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-primary);
        border-radius: 5px;
        transform: scale(0.5);
        opacity: 0;
        -webkit-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .team-two__single-content .social-links .share .social-links-inner li a:hover::before {
        transform: scale(1.0);
        opacity: 1;
    }

    .team-two__single-content .social-links .share .social-links-inner li a i {
        position: relative;
        display: block;
    }

    .team-two__single-content .social-links .share .social-links-inner li a i::before {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-two__single-content .social-links .share .social-links-inner li a:hover i::before {
        color: #ffffff;
    }

    /***
=============================================
Testimonial Three
=============================================
***/

    .testimonial-three {
        position: relative;
        display: block;
        background: #eef0f6;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .testimonial-three__single {
        position: relative;
        display: block;
        background: #ffffff;
        box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
        padding: 40px 40px 52px;
        border-radius: 15px;
        border-top-left-radius: 0px;
    }

    .testimonial-three__single-top {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .testimonial-three__single-top .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 75px;
        height: 60px;
        z-index: 1;
    }

    .testimonial-three__single-top .icon-box::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-base);
        border-radius: 3px;
        content: "";
        -moz-transform: skew(-8deg, 0deg);
        -webkit-transform: skew(-8deg, 0deg);
        -o-transform: skew(-8deg, 0deg);
        -ms-transform: skew(-8deg, 0deg);
        transform: skew(-8deg, 0deg);
        z-index: -1;
    }

    .testimonial-three__single-top .icon-box span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
        transform: rotate(180deg);
    }

    .testimonial-three__single-top .icon-box::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 0%;
        background: var(--thm-primary);
        -moz-transform: skew(-8deg, 0deg) scale(0.6);
        -webkit-transform: skew(-8deg, 0deg) scale(0.6);
        -o-transform: skew(-8deg, 0deg) scale(0.6);
        -ms-transform: skew(-8deg, 0deg) scale(0.6);
        transform: skew(-8deg, 0deg) scale(0.6);
        opacity: 0;
        transition: all 300ms linear;
        transition-delay: 0.1s;
        content: "";
    }

    .testimonial-three__single:hover .testimonial-three__single-top .icon-box::after {
        opacity: 1;
        z-index: -1;
        -moz-transform: skew(-8deg, 0deg) scale(1.0);
        -webkit-transform: skew(-8deg, 0deg) scale(1.0);
        -o-transform: skew(-8deg, 0deg) scale(1.0);
        -ms-transform: skew(-8deg, 0deg) scale(1.0);
        transform: skew(-8deg, 0deg) scale(1.0);
    }

    .testimonial-three__single-text {
        position: relative;
        display: block;
        margin-bottom: 19px;
    }

    .testimonial-three__single-text p {
        font-size: 17px;
        line-height: 34px;
        margin: 0;
    }

    .testimonial-three__single-bottom {
        position: relative;
        display: flex;
        align-items: center;
        border-top: 1px solid #e2ddda;
        padding-top: 30px;
    }

    .testimonial-three__single-bottom .img-box {
        position: relative;
        display: block;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        z-index: 1;
    }

    .testimonial-three__single-bottom .img-box .round-one {
        position: absolute;
        top: 0px;
        left: -12px;
        bottom: -12px;
        right: 0;
        border-radius: 50%;
        background: var(--thm-base);
        z-index: -2;
    }

    .testimonial-three__single-bottom .img-box .round-one::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        background-image: -moz-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
        background-image: -webkit-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
        background-image: -ms-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
        opacity: 0;
        transform: scaleY(0.7) rotateY(0deg);
        transition: all 0.4s linear;
        opacity: 0;
        content: "";
    }

    .testimonial-three__single:hover .testimonial-three__single-bottom .img-box .round-one::before {
        opacity: 1;
        transform: scaleY(1.0) rotateY(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

    .testimonial-three__single-bottom .img-box .round-two {
        position: absolute;
        top: 0px;
        left: -7px;
        bottom: -7px;
        right: 0;
        border-radius: 50%;
        background: #ffffff;
        z-index: -1;
    }

    .testimonial-three__single-bottom .img-box .inner {
        position: relative;
        display: block;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
    }

    .testimonial-three__single-bottom .img-box img {
        width: 100%;
    }

    .testimonial-three__single-bottom .client-info {
        position: relative;
        display: block;
        line-height: 0;
        margin-left: 15px;
    }

    .testimonial-three__single-bottom .client-info h4 {
        color: var(--thm-black);
        font-size: 18px;
        line-height: 28px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .testimonial-three__single-bottom .client-info span {
        color: var(--thm-base);
        font-size: 12px;
        line-height: 20px;
        font-weight: 400;
        text-transform: capitalize;
    }

    .testimonial-three__carousel.owl-carousel .owl-stage-outer {
        overflow: visible;
    }

    .testimonial-three__carousel.owl-carousel .owl-stage-outer .owl-item {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
        -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
        transform: perspective(400px) rotateX(0deg) scaleY(1.2);
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
    }

    .testimonial-three__carousel.owl-carousel .owl-stage-outer .owl-item.active {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: all;
    }

    /***
=============================================
Portfolio Two
=============================================
***/

    .portfolio-two {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 170px;
    }

    .portfolio-two__single {
        position: relative;
        display: block;
    }

    .portfolio-two__single-img {
        position: relative;
        display: block;
    }

    .portfolio-two__single-img .inner {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .portfolio-two__single-img .inner:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .portfolio-two__single:hover .portfolio-two__single-img .inner::before {
        opacity: 1;
    }

    .portfolio-two__single-img img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .portfolio-two__single:hover .portfolio-two__single-img img {
        transform: scale(1);
    }

    .portfolio-two__single-img .overlay-content {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: space-between;
        left: 0;
        bottom: -50px;
        right: 0;
        width: 520px;
        margin: 0 auto;
        background: #ffffff;
        box-shadow: 5px 8.66px 20px 0px rgb(130, 132, 134, 0.08);
        padding: 36px 40px 38px;
        border-radius: 3px;
        overflow: hidden;
        z-index: 3;
        -webkit-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
        -ms-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
        transform: perspective(400px) rotateX(40deg) scaleY(0.7);
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        opacity: 0;
    }

    .portfolio-two__single:hover .portfolio-two__single-img .overlay-content {
        -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        opacity: 1;
    }

    .portfolio-two__single-img .overlay-content .text-box {
        position: relative;
        display: block;
    }

    .portfolio-two__single-img .overlay-content h2 {
        font-size: 30px;
        line-height: 40px;
        font-weight: 600;
        letter-spacing: 0.01em;
        text-transform: capitalize;
        margin-bottom: 9px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(2rem);
        clip-path: inset(0 100% 0 0);
        transition: all 0.5s ease-in-out 0s;
        transition-delay: 0.5s;
    }

    .portfolio-two__single:hover .portfolio-two__single-img .overlay-content h2 {
        text-transform: capitalize;
        visibility: visible;
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0);
    }

    .portfolio-two__single-img .overlay-content h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .portfolio-two__single-img .overlay-content h2 a:hover {
        color: var(--thm-primary);
    }

    .portfolio-two__single-img .overlay-content p {
        color: var(--thm-gray);
        font-size: 15px;
        line-height: 24px;
        font-weight: 500;
        text-transform: capitalize;
        opacity: 0;
        transform: translateY(10px);
        transition: all 700ms ease;
    }

    .portfolio-two__single:hover .portfolio-two__single-img .overlay-content p {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 900ms;
    }

    .portfolio-two__link {
        position: relative;
        display: block;
    }

    .portfolio-two__link a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--thm-primary);
        line-height: 0;
        border-radius: 50%;
        z-index: 1;
    }

    .portfolio-two__link a::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        background: var(--thm-base);
        transform: scale(0.5);
        opacity: 0;
        transition: all 300ms linear;
        transition-delay: 0.1s;
        content: "";
    }

    .portfolio-two__link a:hover::before {
        transform: scale(1);
        opacity: 1;
    }

    .portfolio-two__link a span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
    }

    .portfolio-two__carousel.owl-carousel {
        display: block;
        max-width: 1140px;
        width: 100%;
        margin: 0 auto;
    }

    .portfolio-two__carousel.owl-carousel .owl-stage-outer {
        overflow: visible;
        padding: 0px 0px 0px;
    }

    .portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content {
        -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        transform: perspective(400px) rotateX(0deg) scaleY(1.0);
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        opacity: 1;
    }

    .portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content h2 {
        text-transform: capitalize;
        visibility: visible;
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0);
    }

    .portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content p {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 900ms;
    }

    .portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .inner::before {
        opacity: 1;
    }

    .portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img img {
        transform: scale(1);
    }

    .portfolio-two .owl-theme .owl-nav {
        position: absolute;
        top: 50%;
        left: 0%;
        right: 0;
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        transform: translateY(-50%);
        z-index: 100;
    }

    .portfolio-two .owl-carousel .owl-nav button.owl-prev,
    .portfolio-two .owl-carousel .owl-nav button.owl-next {
        position: relative;
        display: inline-block;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, .8);
        color: var(--thm-black);
        font-size: 20px;
        outline: none;
        font-weight: 700;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .portfolio-two .owl-carousel .owl-nav button.owl-prev {
        float: left;
        left: -100px;
    }

    .portfolio-two .owl-carousel .owl-nav button.owl-prev span::before {
        position: relative;
        display: inline-block;
        transform: rotate(180deg);
        font-weight: 700;
        line-height: 55px;
    }

    .portfolio-two .owl-carousel .owl-nav button.owl-next span::before {
        font-weight: 700;
        line-height: 55px;
    }

    .portfolio-two .owl-carousel .owl-nav button.owl-next {
        float: right;
        right: -100px;
    }

    .portfolio-two .owl-carousel .owl-nav button.owl-prev:hover,
    .portfolio-two .owl-carousel .owl-nav button.owl-next:hover {
        background: var(--thm-base);
        color: #ffffff;
    }

    /***
=============================================
Brand Three
=============================================
***/

    .brand-two.style3::before {
        left: 0px;
        border-radius: 0px;
    }

    .brand-two.style3 .swiper-slide img {
        opacity: 1.0;
    }

    .brand-two.style3 .swiper-slide {
        border: 1px solid rgba(255, 255, 255, 1.0);
    }

    /***
=============================================
Features One About
=============================================
***/

    .features-one--about {
        position: relative;
        display: block;
        padding: 120px 0px 90px;
    }

    /***
=============================================
Pricing Plan One Services
=============================================
***/

    .pricing-plan-one--services {
        position: relative;
        display: block;
        padding: 0px 0px 90px;
    }

    /***
=============================================
Services Details
=============================================
***/

    .services-details {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 60px 0px 120px;
        z-index: 1;
    }

    .services-details__content {
        position: relative;
        display: block;
    }

    .services-details-img1 {
        position: relative;
        display: block;
        overflow: hidden;
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
        border: 1px solid #d5428f5c;
        padding: 6px;
    }

    .services-details-img1 img {
        width: 100%;
    }

    .services-details-text1 {
        position: relative;
        display: block;
        margin-top: 45px;
    }

    .services-details-text1 h2 {
        color: #99219a;
        font-size: 21px;
        line-height: 21px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .services-details-text1 .text1 {
       margin: 0;
    margin-bottom: 15px;
    line-height: 25px;
    color: #000;
    font-family: 'Lora', serif !important;
    text-align: left;

    }

    .text1 {
        margin: 0;
        margin-bottom: 5px;
        color: #000;
        font-family: 'Lora', serif !important;
    }

    .services-details-text1 .text2 {
        margin: 0;
        color: #000;
        font-family: 'Lora', serif !important;
        line-height: 25px;
    }

    .services-details__list1 {
        position: relative;
        display: block;
        margin-top: 48px;
        padding-bottom: 1px;
    }

    .services-details__list1 li {
        position: relative;
        display: block;
        padding-left: 60px;
        margin-bottom: 28px;
    }

    .services-details__list1 li .icon-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -4px;
        left: 0;
        width: 40px;
        height: 40px;
        background: #f2f2f2;
        border-radius: 50%;
    }

    .services-details__list1 li .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #8a8d97;
        font-size: 15px;
    }

    .services-details__list1 li .text-box {
        position: relative;
        display: block;
    }

    .services-details__list1 li .text-box p {
        margin: 0;
    }

    .services-details-text2 {
        position: relative;
        display: block;
        margin-top: 6px;
    }

    .services-details-text2 p {
        margin: 0;
    }

    .services-details-text2 ul {
        position: relative;
        display: block;
        margin-top: 30px;
    }

    .services-details-text2 ul li {
        position: relative;
        display: block;
        margin-bottom: 13px;
    }

    .services-details-text2 ul li:last-child {
        margin-bottom: 0px;
    }

    .services-details-text2 ul li p {
        position: relative;
        padding-left: 25px;
    }

    .services-details-text2 ul li p::before {
        position: absolute;
        top: 11px;
        left: 0;
        width: 10px;
        height: 10px;
        background: #bfc2c3;
        border-radius: 50%;
        content: "";
    }

    .services-details__video {
        position: relative;
        display: block;
        margin-top: 44px;
    }

    .services-details__video .img-box {
        position: relative;
        display: block;
    }

    .services-details__video .img-box img {
        width: 100%;
    }

    .services-details__video .video-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .services-details__video .video-box a {
        position: relative;
        display: inline-block;
    }

    .services-details__video-icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: var(--thm-base);
    }

    .services-details__video-icon span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 25px;
    }

    .services-details-text3 {
        position: relative;
        display: block;
        margin-top: 30px;
    }

    .services-details-text3 .text1 {
        margin: 0;
        margin-bottom: 15px;
    }

    .services-details-text3 .text2 {
        margin: 0;
    }

    .services-details-text4 {
        position: relative;
        /* display: flex; */
        align-items: center;
        margin-top: 18px;
    }

    .services-details-text4 .img-box {
        position: relative;
        display: block;
    }

    .services-details-text4 .img-box img {
        width: 100%;
    }

    .services-details-text4 .content-box {
        position: relative;
        display: block;
        flex: 1;
        /* margin-left: 30px; */
    }

    .services-details-text4 .content-box p {
        margin: 0;
        color: #000;
        font-family: 'Lora', serif !important;
    }

    .services-details-text4 .content-box ul {
        position: relative;
        display: block;
        margin-top: 13px;
    }

    .services-details-text4 .content-box ul li {
        position: relative;
        display: block;
        padding-left: 27px;
        margin-bottom: 10px;
        /* height: 250px; */
    }

    .services-details-text4 .content-box ul li .icon-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 6px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #7e207c;
        border-radius: 50%;
    }

    .services-details-text4 .content-box ul li .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 14px;
        margin-top: 0px;
    }

    .services-details-text4 .content-box ul li .text-box {
        position: relative;
        display: block;
    }

    .services-details-text4 .content-box ul li .text-box p {
        margin: 0px;
    }

    .services-details-text5 {
        position: relative;
        display: block;
        padding-top: 32px;
        margin-bottom: 39px;
    }

    .services-details-text5 p {
        margin: 0;
    }

    .services-details-text5 ul {
        position: relative;
        display: block;
        margin-top: 15px;
    }

    .services-details-text5 ul li {
        position: relative;
        display: block;
        margin-bottom: 13px;
    }

    .services-details-text5 ul li:last-child {
        margin-bottom: 0px;
    }

    .services-details-text5 ul li p {
        position: relative;
        padding-left: 25px;
    }

    .services-details-text5 ul li p::before {
        position: absolute;
        top: 11px;
        left: 0;
        width: 10px;
        height: 10px;
        background: #bfc2c3;
        border-radius: 50%;
        content: "";
    }

    .services-details-text6 {
        position: relative;
        display: block;
        border-top: 1px solid #c9d5db;
        padding-top: 47px;
    }

    .services-details-text6-single {
        position: relative;
        display: flex;
        align-items: center;
    }

    .services-details-text6-single .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        background: #edf3f6;
    }

    .services-details-text6-single .icon-box span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 30px;
    }

    .services-details-text6-single .text-box {
        position: relative;
        display: block;
        flex: 1;
        margin-left: 15px;
    }

    .services-details-text6-single .text-box p {
        margin: 0;
    }

    .services-details__accordion {
        position: relative;
        display: block;
        margin-top: 47px;
    }

    .services-details__accordion .tabs-content__content-accordion {
        margin-left: 0px;
    }

    /***
=============================================
Services Details Sidebar
=============================================
***/

    .services-details__sidebar {
        position: relative;
        display: block;
    }

    .services-details__sidebar-single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .services-details__sidebar-single .title-box {
        position: relative;
        display: block;
        margin-bottom: 21px;
    }

    .services-details__sidebar-single .title-box h2 {
        color: #99219a;
        font-size: 25px;
        line-height: 35px;
        font-weight: 700;
        text-transform: capitalize;
        text-align: center;
    }

    .sidebar__search {
        position: relative;
        display: block;
        background-color: #f1f3f2;
        padding: 42px 30px 50px;
    }

    .sidebar__search-form {
        position: relative;
    }

    .sidebar__search-form input[type="search"] {
        display: block;
        border: none;
        outline: none;
        background-color: #ffffff;
        color: var(--thm-gray);
        font-size: 15px;
        font-weight: 500;
        padding-left: 20px;
        height: 65px;
        width: 100%;
        padding-right: 40px;
        border-radius: 0px;
    }

    .sidebar__search-form ::-webkit-input-placeholder {
        color: var(--thm-gray);
        opacity: 1;
    }

    .sidebar__search-form ::-moz-placeholder {
        color: var(--thm-gray);
        opacity: 1;
    }

    .sidebar__search-form :-ms-input-placeholder {
        color: var(--thm-gray);
        opacity: 1;
    }

    .sidebar__search-form ::-ms-input-placeholder {
        color: var(--thm-gray);
        opacity: 1;
    }

    .sidebar__search-form ::placeholder {
        color: var(--thm-gray);
        opacity: 1;
    }

    .sidebar__search-form :-ms-input-placeholder {
        color: var(--thm-gray);
    }

    .sidebar__search-form ::-ms-input-placeholder {
        color: var(--thm-gray);
    }

    .sidebar__search-form button[type="submit"] {
        background-color: transparent;
        color: #7e828c;
        font-size: 15px;
        position: absolute;
        top: 0px;
        right: 30px;
        bottom: 0px;
        width: 0px;
        outline: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 0px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .sidebar__search-form:hover button[type="submit"] {
        color: var(--thm-base);
    }

    .sidebar__category {
        position: relative;
        display: block;
        background-color: #feece4;
        padding: 21px 17px 32px;
        box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    }

    .sidebar__category-list {
        position: relative;
        display: block;
    }

    .sidebar__category-list li {
        position: relative;
        display: block;
        margin-bottom: 10px;
    }

    .sidebar__category-list li:last-child {
        margin-bottom: 0px;
    }

    .sidebar__category-list li a {
        position: relative;
        display: block;
        min-width: 339px;
        color: #9d1055;
        font-size: 18px;
        line-height: 27px;
        border-radius: 6px;
        font-weight: 700;
        text-transform: capitalize;
        background: #ffffff;
        box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
        padding: 18px 12px 17px;
        z-index: 1;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        border: 1px solid #dab358c9;
    }

    .sidebar__category-list li a:hover,
    .sidebar__category-list li a.active {
        color: #93034a;
    }

    .sidebar__category-list .list.active:hover a {
        color: #93034a;
    }

    .sidebar__category-list li a::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        z-index: -1;
        color: #fff;
        opacity: 1;
        transform: perspective(400px) rotateX(90deg);
        transform-origin: bottom;
        transition: all 300ms linear;
        transition-delay: 0.1s;
        background: linear-gradient(89deg, #ffbfbf, #ffb794);
        border-radius: 0px;
        border-radius: 6px;
    }

    .sidebar__category-list li a:hover::before,
    .sidebar__category-list li a.active::before {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
        transition: all 300ms linear;
        transition-delay: 0.1s;
    }

    .sidebar__category-list li a span::before {
        position: relative;
        position: relative;
    display: inline-block;
    color: #9d1055;
    font-size: 17px;
    font-weight: 800;
    top: 6px;
    float: right;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    }

    .sidebar__category-list li a:hover span::before,
    .sidebar__category-list li a.active span::before {
        color: #ffffff;
    }

    .sidebar__question-form {
        position: relative;
        display: block;
        background-color: #f1f3f2;
        padding: 42px 30px 50px;
    }

    .sidebar__question-form .input-box {
        position: relative;
        display: block;
        margin-bottom: 10px;
    }

    .sidebar__question-form .input-box .icon {
        position: absolute;
        top: 18px;
        right: 20px;
    }

    .sidebar__question-form .input-box .icon span::before {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: var(--thm-base);
    }

    .sidebar__question-form .input-box input[type="text"],
    .sidebar__question-form .input-box input[type="email"],
    .sidebar__question-form .input-box textarea {
        position: relative;
        display: block;
        background: #ffffff;
        border: 0px solid #eeeeee;
        width: 100%;
        height: 65px;
        color: var(--thm-gray);
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        padding: 0 20px;
        padding-right: 45px;
        border-radius: 5px;
        transition: all 500ms ease;
        outline: none;
    }

    .sidebar__question-form .input-box textarea {
        height: 125px;
        padding: 20px 20px;
        padding-right: 45px;
        resize: none;
    }

    .sidebar__question-form .button-box {
        position: relative;
        display: block;
        padding-top: 5px;
    }

    .sidebar__question-form .button-box button {
        outline: none;
        border: none;
    }

    .sidebar__contact-box {
        position: relative;
        display: block;
        background: var(--thm-base);
        padding: 42px 50px 50px;
    }

    .sidebar__contact-box h2 {
        color: #ffffff;
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .sidebar__contact-box p {
        color: rgba(255, 255, 255, .7);
    }

    .sidebar__contact-box .number-box {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 29px;
    }

    .sidebar__contact-box .number-box .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, .1);
        border-radius: 50%;
    }

    .sidebar__contact-box .number-box .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
    }

    .sidebar__contact-box .number-box .text-box {
        position: relative;
        display: block;
        margin-left: 20px;
        flex: 1;
    }

    .sidebar__contact-box .number-box .text-box a {
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .sidebar__contact-box .number-box .text-box a:hover {
        color: var(--thm-primary);
    }

    /***
=============================================
Team One
=============================================
***/

    .team-one--team {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 90px;
    }

    /***
=============================================
Team One
=============================================
***/

    .banefits-two--team {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 45px;
    }

    /***
=============================================
Job One
=============================================
***/

    .job-one {
        position: relative;
        display: block;
        background: #f1f3f2;
        padding: 108px 0px 120px;
        z-index: 1;
    }

    .job-one__bg {
        position: absolute;
        top: 0;
        left: 55%;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top right;
    }

    .job-one__content {
        position: relative;
        display: block;
    }

    .job-one__content .title {
        position: relative;
        display: block;
        margin-bottom: 37px;
    }

    .job-one__content .title h2 {
        color: var(--thm-black);
        font-size: 50px;
        line-height: 60px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .job-one__content .text-box {
        position: relative;
        display: block;
        margin-bottom: 32px;
    }

    .job-one__content .text-box p {
        margin: 0;
    }

    .job-one__list {
        position: relative;
        display: block;
    }

    .job-one__list li {
        position: relative;
        display: block;
        padding-left: 60px;
        margin-bottom: 28px;
    }

    .job-one__list li .icon {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -4px;
        left: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--thm-base);
    }

    .job-one__list li .icon span:before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 15px;
    }

    .job-one__list li .text {
        position: relative;
        display: block;
    }

    .job-one__list li .text p {
        margin: 0;
    }

    .job-one__btn {
        position: relative;
        display: block;
        padding-top: 26px;
        line-height: 0;
    }

    /***
=============================================
Team Details Top
=============================================
***/

    .team-details-top {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 90px 0px 120px;
        z-index: 1;
    }

    .team-details-top__client-info {
        position: relative;
        display: block;
        /* background: #f1f3f2; */
        background: linear-gradient(177deg, #ffc7aa, #ffffff);
        padding: 35px 25px 35px;
        box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
        border-radius: 5px;
    }

    .team-details-top__client-info .img-box {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 10px;
    }

    .team-details-top__client-info .img-box img {
        width: 100%;
    }

    .team-details-top__client-info .content-box {
        position: relative;
        display: block;
        margin-top: 31px;
    }

    .team-details-top__client-info .content-box h2 {
        color: #ad7b00;
        font-size: 27px;
        line-height: 48px;
        border-bottom: 1px dashed #cd9b21;
        font-weight: 700;
        border-style: solid;
    }

    .team-details-top__client-info .content-box span {
        color: var(--thm-black);
    }

    .team-details-top__client-info .content-box p {
        margin-top: 10px;
        color: #81027c;
        font-weight: 600;
        font-size: 20px;
        font-family: 'Lora', serif !important;
    }

    .team-details-top__client-info .content-box ul {
        position: relative;
        display: block;
        margin-top: 29px;
    }

    .team-details-top__client-info .content-box ul li {
        position: relative;
        display: inline-block;
        margin-right: 6px;
    }

    .team-details-top__client-info .content-box ul li:last-child {
        margin-right: 0;
    }

    .team-details-top__client-info .content-box ul li a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: #ffffff;
        border-radius: 50%;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-details-top__client-info .content-box ul li a:hover {
        background: var(--thm-base);
    }

    .team-details-top__client-info .content-box ul li a span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 15px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-details-top__client-info .content-box ul li a:hover span::before {
        color: #ffffff;
    }

    .team-details-top__content {
        position: relative;
        display: block;
        margin-top: -12px;
    }

    .team-details-top__content .title-box {
        position: relative;
        display: block;
        margin-bottom: 8px;
    }

    .team-details-top__content .title-box h2 {
        font-size: 50px;
        line-height: 60px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .team-details-top__content .text-box {
        position: relative;
        display: block;
    }

    .team-details-top__content .text-box p {
        margin: 0;
        color: #000;
        line-height: 27px;
        margin-top: 11px;
        font-family: 'Lora', serif !important;
    }

    .team-details-top__content-info {
        position: relative;
        display: block;
        padding: 20px;
        margin-top: 37px;
        background: linear-gradient(175deg, #ffc7aa, #ffffff);
        border-radius: 10px;
        border: 1px solid #dcb36e;
    }

    .team-details-top__content-info-single {
        position: relative;
        display: block;
    }

    .team-details-top__content-info-single ul {
        position: relative;
        display: block;
    }

    .team-details-top__content-info-single ul li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .team-details-top__content-info-single ul li:last-child {
        margin-bottom: 0px;
    }

    .team-details-top__content-info-single ul li .title {
        position: relative;
        display: block;
        width: 95px;
    }

    .team-details-top__content-info-single ul li .title h5 {
        color: var(--thm-black);
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .team-details-top__content-info-single ul li .text {
        position: relative;
        display: block;
    }

    .team-details-top__content-info-single ul li .text p {
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
    }

    .team-details-top__content-info-single ul li .text p a {
        color: var(--thm-gray);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .team-details-top__content-info-single ul li .text p a:hover {
        color: var(--thm-base);
    }

    .team-details-top__content-btn {
        position: relative;
        display: block;
        margin-top: 47px;
        line-height: 0;
    }

    /***
=============================================
Team Details Middle
=============================================
***/

    .team-details__middle {
        position: relative;
        display: block;
        background: #f1f3f2;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .team-details__middle__bg {
        position: absolute;
        top: 120px;
        left: 55%;
        bottom: 120px;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top right;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    .team-details__middle-content {
        position: relative;
        display: block;
    }

    .team-details__middle-content .title {
        position: relative;
        display: block;
        margin-bottom: 42px;
    }

    .team-details__middle-content .title h2 {
        color: var(--thm-black);
        font-size: 48px;
        line-height: 58px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .team-details__middle-content .text-box {
        position: relative;
        display: block;
    }

    .team-details__middle-content .text-box p {
        margin: 0;
    }

    .team-details__middle-content-list {
        position: relative;
        display: block;
        margin-top: 37px;
    }

    .team-details__middle-content-list li {
        position: relative;
        display: block;
        padding-left: 100px;
        margin-bottom: 33px;
    }

    .team-details__middle-content-list li:last-child {
        margin-bottom: 0;
    }

    .team-details__middle-content-list li .icon-box {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 7px;
        left: 0;
        width: 80px;
        height: 80px;
        background: var(--thm-base);
        border-radius: 50%;
        border: 6px solid #ffffff;
        box-shadow: 0px 2px 20px 0px rgb(9, 24, 84, 0.08);
    }

    .team-details__middle-content-list li .icon-box span::before {
        color: #ffffff;
        font-size: 30px;
    }

    .team-details__middle-content-list li .content-box {
        position: relative;
        display: block;
    }

    .team-details__middle-content-list li .content-box h2 {
        color: var(--thm-black);
        font-size: 22px;
        line-height: 32px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 11px;
    }

    .team-details__middle-content-list li .content-box p {
        margin: 0;
    }

    /***
=============================================
Portfolio Three
=============================================
***/

    .portfolio-three {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 0px;
        z-index: 1;
    }

    .portfolio-three__single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .portfolio-three__single-img {
        position: relative;
        display: block;
    }

    .portfolio-three__single-img .inner {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .portfolio-three__single-img .inner:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
        background: rgba(var(--thm-black-rgb), 0.4);
        opacity: 0;
        z-index: 1;
        content: "";
    }

    .portfolio-three__single:hover .portfolio-three__single-img .inner::before {
        opacity: 1;
    }

    .portfolio-three__single-img .inner img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
    }

    .portfolio-three__single:hover .portfolio-three__single-img .inner img {
        transform: scale(1);
    }

    .portfolio-three__single-img .inner .overlay-content {
        position: absolute;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 320px;
        padding: 25px 20px 17px;
        padding-right: 0;
        z-index: 1;
        opacity: 0;
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
    }

    .portfolio-three__single:hover .portfolio-three__single-img .inner .overlay-content {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    .portfolio-three__single-img .inner .overlay-content::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #ffffff;
        clip-path: polygon(0 0, 100% 0%, 84% 100%, 0 100%);
        content: "";
        z-index: -1;
    }

    .portfolio-three__single-img .inner .overlay-content .text-box {
        position: relative;
        display: block;
    }

    .portfolio-three__single-img .inner .overlay-content .text-box span {
        position: relative;
        display: inline-block;
        background: #f3f3f5;
        border-radius: 5px;
        color: var(--thm-gray);
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        text-transform: capitalize;
        padding: 7px 20px 7px;
        margin-bottom: 7px;
    }

    .portfolio-three__single-img .inner .overlay-content .text-box h2 {
        font-size: 23px;
        line-height: 32px;
        font-weight: 700;
    }

    .portfolio-three__single-img .inner .overlay-content .text-box h2 a {
        color: var(--thm-black);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .portfolio-three__single-img .inner .overlay-content .text-box h2 a:hover {
        color: var(--thm-primary);
    }

    .portfolio-three__single-img .inner .overlay-content .btn-box {
        position: relative;
        display: block;
    }

    .portfolio-three__single-img .inner .overlay-content .btn-box a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--thm-base);
        z-index: 1;
    }

    .portfolio-three__single-img .inner .overlay-content .btn-box a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--thm-primary);
        border-radius: 0px;
        transform: scale(0.5);
        opacity: 0;
        -webkit-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .portfolio-three__single-img .inner .overlay-content .btn-box a:hover::before {
        transform: scale(1.0);
        opacity: 1;
    }

    .portfolio-three__single-img .inner .overlay-content .btn-box a span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 20px;
    }

    /***
=============================================
Portfolio One Project
=============================================
***/

    .portfolio-one--project {
        position: relative;
        display: block;
        padding: 90px 0px 90px;
    }

    /***
=============================================
Appointment Page
=============================================
***/

    .appointment-page {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .appointment-page__bg {
        position: absolute;
        top: 0;
        left: 50%;
        bottom: 0;
        right: 0;
        background-attachment: scroll;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top right;
    }

    .appointment-page__form {
        position: relative;
        display: block;
        background: #f2f2f2;
        padding: 88px 70px 100px;
    }

    .appointment-page__form .title {
        position: relative;
        display: block;
        margin-bottom: 47px;
    }

    .appointment-page__form .title h2 {
        color: var(--thm-black);
        font-size: 50px;
        line-height: 60px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .appointment-page__form .form-group {
        position: relative;
        display: block;
        margin-bottom: 15px;
    }

    .appointment-page__form .form-group input[type="text"],
    .appointment-page__form .form-group input[type="email"],
    .appointment-page__form .form-group textarea {
        position: relative;
        display: block;
        background: #ffffff;
        width: 100%;
        height: 65px;
        border: 1px solid #e8e7e7;
        color: #707480;
        font-size: 15px;
        font-weight: 400;
        font-style: normal;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 5px;
        transition: all 500ms ease;
        font-family: var(--thm-font-2);
        outline: none;
    }

    .appointment-page__form .form-group input[type="text"]::-webkit-input-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="text"]:-moz-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="text"]::-moz-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="text"]:-ms-input-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="email"]::-webkit-input-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="email"]:-moz-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="email"]::-moz-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group input[type="email"]:-ms-input-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group textarea::-webkit-input-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group textarea:-moz-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group textarea::-moz-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group textarea:-ms-input-placeholder {
        color: #707480;
    }

    .appointment-page__form .form-group textarea {
        height: 180px;
        resize: none;
        padding-top: 14px;
    }

    .appointment-page__form .form-group .select-box {
        position: relative;
        display: block;
        width: 100%;
        height: 65px;
    }

    .appointment-page__form .form-group .nice-select {
        background: #ffffff;
        width: 100%;
        height: 65px;
        line-height: 65px;
        border: 1px solid #e8e7e7;
        color: #707480;
        font-size: 15px;
        font-weight: 400;
        font-style: normal;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 5px;
    }

    .appointment-page__form .form-group .nice-select:after {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #707480;
        border-right: 2px solid #707480;
        right: 20px;
        margin-top: 0px;
        top: 25px;
        z-index: 10;
    }

    .appointment-page__form .form-group .nice-select .list {
        background-color: var(--thm-base);
        color: #ffffff;
    }

    .appointment-page__form .button-box {
        position: relative;
        display: block;
        margin-top: 15px;
    }

    /***
=============================================
Shop Page
=============================================
***/

    .shop-page {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .shop-page__top {
        position: relative;
        display: block;
        margin-bottom: 50px;
    }

    .shop-page__top-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .shop-page__top-inner .left {
        position: relative;
        display: flex;
        align-items: center;
    }

    .shop-page__top-inner .left .left_icon {
        position: relative;
        display: flex;
        align-items: center;
    }

    .shop-page__top-inner .left .left_icon a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 55px;
        background: #f2f2f2;
        color: #262c48;
        font-size: 25px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .shop-page__top-inner .left .left_icon a:hover,
    .shop-page__top-inner .left .left_icon a.active {
        color: #ffffff;
        background: var(--thm-base);
    }

    .shop-page__top-inner .left .left_icon a+a {
        margin-left: 15px;
    }

    .shop-page__top-inner .left .left_text {
        position: relative;
        display: block;
        margin-left: 35px;
    }

    .shop-page__top-inner .left .left_text p {
        color: #6c6c6c;
        font-size: 16px;
        line-height: 26px;
    }

    .shop-page__top-inner .right {
        position: relative;
        display: block;
    }

    .shop-page__top-inner .right .shorting {
        position: relative;
        display: block;
    }

    .shop-page__top-inner .right .shorting .select-box {
        width: 250px;
    }

    .shop-page__top-inner .right .shorting .nice-select {
        background: #f3f3f3;
        width: 100%;
        height: 55px;
        line-height: 55px;
        border: 0px solid #6c6c6c;
        color: #6c6c6c;
        font-size: 16px;
        font-weight: 400;
        font-style: normal;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 0px;
    }

    .shop-page__top-inner .right .shorting .nice-select:after {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #6c6c6c;
        border-right: 2px solid #6c6c6c;
        right: 20px;
        margin-top: 0px;
        top: 22px;
        z-index: 10;
    }

    .shop-page__top-inner .right .shorting .nice-select .list {
        background-color: var(--thm-base);
        color: #ffffff;
    }

    .shop-page__content {
        position: relative;
        display: block;
    }

    .shop-page__content .poroduct-one__single-img .inner {
        background: #f2f2f2;
    }

    .shop-page__content .styled-pagination {
        padding-top: 30px;
    }

    .shop-page__sidebar {
        position: relative;
        display: block;
    }

    .shop-page__sidebar-single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .shop-page__sidebar-single .title-box {
        position: relative;
        display: block;
        margin-bottom: 21px;
    }

    .shop-page__sidebar-single .title-box h2 {
        color: var(--thm-black);
        font-size: 25px;
        line-height: 35px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .shop-page__sidebar-single.sidebar__search {
        background-color: #f2f2f2;
    }

    .shop-page__sidebar-single.sidebar__category {
        background-color: #f2f2f2;
    }

    .sidebar__product {
        position: relative;
        display: block;
        background-color: #f2f2f2;
        padding: 42px 30px 50px;
    }

    .sidebar__product-list {
        position: relative;
        display: block;
    }

    .sidebar__product-list>li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .sidebar__product-list li:last-child {
        margin-bottom: 0;
    }

    .sidebar__product-list li .img-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        background: #ffffff;
    }

    .sidebar__product-list li .img-box img {
        width: auto;
    }

    .sidebar__product-list li .content-box {
        position: relative;
        display: block;
        margin-left: 20px;
    }

    .sidebar__product-list li .content-box .rating-box ul li span {
        color: var(--thm-primary);
    }

    .sidebar__product-list li .content-box h4 {
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
        text-transform: capitalize;
        margin-top: 8px;
        margin-bottom: 1px;
    }

    .sidebar__product-list li .content-box h4 a {
        color: var(--thm-base);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .sidebar__product-list li .content-box h4 a:hover {
        color: var(--thm-primary);
    }

    .sidebar__product-list li .content-box p {
        color: #707480;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
    }

    .sidebar__tags {
        position: relative;
        display: block;
        background-color: #f2f2f2;
        padding: 41px 30px 40px;
        overflow: hidden;
    }

    .sidebar__tags-list {
        position: relative;
        display: block;
        margin-left: -5px;
        margin-right: -5px;
    }

    .sidebar__tags-list li {
        position: relative;
        display: inline-block;
        float: left;
        padding: 0px 5px 0px;
        margin-bottom: 10px;
    }

    .sidebar__tags-list li a {
        position: relative;
        display: block;
        color: var(--thm-gray);
        font-size: 13px;
        font-weight: 500;
        background: #ffffff;
        padding: 3px 25px;
        text-transform: capitalize;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .sidebar__tags-list li a:hover {
        color: #ffffff;
        background: var(--thm-base);
    }

    /***
=============================================
Shop Page
=============================================
***/

    .shop-details {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .shop-details__img-box {
        position: relative;
        display: block;
        margin-right: 40px;
    }

    .shop-details__img-box-inner {
        position: relative;
        display: block;
    }

    .shop-details__img-box-thumb {
        position: absolute;
        bottom: -132px;
        left: 0;
        right: 0;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        z-index: 2;
    }

    .shop-details__img-box-thumb-img {
        position: relative;
        display: block;
    }

    .shop-details__img-box-thumb-img::before {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        height: 2px;
        background: var(--alori-base);
        transform: scaleX(0);
        opacity: 0;
        transition: all 500ms linear;
        transition-delay: 0.5s;
        content: "";
    }

    #shop-details-one__thumb .swiper-slide-thumb-active .shop-details__img-box-thumb-img::before {
        transform: scaleX(1.0);
        opacity: 1;
    }

    .shop-details__img-box-thumb-img img {
        width: 100%;
    }

    .shop-details__img-box-img .img-box {
        position: relative;
        display: block;
    }

    .shop-details__img-box-img .img-box img {
        width: 100%;
    }

    .shop-details__img-box-img .img-box .overlay-content {
        position: absolute;
        top: 40px;
        right: 20px;
        width: 65px;
        height: 30px;
        background: var(--thm-base);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .shop-details__img-box-img .img-box .overlay-content p {
        color: #ffffff;
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
    }

    .shop-details-top__nav {
        width: 100%;
        max-width: 100%;
        position: absolute;
        left: 50%;
        bottom: -90px;
        z-index: 5;
        transform: translateY(0%) translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .shop-details-top__nav .swiper-button-next,
    .shop-details-top__nav .swiper-button-prev {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 5;
        width: 40px;
        height: 40px;
        background: #f1f3f2;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #353535;
        font-size: 15px;
        font-weight: 700;
        border-radius: 50%;
        margin: 0;
        text-align: center;
        opacity: 1;
        transition: all 500ms ease;
    }

    .shop-details-top__nav .swiper-button-next i:before,
    .shop-details-top__nav .swiper-button-prev i:before {
        font-weight: 700;
    }

    .shop-details-top__nav .swiper-button-next {
        left: 0px;
    }

    .shop-details-top__nav .swiper-button-prev {
        right: 0px;
    }

    .shop-details-top__nav .swiper-button-next:hover,
    .shop-details-top__nav .swiper-button-prev:hover {
        color: #ffffff;
        background: var(--thm-base);
    }

    .shop-details-top__nav .swiper-button-next::after,
    .shop-details-top__nav .swiper-button-prev::after {
        display: none;
    }

    .shop-details-top__nav .swiper-button-prev .angle-left {
        position: relative;
        transform: rotate(0deg);
    }

    .shop-details__content {
        position: relative;
        display: block;
        margin-top: -8px;
    }

    .shop-details__content-top {
        position: relative;
        display: block;
    }

    .shop-details__content-top h2 {
        color: var(--thm-black);
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
    }

    .shop-details__content-top h2 del {
        position: relative;
        display: inline-block;
        top: -3px;
        color: #74787c;
        font-size: 14px;
        font-weight: 300;
        margin-right: 8px;
    }

    .shop-details__content-reveiw {
        position: relative;
        display: block;
        margin-top: 7px;
    }

    .shop-details__content-reveiw i:before {
        position: relative;
        display: inline-block;
        color: #fe9a24;
        font-size: 15px;
    }

    .shop-details__content-reveiw .left {
        position: relative;
        display: inline-block;
        color: #74787c;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        margin-right: 5px;
    }

    .shop-details__content-reveiw .right {
        position: relative;
        display: inline-block;
        color: #74787c;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        margin-left: 11px;
        padding-left: 14px;
    }

    .shop-details__content-reveiw .right::before {
        position: absolute;
        top: 4px;
        left: 0;
        bottom: 4px;
        width: 1px;
        background: #707070;
        content: "";
    }

    .shop-details__countdown {
        position: relative;
        display: block;
        margin-top: 19px;
    }

    .shop-details__countdown .timer-box {
        position: relative;
        display: block;
    }

    .countdown-timer .default-coundown .box {
        position: relative;
        display: block;
    }

    .shop-details__countdown .countdown-timer li {
        position: relative;
        display: inline-block;
        float: none;
        padding: 0;
        text-align: center;
        margin: 0px 5px 0px;
    }

    .shop-details__countdown .countdown-timer li:first-child {
        margin-left: 0;
    }

    .shop-details__countdown .countdown-timer li:last-child {
        margin-right: 0;
    }

    .shop-details__countdown .countdown-timer li span.days,
    .shop-details__countdown .countdown-timer li span.hours,
    .shop-details__countdown .countdown-timer li span.minutes,
    .shop-details__countdown .countdown-timer li span.seconds {
        position: relative;
        display: block;
        width: 70px;
        height: 70px;
        color: #fff;
        font-size: 25px;
        line-height: 51px;
        text-align: center;
        border-radius: 0px;
        background-color: var(--thm-base);
        font-weight: 600;
    }

    .shop-details__countdown .countdown-timer li span.timeRef {
        position: absolute;
        bottom: 9px;
        left: 50%;
        color: #ffffff;
        font-size: 15px;
        line-height: 25px;
        font-weight: 500;
        text-transform: capitalize;
        display: block;
        text-align: center;
        transform: translateX(-50%);
    }

    .shop-details__content-text {
        position: relative;
        display: block;
        margin-top: 16px;
    }

    .shop-details__content-text h2 {
        color: var(--thm-black);
        font-size: 40px;
        line-height: 50px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: -0.01em;
        margin-bottom: 12px;
    }

    .shop-details__content-text p {
        margin: 0;
    }

    .shop-details__content-bottom {
        position: relative;
        display: block;
    }

    .shop-details__content-bottom-color {
        position: relative;
        display: block;
        margin-top: 17px;
    }

    .shop-details__content-bottom-color h4 {
        color: var(--thm-black);
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .shop-details__content-bottom-color ul {
        position: relative;
        display: block;
        margin-top: -4px;
    }

    .shop-details__content-bottom-color ul li {
        position: relative;
        display: inline-block;
        margin-left: 31px;
    }

    .shop-details__content-bottom-color ul li:first-child {
        margin-left: 0;
    }

    .shop-details__content-bottom-color ul li label {
        position: relative;
        display: inline-block;
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"] {
        display: none;
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"]+label span {
        position: absolute;
        display: block;
        top: 0px;
        left: 0;
        width: 25px;
        height: 25px;
        vertical-align: middle;
        background: #d00e1c;
        cursor: pointer;
        border-radius: 50%;
        transition: all 300ms ease;
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"]+label span.clr2 {
        background: #5fabab;
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"]+label span.clr3 {
        background: #b88b8e;
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"]+label span.clr4 {
        background: #323131;
    }

    .shop-details__content-bottom-color ul li label span:before {
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        font-family: 'icomoon' !important;
        content: "\e90f";
        transform: scale(0);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"]:checked+label span {
        border-color: rgba(var(--thm-gray-rgb), 0.5);
    }

    .shop-details__content-bottom-color ul li input[type="checkbox"]:checked+label span:before {
        transform: scale(1.0);
    }

    /***
=============================================
Poroduct One Shop
=============================================
***/

    .poroduct-one--shop {
        position: relative;
        display: block;
        padding: 120px 0px 80px;
        margin-top: 0;
    }

    /***
=============================================
Blog Page
=============================================
***/

    .blog-page {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .blog-page__content {
        position: relative;
        display: block;
    }

    .blog-page__content .blog-one__single-img .date-box {
        left: auto;
        right: 70px;
    }

    .blog-page__content .blog-one__single__content {
        box-shadow: none;
        padding: 40px 0px 0px;
        padding-right: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .blog-page__content .blog-one__single-img .inner {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .blog-page__content .blog-one__single__content h2 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 21px;
    }

    .blog-page__content .blog-one__single__content p {
        margin: 0;
        margin-bottom: 0px;
    }

    .blog-page__content .blog-one__single__content .text2 {
        margin: 0;
        margin-bottom: 0px;
        margin-top: 4px;
    }

    .blog-page__content .blog-one__single__content .bottom-box {
        position: relative;
        display: block;
        border-top: 0px solid #e4e4ea;
        padding-top: 0px;
        margin-top: 18px;
    }

    .blog-page__content .blog-one__single__content .bottom-box .read-more-btn a {
        text-transform: uppercase;
    }

    .blog-page__content .blog-one__single__content .bottom-box .read-more-btn a span:before {
        position: relative;
        display: inline-block;
        color: var(--thm-gray);
        font-size: 15px;
        font-weight: 700;
        top: 2px;
        margin-left: 11px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .blog-page__content .blog-one__single__content .bottom-box .read-more-btn a:hover span:before {
        color: var(--thm-base);
    }

    .blog-page__content .styled-pagination {
        padding-top: 30px;
    }

    .shop-details__content-bottom-size-box {
        position: relative;
        display: block;
        margin-top: 27px;
    }

    .shop-details__content-bottom-size-box h4 {
        color: var(--thm-black);
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 12px;
    }

    .select-size-box {
        margin: 0 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }

    .select-size-box li {
        position: relative;
        display: inline-block;
        padding: 0 5px 0px;
    }

    .select-size-box li:first-child {
        padding-left: 0;
    }

    .select-size-box li:last-child {
        padding-right: 0;
    }

    .select-size-box li input[type=radio] {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .select-size-box li label {
        position: relative;
        display: block;
        height: 25px;
        width: 30px;
        background-color: #ffffff;
        color: #74787c;
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 0;
        border-radius: 0px;
        border: 1px solid #e9e9e9;
        cursor: pointer;
        font-family: var(--thm-font);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .select-size-box li :checked+label {
        color: #858585;
        background-color: #ffffff;
        border: 1px solid #858585;
        box-shadow: none;
    }

    .select-size-box li input[type="text"] {
        position: relative;
        display: block;
        height: 25px;
        width: 30px;
        background-color: #ffffff;
        color: #74787c;
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 0;
        border-radius: 0px;
        border: 1px solid #e9e9e9;
        font-family: var(--thm-font);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .select-size-box li input[type="text"]::-webkit-input-placeholder {
        color: #74787c;
    }

    .select-size-box li input[type="text"]:-moz-placeholder {
        color: #74787c;
    }

    .select-size-box li input[type="text"]::-moz-placeholder {
        color: #74787c;
    }

    .select-size-box li input[type="text"]:-ms-input-placeholder {
        color: #74787c;
    }

    .shop-details__content-bottom-checked-box {
        position: relative;
        display: block;
        min-height: 30px;
        margin-top: 24px;
    }

    .shop-details__content-bottom-checked-box label {
        position: relative;
        display: inline-block;
        padding-left: 35px;
        margin-right: 0px;
        margin-bottom: 0;
        color: #74787c;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        cursor: pointer;
        min-height: 30px;
        font-family: var(--thm-font);
    }

    .shop-details__content-bottom-checked-box input[type="checkbox"] {
        display: none;
    }

    .shop-details__content-bottom-checked-box input[type="checkbox"]+label span {
        position: absolute;
        top: 3px;
        left: 0;
        width: 20px;
        height: 20px;
        vertical-align: middle;
        background-color: transparent;
        border: 1px solid #74787c;
        border-radius: 0%;
        cursor: pointer;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .shop-details__content-bottom-checked-box label span:before {
        position: absolute;
        top: 4px;
        left: 5px;
        display: block;
        border-bottom: 2px solid #74787c;
        border-right: 2px solid #74787c;
        content: '';
        width: 5px;
        height: 9px;
        pointer-events: none;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        opacity: 0;
    }

    .shop-details__content-bottom-checked-box input[type="checkbox"]:checked+label span {
        border-color: #74787c;
    }

    .shop-details__content-bottom-checked-box input[type="checkbox"]:checked+label span:before {
        opacity: 1;
    }

    .shop-details__product-quantity {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 31px;
    }

    .shop-details__product-quantity-box {
        position: relative;
        display: flex;
        align-items: center;
        padding-left: 1px;
        border: 1px solid #dddddd;
        width: 152px;
    }

    .shop-details__product-quantity-box .input-group.bootstrap-touchspin {
        position: relative;
        width: 150px;
        height: 60px;
    }

    .shop-details__product-quantity-box input.quantity-spinner.form-control {
        position: relative;
        display: block;
        padding: 0;
        width: 50px;
        flex: none;
        height: 60px;
        color: var(--thm-black);
        font-size: 16px;
        font-weight: 500;
        outline: none;
        margin: 0 auto;
        text-align: center;
        border: none;
        font-family: var(--thm-font);
        z-index: 5;
        left: 50px;
    }

    .shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
        position: absolute;
        top: 0;
        left: 0px;
        bottom: 0;
        right: 0;
        width: 100%;
    }

    .shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
        position: relative;
        display: block;
        margin-left: 0px;
        background: #f1f3f2;
        color: var(--thm-black);
        cursor: pointer;
        height: 60px;
        width: 50px;
        margin: 0;
        padding: 0;
    }

    .shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
        border-radius: 0;
        float: right;
        border-left: none;
    }

    .shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
        border-radius: 0;
        float: left;
        border-right: none;
    }

    .shop-details__product-quantity-box .form-control {
        background: #f1f3f2;
    }

    .shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
        position: absolute;
        top: 11px;
        left: 0px;
        right: 10px;
        width: 100%;
        height: 100%;
        font-family: 'icomoon' !important;
        content: "\e945";
        color: var(--thm-black);
        font-size: 15px;
        padding: 0;
        line-height: 60px;
        width: 35px;
        height: 35px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 700;
        transform: rotate(90deg);
    }

    .shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
        position: absolute;
        top: 11px;
        left: 10px;
        width: 100%;
        height: 100%;
        font-family: 'icomoon' !important;
        content: "\e946";
        color: var(--thm-black);
        font-size: 15px;
        padding: 0;
        line-height: 60px;
        width: 35px;
        height: 35px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transform: rotate(90deg);
        font-weight: 700;
    }

    .shop-details__product-quantity .btn-box1 {
        position: relative;
        display: block;
        margin-left: 10px;
        margin-right: 10px;
    }

    .shop-details__product-quantity .btn-box1 a {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        background: var(--thm-base);
        padding: 19px 50px 17px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .shop-details__product-quantity .btn-box1 a:hover {
        background: var(--thm-primary);
    }

    .shop-details__product-quantity .btn-box1 a span::before {
        position: relative;
        display: inline-block;
        font-size: 15px;
        top: 1px;
        margin-right: 5px;
    }

    .shop-details__product-quantity .btn-box2 {
        position: relative;
        display: block;
    }

    .shop-details__product-quantity .btn-box2 a {
        position: relative;
        display: inline-block;
        color: #ffffff;
        background: var(--thm-black);
        padding: 17px 18px 13px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .shop-details__product-quantity .btn-box2 a:hover {
        background: var(--thm-primary);
    }

    .shop-details__product-quantity .btn-box2 a+a {
        margin-left: 6px;
    }

    /***
=============================================
Shop Details Tab
=============================================
***/

    .shop-details__tab {
        position: relative;
        display: block;
        margin-top: 120px;
    }

    .shop-details__tab-button {
        position: relative;
        display: block;
        background: #ffffff;
    }

    .shop-details__tab-button .tab-buttons {
        position: relative;
        display: block;
    }

    .shop-details__tab-button .tab-buttons li {
        position: relative;
        display: inline-block;
        background: #e9efec;
        cursor: pointer;
        padding: 13px 45px 13px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .shop-details__tab-button .tab-buttons li:hover,
    .shop-details__tab-button .tab-buttons li.active-btn {
        background: var(--thm-base);
    }

    .shop-details__tab-button .tab-buttons li h4 {
        color: var(--thm-base);
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
        font-family: var(--thm-font);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .shop-details__tab-button .tab-buttons li:hover h4,
    .shop-details__tab-button .tab-buttons li.active-btn h4 {
        color: #ffffff;
    }

    .shop-details__tab-content-item {
        position: relative;
        display: block;
        border: 1px solid #dddddd;
    }

    .shop-details__tab .tabs-content .tab {
        position: absolute;
        left: 0px;
        top: 0px;
        display: none;
        opacity: 1;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 1;
    }

    .shop-details__tab .tabs-content .tab.active-tab {
        position: relative;
        display: block;
        opacity: 1.0;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        z-index: 5;
    }

    .shop-details__tab-description {
        position: relative;
        display: block;
        padding: 36px 45px 55px;
    }

    .shop-details__tab-description .text-box1 {
        position: relative;
        display: block;
        margin-bottom: 26px;
    }

    .shop-details__tab-description .text-box1 p {
        margin: 0;
    }

    .shop-details__tab-description .text-box2 {
        position: relative;
        display: block;
    }

    .shop-details__tab-description .text-box2 p {
        margin: 0;
    }

    .shop-details__tab-specifications {
        position: relative;
        display: block;
        padding: 36px 45px 55px;
    }

    .shop-details__tab-specifications .text-box1 {
        position: relative;
        display: block;
        margin-bottom: 26px;
    }

    .shop-details__tab-specifications .text-box1 p {
        margin: 0px;
    }

    .shop-details__tab-specifications .text-box2 {
        position: relative;
        display: block;
    }

    .shop-details__tab-specifications .text-box2 p {
        margin: 0;
    }

    .shop-details__tab-content-item.style2 {
        position: relative;
        display: block;
        padding: 50px 40px 50px;
    }

    .shop-details__tab-reviews {
        position: relative;
        display: block;
    }

    .review-box-outer {
        position: relative;
        display: block;
    }

    .single-review-box-outer {
        position: relative;
        display: block;
        background: #f5f5f5;
        padding: 38px 30px 34px;
    }

    .single-review-box {
        position: relative;
        display: block;
        padding-left: 70px;
        min-height: 70px;
    }

    .single-review-box .img-box {
        position: absolute;
        top: 9px;
        left: 0;
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }

    .single-review-box .img-box img {
        width: 100%;
        border-radius: 50%;
    }

    .single-review-box .text-box {
        position: relative;
        display: block;
        padding-left: 25px;
    }

    .single-review-box .text-box .review-box {
        position: relative;
        display: block;
    }

    .single-review-box .text-box .review-box ul {
        position: relative;
        display: block;
    }

    .single-review-box .text-box .review-box ul li {
        position: relative;
        display: inline-block;
    }

    .single-review-box .text-box .review-box ul li i:before {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 15px;
    }

    .single-review-box .text-box .review-box {
        padding: 0 0 10px;
    }

    .single-review-box .text-box h3 {
        position: relative;
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 6px;
    }

    .single-review-box .text-box h5 span {
        color: #757575;
        font-size: 14px;
        font-weight: 600;
        text-transform: capitalize;
        font-family: var(--thm-font-2);
    }

    .single-review-box .text-box p {
        margin: 0;
    }

    .review-form {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 53px 60px 60px;
        box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
        margin-top: 60px;
    }

    .review-form .title-box {
        position: relative;
        display: block;
        padding-bottom: 24px;
    }

    .review-form .title-box h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .review-form .add-rating-box {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .review-form .add-rating-box .add-rating-title {
        position: relative;
        float: left;
    }

    .review-form .add-rating-box .add-rating-title p {
        line-height: 20px;
        margin: 0;
    }

    .review-form .add-rating-box .review-box {
        position: relative;
        float: left;
        padding-left: 20px;
    }

    .review-form .add-rating-box .review-box ul li {
        position: relative;
        display: inline-block;
        float: left;
        line-height: 20px;
        margin-right: 5px;
    }

    .review-form .add-rating-box .review-box ul li:last-child {
        margin-right: 0px;
    }

    .review-form .add-rating-box .review-box ul li i {
        color: var(--thm-base);
        font-size: 14px;
        line-height: 20px;
        transition: all 500ms ease 0s;
    }

    .shop-details__tab-reviews .review-form .input-box {
        position: relative;
        display: block;
    }

    .shop-details__tab-reviews .review-form .input-box .field-label {
        position: relative;
        display: block;
        padding-bottom: 9px;
        color: #757575;
    }

    .shop-details__tab-reviews .review-form form input[type="text"],
    .shop-details__tab-reviews .review-form form input[type="email"],
    .shop-details__tab-reviews .review-form form textarea {
        position: relative;
        display: block;
        background: #ffffff;
        width: 100%;
        height: 60px;
        border: 1px solid #e5e5e5;
        color: #757575;
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 22px;
        border-radius: 0px;
        transition: all 500ms ease;
        outline: none;
    }

    .shop-details__tab-reviews .review-form form textarea {
        height: 120px;
        padding: 10px 20px;
    }

    .shop-details__tab-reviews .review-form form input[type="text"]:focus {
        border-color: #e1dddd;
    }

    .shop-details__tab-reviews .review-form form input[type="email"]:focus {
        border-color: #e1dddd;
    }

    .shop-details__tab-reviews .review-form form textarea:focus {
        border-color: #e1dddd;
    }

    .shop-details__tab-reviews .review-form .button-box {
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 35px;
    }

    .shop-details__tab-reviews .review-form .button-box .left {
        position: relative;
        display: block;
    }

    .shop-details__tab-reviews .review-form .button-box .left .thm-btn::before {
        z-index: -1;
    }

    .shop-details__tab-reviews .review-form .button-box .right {
        position: relative;
        display: block;
        padding-left: 20px;
    }

    .shop-details__content-bottom-checked-box.style2 {
        position: relative;
        display: block;
        margin-top: 0;
    }

    /***
=============================================
Brand Three
=============================================
***/

    .brand-two.style3 {
        position: relative;
        display: block;
        padding: 120px 0 120px;
    }

    /***
=============================================
Footer Three
=============================================
***/

    .footer-one--three {
        position: relative;
        display: block;
    }

    .footer-one--three .footer-widget__single-blog-list li .text-box span {
        color: #000000;
    }

    /***
=============================================
Contact Two
=============================================
***/

    .contact-one--two {
        position: relative;
        display: block;
        background: #f1f4f6;
        margin-top: 0px;
        padding: 0px 0px 90px;
        z-index: 2;
    }

    .contact-one--two.contact-one::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0px;
        right: 0%;
        background: var(--thm-black);
        content: "";
        z-index: -1;
    }

    .contact-one--two .contact-one__form {
        margin-left: 0px;
        max-width: 700px;
    }

    .contact-one--two__img {
        position: absolute;
        right: 100px;
        bottom: 0;
        z-index: -1;
    }

    .contact-one--two__img .inner {
        position: relative;
        display: block;
        clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
    }

    /***
=============================================
Sidebar
=============================================
***/

    .sidebar {
        position: relative;
        display: block;
    }

    .sidebar-single {
        position: relative;
        display: block;
        margin-bottom: 30px;
    }

    .sidebar-single .title-box {
        position: relative;
        display: block;
        margin-bottom: 21px;
    }

    .sidebar-single .title-box h2 {
        color: var(--thm-black);
        font-size: 25px;
        line-height: 35px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .sidebar__news {
        position: relative;
        display: block;
        background-color: #f1f3f2;
        padding: 42px 30px 50px;
    }

    .sidebar__news-list {
        position: relative;
        display: block;
        line-height: 0;
    }

    .sidebar__news-list li {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .sidebar__news-list li:last-child {
        margin-bottom: 0;
    }

    .sidebar__news-list li .img-box {
        position: relative;
        display: block;
    }

    .sidebar__news-list li .img-box img {
        width: 100%;
    }

    .sidebar__news-list li .text-box {
        position: relative;
        display: block;
        flex: 1;
        margin-left: 15px;
        margin-top: -12px;
    }

    .sidebar__news-list li .text-box h4 {
        font-size: 15px;
        line-height: 26px;
        font-weight: 600;
        margin-bottom: 11px;
    }

    .sidebar__news-list li .text-box h4 a {
        color: var(--thm-base);
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .sidebar__news-list li .text-box h4 a:hover {
        color: var(--thm-primary);
    }

    .sidebar__news-list li .text-box span {
        color: var(--thm-gray);
        font-size: 12px;
        font-weight: 500;
    }

    .sidebar__newsletter {
        position: relative;
        display: block;
        background-color: #f2f2f2;
        padding: 41px 30px 50px;
    }

    .sidebar__newsletter-form .input-box {
        position: relative;
        display: block;
    }

    .sidebar__newsletter-form .input-box input[type="email"] {
        position: relative;
        display: block;
        background: #ffffff;
        border: 0px solid #eeeeee;
        width: 100%;
        height: 60px;
        color: var(--thm-gray);
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        padding: 0 20px;
        padding-right: 45px;
        border-radius: 0px;
        transition: all 500ms ease;
        outline: none;
    }

    .sidebar__newsletter-form .input-box .icon {
        position: absolute;
        top: 16px;
        right: 20px;
    }

    .sidebar__newsletter-form .input-box .icon span::before {
        position: relative;
        display: inline-block;
        font-size: 15px;
        color: var(--thm-base);
        font-weight: 700;
    }

    .sidebar__newsletter-form .button-box {
        position: relative;
        display: block;
        margin-top: 20px;
    }

    .sidebar__newsletter-form .button-box .thm-btn {
        width: 100%;
        border-radius: 0px;
    }

    /***
=============================================
    Google Map
=============================================
***/

    .contact-page-google-map {
        position: relative;
        display: block;
        padding: 0px 0px 80px;
        z-index: 1;
    }

    .contact-page-google-map__one {
        position: relative;
        display: block;
        border: none;
        height: 550px;
        width: 100%;
    }

    /***
=============================================
  Contact Page
=============================================
***/

    .contact-page {
        position: relative;
        display: block;
        background: #fff;
        padding: 80px 0px 14px;
    }

    .contact-page__content {
        position: relative;
        display: block;
        /* background: #ffe6ae;
        height: 250px;
        padding: 10px; */
    }

    .contact-page__content .title {
        position: relative;
        display: block;
        margin-bottom: 60px;
    }

    .contact-page__content .title h2 {
        font-size: 48px;
        line-height: 58px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contact-page__content-single {
        position: relative;
        display: block;
        margin-bottom: 39px;
        margin-bottom: 39px;
        background: linear-gradient(92deg, #ffd2d2, #ffe2d4);
        height: 250px;
        padding: 10px
    }

    .contact-page__content-single-inner {
        position: relative;
        display: block;
        padding-left: 70px;
        background: linear-gradient(92deg, #ffd2d2, #ffe2d4);
        height: 250px;
        padding: 12px;
        text-align: center;
        border: 1px solid #fff1f1;
    }

    .contact-page__content-single-inner .icon-box {
        position: relative;
        top: 8px;
        left: 0;
        color: var(--thm-base);
        font-size: 30px;
        background: #ffe7e7;
        display: inline-block;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 17px;
        border: 1px solid #ffe1df;
    }

    .contact-page__content-single-inner .content-box {
        position: relative;
        display: block;
    }

    .contact-page__content-single-inner .content-box h2 {
        font-size: 25px;
        line-height: 37px;
        font-weight: 600;
        margin-bottom:7px;
        font-family: 'Mulish', sans-serif;
    }

    .contact-page__content-single-inner .content-box p {
        color: #000000;
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
    }

    .contact-page__content-single-inner .content-box .number1 {
        margin: 0px;
        margin-bottom: 1px;
    }

    .contact-page__content-single-inner .content-box .number1 a {
        color: #000000;
        font-size: 19px;
        line-height: 26px;
        font-weight: 600;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        font-family: 'Mulish', sans-serif;
    }

    .contact-page__content-single-inner .content-box .number1 a:hover {
        color: var(--thm-base);
    }

    .contact-page__content-single-inner .content-box .number2 {
        margin: 0px;
    }

    .contact-page__content-single-inner .content-box .number2 a {
        color: var(--thm-gray);
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .contact-page__content-single-inner .content-box .number2 a:hover {
        color: var(--thm-base);
    }

    .contact-page__content-single-inner .content-box .email1 {
        margin: 0px;
        margin-bottom: 1px;
    }

    .contact-page__content-single-inner .content-box .email1 a {
        color: #000000;
        font-size: 19px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: 'Mulish', sans-serif;
    }

    .contact-page__content-single-inner .content-box .email1 a:hover {
        color: var(--thm-base);
    }

    .contact-page__content-single-inner .content-box .email2 {
        margin: 0px;
    }

    .contact-page__content-single-inner .content-box .email2 a {
        color: var(--thm-gray);
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .contact-page__content-single-inner .content-box .email2 a:hover {
        color: var(--thm-base);
    }

    .contact-page__form {
        position: relative;
        display: block;
        margin-top: 126px;
    }

    .comment-form__input-box {
        position: relative;
        display: block;
        margin-bottom: 20px;
    }

    .comment-form__input-box input[type="text"],
    .comment-form__input-box input[type="email"] {
        position: relative;
        display: block;
        background: #ffffff;
        width: 100%;
        height: 60px;
        border: 1px solid #dcdfe2;
        color: #999999;
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        font-style: normal;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 3px;
        transition: all 500ms ease;
        font-family: var(--thm-font-2);
        outline: none;
    }

    .comment-form__input-box textarea {
        width: 100%;
        height: 200px;
        background-color: #ffffff;
        border: 1px solid #dcdfe2;
        outline: none;
        color: #999999;
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        border-radius: 3px;
        padding: 12px 20px 20px;
        font-family: var(--thm-font-2);
        resize: none;
        height: 200px;
    }

    .comment-form__btn-box {
        position: relative;
        display: block;
        padding-top: 2px;
    }

    .comment-form__btn {
        position: relative;
        outline: none;
        border-radius: 40px;
        padding: 19px 45px 17px;
    }

    /***
=============================================
Blog Details
=============================================
***/

    .blog-details {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
        z-index: 1;
    }

    .blog-details .blog-one__single {
        margin-bottom: 39px;
    }

    .blog-details .blog-one__single__content .meta-box {
        display: inline-block;
        background: #f2f2f2;
        padding: 25px 45px 25px;
        margin-top: -45px;
        margin-bottom: 19px;
        z-index: 5;
    }

    .blog-details .blog-one__single__content .meta-box li {
        margin-right: 15px;
    }

    .blog-details__content .blog-one__single-img .date-box {
        left: auto;
        right: 70px;
    }

    .blog-details__content .blog-one__single__content {
        box-shadow: none;
        padding: 0px 0px 0px;
        padding-right: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .blog-details__content .blog-one__single-img .inner {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .blog-details__content .blog-one__single__content h2 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 21px;
    }

    .blog-details__content .blog-one__single__content p {
        margin: 0;
        margin-bottom: 0px;
    }

    .blog-details__content .blog-one__single__content .text2 {
        margin: 0;
        margin-bottom: 0px;
        margin-top: 14px;
    }

    .blog-details__text1 {
        position: relative;
        display: block;
    }

    .blog-details__text1 .img-box {
        position: relative;
        display: block;
        margin-bottom: 25px;
    }

    .blog-details__text1 .img-box img {
        width: 100%;
    }

    .blog-details__text1 .text-box1 {
        position: relative;
        display: block;
    }

    .blog-details__text1 .text-box1 p {
        margin: 0;
    }

    .blog-details__text1 .text-box2 {
        position: relative;
        display: block;
        padding-left: 80px;
        margin-top: 19px;
        margin-bottom: 29px;
    }

    .blog-details__text1 .text-box2 .icon-box {
        position: absolute;
        top: 6px;
        left: 0;
    }

    .blog-details__text1 .text-box2 .icon-box span::before {
        position: relative;
        display: inline-block;
        color: var(--thm-base);
        font-size: 60px;
    }

    .blog-details__text1 .text-box2 .text-box {
        position: relative;
        display: block;
    }

    .blog-details__text1 .text-box2 .text-box p {
        margin: 0;
    }

    .blog-details__text2 {
        position: relative;
        display: block;
        margin-top: 20px;
    }

    .blog-details__text2-list {
        position: relative;
        display: block;
    }

    .blog-details__text2-list li {
        position: relative;
        display: block;
        padding-left: 24px;
    }

    .blog-details__text2-list li:before {
        position: absolute;
        top: 10px;
        left: 0;
        height: 10px;
        width: 10px;
        background-color: #bfc2c3;
        border-radius: 50%;
        content: "";
    }

    .blog-details__text2-list li+li {
        margin-top: 17px;
    }

    .blog-details__text2 .text-box1 {
        position: relative;
        display: block;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .blog-details__text2 .text-box1 p {
        margin: 0;
    }

    .blog-details__text2 .text-box2 {
        position: relative;
        display: block;
    }

    .blog-details__text2 .text-box2 p {
        margin: 0;
    }

    .blog-details__bottom {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 49px 0 40px;
    }

    .blog-details__bottom p {
        margin: 0;
    }

    .blog-details__tags a {
        position: relative;
        display: inline-block;
        color: var(--thm-gray);
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
        background-color: #ffffff;
        border: 1px solid #dcdfe2;
        padding: 5px 30px;
        letter-spacing: 0.035em;
        font-family: var(--thm-font);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .blog-details__tags a:hover {
        background-color: var(--thm-base);
        border: 1px solid var(--thm-base);
        color: #ffffff;
    }

    .blog-details__tags a+a {
        margin-left: 6px;
    }

    .blog-details__social-list {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .blog-details__social-list a {
        position: relative;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
        color: var(--thm-black);
        font-size: 15px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #f2f2f2;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

    .blog-details__social-list a:hover {
        color: #ffffff;
        background-color: var(--thm-base);
    }

    .blog-details__social-list a+a {
        margin-left: 10px;
    }

    .blog-details__social-list a:hover:before {
        transform: scaleX(1);
    }

    .author-one {
        background-color: #f2f2f2;
        padding: 32px 30px 30px;
        display: -webkit-box;
        display: flex;
        margin-bottom: 51px;
    }

    .author-one .inner {
        position: relative;
        display: block;
        padding-left: 130px;
    }

    .author-one__image {
        position: absolute;
        top: 7px;
        left: 0;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
    }

    .author-one__image img {
        width: 100%;
    }

    .author-one__content {
        position: relative;
        display: block;
    }

    .author-one__content h3 {
        font-size: 22px;
        line-height: 32px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 8px
    }

    .author-one__content p {
        margin: 0;
    }

    .author-one__content {
        position: relative;
        display: block;
    }

    .author-one__content ul {
        position: relative;
        display: block;
        margin-top: 16px;
    }

    .author-one__content ul li {
        position: relative;
        display: inline-block;
        margin-right: 15px;
    }

    .author-one__content ul li:last-child {
        margin-right: 0px;
    }

    .author-one__content ul li a {
        position: relative;
        display: inline-block;
        color: var(--thm-black);
        font-size: 17px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .author-one__content ul li a:hover {
        color: var(--thm-primary);
    }

    /***
=====================================================
  Comments
=====================================================
***/

    .comment-one {
        position: relative;
        display: block;
    }

    .comment-one__title {
        color: var(--thm-black);
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0;
        margin-bottom: 31px;
    }

    .comment-one__single {
        position: relative;
        display: -webkit-box;
        display: flex;
        align-items: center;
        margin-bottom: 53px;
    }

    .comment-one__image {
        position: relative;
        display: block;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
    }

    .comment-one__image img {
        width: auto;
    }

    .comment-one__content {
        position: relative;
        margin-left: 30px;
        flex: 1;
    }

    .comment-one__content h3 {
        margin: 0;
        font-size: 22px;
        margin-bottom: 11px;
        font-weight: 600;
    }

    .comment-one__content p {
        margin: 0;
        margin-bottom: 13px;
    }

    .comment-one__content span {
        color: var(--thm-gray);
        font-size: 15px;
        line-height: 25px;
        font-weight: 600;
    }

    .comment-one__btn {
        position: relative;
        color: var(--thm-base);
        font-size: 15px;
        line-height: 25px;
        font-weight: 600;
        text-transform: capitalize;
        font-family: var(--thm-font);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        padding-left: 16px;
    }

    .comment-one__btn:hover {
        color: var(--thm-primary);
    }

    .comment-form {
        position: relative;
        display: block;
    }

    .comment-form__title {
        color: var(--thm-black);
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0;
        margin-bottom: 40px;
    }

    .comment-one__form {
        position: relative;
        display: block;
    }

    .comment-form__input-box {
        position: relative;
        display: block;
        margin-bottom: 20px;
    }

    .comment-form__input-box input[type="text"],
    .comment-form__input-box input[type="email"] {
        position: relative;
        display: block;
        background: #fcfcfc;
        width: 100%;
        height: 60px;
        border: 1px solid #dcdfe2;
        color: var(--thm-gray);
        font-size: 12px;
        font-weight: 500;
        text-transform: none;
        font-style: normal;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 3px;
        transition: all 500ms ease;
        font-family: var(--thm-font);
        outline: none;
    }

    .comment-form__input-box textarea {
        width: 100%;
        height: 200px;
        background-color: #fcfcfc;
        border: 1px solid #dcdfe2;
        outline: none;
        color: var(--thm-gray);
        font-size: 12px;
        font-weight: 500;
        text-transform: none;
        border-radius: 3px;
        padding: 12px 20px 20px;
        font-family: var(--thm-font);
        resize: none;
    }

    .comment-form__btn-box {
        position: relative;
        display: block;
    }

    .comment-form__btn {
        position: relative;
        outline: none;
        border-radius: 40px;
        padding: 19px 45px 17px;
    }

    /*** 
=============================================
   Cart area 
=============================================
***/

    .cart-area {
        position: relative;
        display: block;
        padding: 120px 0px 120px;
    }

    .cart-table-box .table-outer {
        position: relative;
        width: 100%;
        overflow-x: auto;
    }

    .cart-table-box .cart-table {
        min-width: 1024px;
        width: 100%;
    }

    .cart-table-box .cart-table .cart-header {
        position: relative;
        width: 100%;
        background: var(--thm-base);
    }

    .cart-table-box .cart-table thead tr {}

    .cart-table-box .cart-table thead tr th {
        color: #ffffff;
        font-size: 17px;
        line-height: 24px;
        font-weight: 500;
        text-transform: uppercase;
        min-width: 160px;
        padding: 22px 40px;
        border: 0px solid #ededed;
        font-family: var(--thm-font);
    }

    .cart-table-box .cart-table thead tr th.hide-me {
        display: table-column;
    }

    .cart-table-box .cart-table thead tr th.prod-column {
        position: relative;
    }

    .cart-table-box .cart-table thead tr th.availability {
        padding: 0 40px
    }

    .cart-table-box .cart-table tbody tr {
        border-bottom: 1px solid #e5e5e5;
    }

    .cart-table-box .cart-table tbody tr td {
        min-width: 160px;
        padding: 30px 40px;
        border: 0px solid #ededed;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box {
        position: relative;
        min-height: 73px;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb {
        width: 80px;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb a {
        position: relative;
        display: block;
        border-radius: 0px;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb a img {
        width: 100%;
        border-radius: 10px;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb,
    .cart-table-box .cart-table tbody tr .prod-column .column-box .title {
        display: table-cell;
        vertical-align: middle;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box .title {
        padding-left: 20px;
    }

    .cart-table-box .cart-table tbody tr .prod-column .column-box .title h3 {
        color: #25283a;
        font-size: 17px;
        line-height: 20px;
        font-weight: 500;
        text-transform: capitalize;
        font-family: var(--thm-font);
    }

    .cart-table-box .cart-table tbody tr .qty {}

    .cart-table-box .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
        float: none;
        width: 90px;
    }

    .cart-table-box .cart-table tbody tr td.price {
        color: #848484;
        font-size: 17px;
        font-weight: 500;
        font-family: var(--thm-font);
    }

    .cart-table-box .cart-table tbody tr .sub-total {
        color: #848484;
        font-size: 17px;
        font-weight: 500;
        font-family: var(--thm-font);
    }

    .cart-table-box .cart-table tbody tr td .remove {
        position: relative;
        display: block;
    }

    .cart-table-box .cart-table tbody tr td .remove span:before {
        position: relative;
        display: inline-block;
        left: 30px;
        color: #e5e5e5;
        font-size: 25px;
        line-height: 25px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        transform: rotate(45deg);
    }

    .cart-table-box .cart-table tbody tr td .remove:hover span:before {
        color: var(--thm-base);
    }

    .cart-button-box {
        padding-top: 50px
    }

    .cart-button-box .apply-coupon {
        position: relative;
        display: block;
    }

    .cart-button-box .apply-coupon .text {
        position: relative;
        display: block;
        margin-top: -7px;
        padding-bottom: 17px;
    }

    .cart-button-box .apply-coupon .text p {
        color: #25283a;
        font-size: 17px;
        line-height: 28px;
        font-weight: 500;
        margin: 0;
    }

    .cart-button-box .apply-coupon .inner {
        position: relative;
        display: block;
        padding-left: 270px;
    }

    .cart-button-box .apply-coupon input[type="text"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 270px;
        height: 60px;
        border: 1px solid #e5e5e5;
        color: #848484;
        font-size: 17px;
        font-weight: 400;
        padding: 0 30px;
        text-transform: capitalize;
        transition: all 500ms ease 0s;
        border-radius: 30px;
        font-family: var(--alori-font-3);
        outline: none;
    }

    .cart-button-box .apply-coupon .apply-coupon-button button {
        padding: 0 40px;
        margin-left: 10px;
        line-height: 60px;
    }

    .cart-button-box .apply-coupon .apply-coupon-button button.thm-btn::before {
        z-index: -1;
    }

    .cart-button-box .update-cart button {
        padding: 0 40px;
        margin-top: 38px;
        line-height: 60px;
    }

    .cart-button-box .update-cart button.thm-btn::before {
        z-index: -1;
    }

    .cart-button-box .update-cart {
        float: right;
    }

    .cart-totals-form {
        position: relative;
        display: block;
        max-width: 370px;
        width: 100%;
        float: right;
        margin-top: 92px;
    }

    .cart-totals-form h2 {
        color: #25283a;
        font-size: 30px;
        line-height: 40px;
        font-weight: 600;
    }

    .cart-totals-form ul {
        position: relative;
        display: block;
        overflow: hidden;
        padding: 11px 0 10px;
    }

    .cart-totals-form ul li {
        position: relative;
        display: block;
        border-bottom: 1px solid #e5e5e5;
        color: #25283a;
        font-size: 17px;
        font-weight: 500;
        line-height: 52px;
    }

    .cart-totals-form ul li:last-child {
        border-bottom: none;
    }

    .cart-totals-form ul li span {
        position: relative;
        display: block;
        float: right;
    }

    .cart-totals-form ul li span.total {
        color: var(--thm-base);
        font-weight: 600;
    }

    .cart-totals-form button {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .cart-totals-form button.thm-btn {
        text-transform: capitalize;
    }

    .cart-totals-form button.thm-btn::before {
        z-index: -1;
    }

    .cart-area .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
        display: none;
    }

    /*** 
=============================================
    Checkout Area Css
=============================================
***/

    .checkout-area {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 120px 0px 120px;
    }

    .checkout-area .form .title {
        position: relative;
        display: block;
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 8px;
        margin-bottom: 25px;
    }

    .checkout-area .form .title h3 {
        color: var(--thm-black);
        font-size: 22px;
        line-height: 30px;
        font-weight: 600;
        font-family: var(--thm-font);
    }

    .checkout-area .form form .field-label {
        color: #1c2035;
        font-size: 16px;
        font-weight: 500;
        margin: 0 0 10px;
        text-transform: none;
    }

    .checkout-area form .input-box {
        position: relative;
        display: block;
        margin-bottom: 20px;
    }

    .checkout-area .form form .field-input input[type="text"],
    .checkout-area .form form .field-input input[type="email"],
    .checkout-area .form form .field-input input[type="tel"] {
        position: relative;
        display: block;
        border: 1px solid #e0e0e0;
        color: rgba(var(--thm-gray-rgb), 0.5);
        font-size: 15px;
        height: 60px;
        margin-bottom: 20px;
        padding: 0 15px;
        width: 100%;
        outline: none;
        transition: all 500ms ease;
    }

    .checkout-area .form form .field-input .nice-select {
        border-radius: 0px;
        border: 1px solid #e0e0e0;
        color: rgba(var(--thm-gray-rgb), 0.5);
        font-size: 15px;
        font-weight: 400;
        height: 60px;
        line-height: 58px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
        width: 100%;
    }

    .checkout-area .form form .field-input .nice-select:after {
        border-bottom: 2px solid var(--thm-black);
        border-right: 2px solid var(--thm-black);
    }

    .checkout-area .form form .field-input textarea {
        position: relative;
        display: block;
        border: 1px solid #e0e0e0;
        color: rgba(var(--thm-gray-rgb), 0.5);
        font-size: 15px;
        font-weight: 400;
        height: 120px;
        padding: 10px 20px;
        width: 100%;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        outline: none;
    }

    .checkout-area__checkbox {
        position: relative;
        display: block;
        margin-bottom: 14px;
    }

    .checkout-area__checkbox-single+.checkout-area__checkbox-single {
        margin-top: 0px;
    }

    .checkout-area__checkbox-single label {
        position: relative;
        display: inline-block;
        padding-left: 30px;
        margin-right: 0px;
        margin-bottom: 0;
        color: var(--thm-gray);
        font-size: 15px;
        line-height: 30px;
        font-weight: 500;
        cursor: pointer;
    }

    .checkout-area__checkbox-single input[type="checkbox"] {
        display: none;
    }

    .checkout-area__checkbox-single input[type="checkbox"]+label span {
        position: absolute;
        display: block;
        top: 7px;
        left: 0;
        width: 17px;
        height: 17px;
        vertical-align: middle;
        border: 1px solid #d6d3d0;
        cursor: pointer;
        border-radius: 0%;
        transition: all 300ms ease;
    }

    .checkout-area__checkbox-single label span:before {
        position: absolute;
        top: 3px;
        left: 3px;
        bottom: 3px;
        right: 3px;
        content: "";
        background: #d6d3d0;
        border-radius: 0%;
        transform: scale(0);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .checkout-area__checkbox-single input[type="checkbox"]:checked+label span {
        border-color: #d6d3d0;
    }

    .checkout-area__checkbox-single input[type="checkbox"]:checked+label span:before {
        transform: scale(1.0);
    }

    .checkout-area__sidebar {
        position: relative;
        display: block;
        margin-left: 20px;
    }

    .checkout-area__sidebar-single {
        position: relative;
        display: block;
        background: #f9f9f9;
        padding: 31px 25px 50px;
        margin-bottom: 30px;
    }

    .checkout-area__sidebar-single.mb0 {
        margin-bottom: 0;
    }

    .checkout-area__sidebar-single .title {
        position: relative;
        display: block;
        border-bottom: 1px solid #e4e2e0;
        padding-bottom: 11px;
    }

    .checkout-area__sidebar-single .title h3 {
        color: var(--thm-black);
        font-size: 22px;
        line-height: 34px;
        font-weight: 600;
        font-family: var(--thm-font);
    }

    .checkout-area__sidebar-single ul {
        position: relative;
        display: block;
    }

    .checkout-area__sidebar-single ul li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e4e2e0;
        padding-top: 24px;
        padding-bottom: 23px;
    }

    .checkout-area__sidebar-single ul li:last-child {
        border-bottom: none;
        padding-bottom: 0px;
    }

    .checkout-area__sidebar-single ul li .text-box {
        position: relative;
        display: flex;
        align-items: center;
    }

    .checkout-area__sidebar-single ul li .text-box .img-box {
        position: relative;
        display: block;
        margin-right: 15px;
    }

    .checkout-area__sidebar-single ul li .text-box .img-box img {
        width: 100%;
    }

    .checkout-area__sidebar-single ul li .title-box {
        position: relative;
        display: block;
    }

    .checkout-area__sidebar-single ul li .title-box p {
        color: var(--thm-black);
        font-size: 15px;
        line-height: 25px;
        font-weight: 500;
    }

    .checkout-area__sidebar-single ul li .title-box p span {
        position: relative;
        display: inline-block;
        margin-left: 15px;
    }

    .checkout-area__sidebar-single ul li .price {
        position: relative;
        display: block;
        line-height: 0;
    }

    .checkout-area__sidebar-single ul li .price p {
        color: #1c2035;
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }

    .checkout-area__sidebar-single ul li .price span {
        color: rgba(var(--thm-black-rgb), 0.7);
        font-size: 14px;
        line-height: 20px;
    }

    .checkout-area__sidebar-single ul li .price a {
        position: relative;
        display: block;
        color: var(--thm-base);
        font-size: 14px;
        line-height: 20px;
        text-decoration: underline;
        margin-top: 5px;
    }

    .checkout__payment {
        position: relative;
        display: block;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .checkout__payment__item {
        position: relative;
        display: block;
        border: 1px solid #eae7e7;
        padding: 24px 25px 23px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .checkout__payment__item.checkout__payment__item--active {
        border-color: var(--thm-black);
    }

    .checkout__payment__title {
        display: flex;
        color: var(--thm-black);
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        align-items: center;
        cursor: pointer;
        font-family: var(--thm-font);
    }

    .checkout__payment__title::before {
        content: '';
        width: 17px;
        height: 17px;
        background-color: transparent;
        border: 2px solid var(--thm-base);
        border-radius: 0%;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 10px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        position: relative;
        top: 0px;
        transition: all 500ms ease;
    }

    .checkout__payment__item--active .checkout__payment__title::before {
        background-color: var(--thm-base);
        border-color: var(--thm-base);
        content: '\f00c';
    }

    .checkout__payment__content {
        font-size: 15px;
        line-height: 25px;
        color: var(--thm-gray);
        margin-top: 13px;
    }

    .checkout__payment__checkbox {
        position: relative;
        display: block;
        margin-top: 18px;
    }

    .checkout__payment-btn {
        position: relative;
        display: block;
        margin-top: 30px;
    }

    .checkout__payment-btn .thm-btn {
        width: 100%;
        text-align: center;
        border-radius: 0px;
        text-transform: none;
    }

    .checkout__payment-btn .thm-btn::before {
        z-index: -1;
    }

    .checkout__payment-btn .thm-btn::after {
        border-radius: 0;
    }

    /*** 
=============================================
    Login Register Area style
=============================================
***/

    .login-register-area {
        position: relative;
        display: block;
        padding-top: 113px;
        padding-bottom: 112px;
    }

    .shop-page-title .title {
        color: var(--thm-black);
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
        margin: 0 0 6px;
        text-transform: uppercase;
        font-family: var(--thm-font);
    }

    .login-register-area .form .shop-page-title {
        padding-bottom: 26px;
    }

    .login-register-area .form form {
        width: 100%;
    }

    .login-register-area .form .input-field {
        position: relative;
    }

    .login-register-area .form .input-field input[type="text"] {
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
        border: 1px solid #ededed;
        color: #83888d;
        font-size: 16px;
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 50px;
        transition: all 700ms ease 0s;
    }

    .login-register-area .form .input-field .icon-holder {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .login-register-area .form .input-field .icon-holder i {
        color: #999999;
        font-size: 14px;
        font-weight: 400;
    }

    .login-register-area .form button.thm-btn::before {
        z-index: -1;
    }

    .login-register-area .form button:hover {}

    .login-register-area .form .remember-text {
        margin-top: 19px;
    }

    .login-register-area .form .remember-text .checkbox label {
        color: #27282c;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        cursor: pointer;
    }

    .login-register-area .form .remember-text .checkbox input {
        position: relative;
        top: 1px;
    }

    .login-register-area .form .remember-text .checkbox span {
        color: #27282c;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }

    .login-register-area .form .social-icon {
        position: relative;
        float: right;
        margin-right: -8px;
        margin-top: 10px;
    }

    .login-register-area .form .social-icon .login-with {
        position: absolute;
        left: -100px;
        top: 8px;
        margin: 0;
    }

    .login-register-area .form .social-icon li {
        display: inline-block;
        margin: 0 8px;
    }

    .login-register-area .form .social-icon li a i {
        background: #47588f none repeat scroll 0 0;
        border-radius: 50%;
        color: #fff;
        display: block;
        font-size: 14px;
        font-weight: 100;
        height: 40px;
        line-height: 24px;
        padding: 8px 0;
        text-align: center;
        transition: all 700ms ease 0s;
        width: 40px;
    }

    .login-register-area .form .social-icon li a i.twitter {
        background: #33ccfe none repeat scroll 0 0;
    }

    .login-register-area .form .social-icon li a i.gplus {
        background: #dd4b39 none repeat scroll 0 0;
    }

    .login-register-area .form .right {
        display: block;
        overflow: hidden;
        margin-left: -60px;
    }

    .login-register-area .form .right h6 {
        float: left;
        color: #828282;
        font-size: 14px;
        font-weight: 400;
        margin-top: 18px;
    }

    .login-register-area .form .right h6 span {
        color: #0b59d9;
    }

    .login-register-area .form .input-field input[type="text"]:focus {
        border: 1px solid #1d1d1d;
    }

    .login-register-area .form .social-icon li a:hover i {
        background: #18387b;
    }

    .login-register-area .form .social-icon li a:hover i.twitter {
        background: #12addf;
    }

    .login-register-area .form .social-icon li a:hover i.gplus {
        background: #c62d1a;
    }

    .my-account__checked-box {
        position: relative;
        display: block;
        min-height: 30px;
        margin-top: 24px;
    }

    .my-account__checked-box label {
        position: relative;
        display: inline-block;
        padding-left: 35px;
        margin-right: 0px;
        margin-bottom: 0;
        color: #74787c;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        cursor: pointer;
        min-height: 30px;
        font-family: var(--thm-font);
    }

    .my-account__checked-box input[type="checkbox"] {
        display: none;
    }

    .my-account__checked-box input[type="checkbox"]+label span {
        position: absolute;
        top: 3px;
        left: 0;
        width: 20px;
        height: 20px;
        vertical-align: middle;
        background-color: transparent;
        border: 1px solid #74787c;
        border-radius: 0%;
        cursor: pointer;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .my-account__checked-box label span:before {
        position: absolute;
        top: 4px;
        left: 5px;
        display: block;
        border-bottom: 2px solid #74787c;
        border-right: 2px solid #74787c;
        content: '';
        width: 5px;
        height: 9px;
        pointer-events: none;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        opacity: 0;
    }

    .my-account__checked-box input[type="checkbox"]:checked+label span {
        border-color: #74787c;
    }

    .my-account__checked-box input[type="checkbox"]:checked+label span:before {
        opacity: 1;
    }

    /* .features-one .sec-title .sub-title .text span::before{
  background: #fff !important;
} */

    .features-one__single .icon-box img {
        padding: 15px;
        background-color: #ffb4d9;
        border-radius: 50px;
    }

    /* mega menu */

    .beautypress-mega-menu .nav-submenu,
    .xs-navigation-middle-menu .nav-submenu,
    .xs_nav_2 .nav-submenu {
        border-radius: 0 0 5px 5px;
        box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
        border: 0;
    }

    .nav-menu>li>.nav-dropdown {
        border: 0;
    }

    .xs_nav_2 .nav-submenu li a {
        background-color: transparent;
    }

    .xs_nav_2 .nav-submenu {
        background-color: #FFFFFF;
    }

    .xs_nav-portrait .nav-submenu {
        box-shadow: none;
    }

    .beautypress-main-header .beautypress-nav.xs_nav-portrait,
    .beautypress-main-header .xs-navigation-middle-menu.xs_nav-portrait,
    .beautypress-main-header .beautypress-mega-menu.xs_nav-portrait {
        height: 60px;
    }

    .nav-toggle {
        margin: 0;
    }

    .beautypress-mega-menu .nav-dropdown,
    .xs-navigation-middle-menu .nav-dropdown {
        /* background-color: var(--color-white); */
        background: linear-gradient(181deg, #ef82b9, #ffcfe6);
        /* background: linear-gradient(181deg, #ef82b9, #fff6fadb); */
    }

    .mega-menu-overlay-img {
        position: absolute;
        right: 0;
        bottom: 0;
        background-image: url(/resources/assets/css/../img/mega_menu_bg.png);
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position: right bottom;
        -webkit-background-size: cover;
        background-size: contain;
        border-radius: 0 0 5px 0;
        pointer-events: none;
    }

    .xs_nav-portrait .mega-menu-overlay-img {
        z-index: -1;
    }

    .beautypress-mega-menu.xs_nav-landscape .mega-menu-overlay-img {
        z-index: -1;
    }

    .xs_nav-portrait .submenu-indicator-chevron {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .beautypress-mega-menu.xs_nav-landscape .submenu-indicator {
        margin-top: 3px;
    }

    .main-header-two__middle .dropdown .mega-menu {
        min-width: 1076px;
        left: -256px;
        padding-left: 10px;
        /* background: linear-gradient(181deg, #ef82b9, #ef86ba); */
        /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
        display: table;
    }

    .dropdown .mega-menu li.megamenu-list-title a {
        font-weight: 700;
        font-size: 1.1em;
        color: #5f1b77 !important;
        padding: 2px !important;
        text-align: center;
        background: linear-gradient(1deg, #fff2ec, #f3c2ab);
        /* border-radius: 5px; */
        border: 2px solid #e6be69;
        font-family: 'Lora', serif !important;
        margin-top: 3px;
        border-style: dotted;
    }

    .mega-menu li a {
        color: #201f20 !important;
        font-weight: 500;
        font-family: 'Mulish', sans-serif !important;
    }

    .mega-menu li a:hover {
        color: #d53d83 !important;
    }

    li.megamenu-list-title {
        margin-top: 10px;
    }

    .hospital-profile img {
        width: 80%;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .hospital-profile {
        text-align: right;
    }

    .hospital-area {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .title h2 {
        font-size: 37px;
        font-weight: 600;
        font-family: 'Lora', serif !important;
        color: #dc4783;
    }

    .icon-right {
        margin-left: 20px;
    }

    span.icon-right {
        margin-left: -29px;
        font-size: 16px;
        /* margin-top: 13px; */
        color: #ad7b00;
        border-radius: 20px;
        background: #f8bfa691;
        padding: 3px;
    }

    .title h5 {
        margin-left: 24px;
        font-size: 17px;
        font-family: 'Lora', serif !important;
        color: #000;
        font-weight: 200;
        line-height: 30px;
    }

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

    .team-details-top__content-info1 h5 {
        font-size: 20px;
        background: linear-gradient(175deg, #ffc7aa, #ffffff);
        border-radius: 7px;
        display: inline;
        box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
        padding: 10px;
        font-family: 'Lora', serif !important;
        border-left: 2px solid #ad7b00;
    }

    .list-set {
        background: linear-gradient(1deg, #fdfafa, #ffe2d4);
        border-right: 3px solid #af2765;
        border-style: ridge;
    }

    .services-details-text4 h2 {
           font-weight: 700;
    font-size: 20px;
    /* font-family: 'Lora', serif !important; */
    margin-bottom: 10px;
    color: #9927a2;

    }

    p.sy-txt {
        font-size: 20px;
        font-family: 'Lora', serif !important;
        margin-bottom: 10px;
        color: #9927a2 !important;
    }

    .prp-para {
        padding: 20px;
    }

    .prp-para {
        color: #000;
    }

    .para-2 {
        padding: 20px;
    }

    .para-2 {
        padding: 20px;
        color: #000;
    }

    .set-color a {
        background: #f9b6d0;
    }

    .bene-txt {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .bene-txt1 {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    /* .sidebar__category-list.active .list {
    background: #075f33;
} */

    .sidebar__category-list .list.active a {
        background: linear-gradient(45deg, #ff9595, #ffffff47);
        color: #7b047c;
        border-left: 3px solid #e8c26c;
    }

    /* #main-content {
    width: 50%;
    float: left;
} */

    .treatment--title h2 {
        font-size: 35px;
        line-height: 1.2em;
        font-weight: 200;
        /* margin-bottom: 20px; */
        color: #99219a;
        padding: 32px;
        text-shadow: 1px 0px #161616
    }

    .p-20 {
        padding: 0px 10px 10px 19px;
        margin-top: -13px;
    }

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

    .m-15 {
        margin: 15px;
    }

    .carousel-inner img {
        border-bottom: 2px solid #976eb06b;
    }

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

    .ab-area {
        background: #ffddea2e;
        padding: 40px 50px;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        border: 1px solid #a625902e;
        /* border-top: 5px solid #e5c46a;
        border-right: 5px solid #e59bb7; */
    }

    .vision-sec h3 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .vision-sec p {
        font-size: 15px;
        font-weight: 500;
        line-height: 22px;
    }

    .vision-sec {
        /*background: aliceblue; */
        /* height: 100%; */
        padding: 0px 5px;
        justify-content: center;
        text-align: center;
        /* border-radius: 5px; */
        /* box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px; */
        /* border: 1px solid #6c50a161; */
        /* height: 267px; */
        width: 300px;
    }

    .vision-sec img {
        border-radius: 50%;
        background: #ffff;
        border: 1px solid #ffd1ef;
        padding: 6px;
        box-shadow: rgb(50 50 93 / 25%) 0px 30px 60px -12px, rgb(239 94 190) 0px 18px 36px -18px;
        margin-bottom: 15px;
        width: 85px;
    }

    .v-sec {
        margin-bottom: 50px;
        padding-top: 30px;
    }

    .blog-one__single-img .date-box .degree {
        font-size: 16px;
        font-weight: 400;
        color: #ffafcd;
    }

    i.fas.fa-angle-double-right {
        font-size: 18px;
        margin-left: 8px;
        color: #002359;
    }

    /* .pricing-plan-one__single-inner .table-footer a {
    color: #fff;
    : hover .ic
} */
    /*--------------------------------------------------------------
# End Css 
--------------------------------------------------------------*/

    .pricing-plan-one__single-inner .table-footer a:hover i {
        color: #fff;
    }

    .sec-title .sub-title .text span.title-head {
        position: relative;
        display: inline-block;
        color: #90119e;
        font-size: 33px;
        /* line-height: 58px; */
        font-weight: 600;
        text-transform: capitalize;
        /* letter-spacing: 2px; */
        text-shadow: 1px 1px #002359;
        margin-top: 10px;
    }

    .banefits-one__tab-box .tab-buttons li.tab-btn.one {
        position: relative;
        float: left;
        max-width: 358px;
        width: 100%;
        text-align: center;
    }

    .banefits-one.nn {
        background: #eb69a414;
    }

    .tabs-content__img.imgg {
        position: relative;
        display: block;
        /* background: #fef3f8; */
        border-bottom: none;
        /* box-shadow: 2px 3.464px 18px 0px rgb(227 222 222); */
        overflow: hidden;
        /* padding: 41px 0px 42px; */
        border-radius: 11px;
        z-index: 1;
    }

    .inner.two {
        border-radius: 0px;
        box-shadow: none;
        border: 1px solid bisque;
        padding: 2px;
    }

    .services-details-text4.cos-tret {
        margin-top: 34px;
    }

    .text-box a:hover b {
        color: #d56c3c;
    }

    .text-box:hover .knw-btn {
        color: #d56c3c;
    }

    .txtt-s {
        color: #7e207c;
    }

    .services-details-text4 .content-box p.cons2 {
        font-size: 20px;
        font-weight: 600;
        color: #002258;
    }

    .pricing-plan-one__single-img.gy {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0 auto;
        border-radius: 0px;
        overflow: hidden;
        z-index: 5;
        border-bottom: 0;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top: 0;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        background: #fff;
        border: 1px solid #60042745;
    }

    .table-footer.bttn {
        position: relative;
        display: block;
        margin-top: 0px;
    }

    .pricing-plan-one__single-inner .table-header h2.txtt {
        position: relative;
        color: #4a065d;
        font-size: 18px;
        line-height: 60px;
        font-weight: 500;
    }

    .pricing-plan-one__single-inner .table-header.gy-area {
        position: relative;
        display: block;
        /* background: var(--thm-base); */
        /* padding: 5px 0px 5px; */
        border-radius: 5px;
        margin: 0 auto;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

    .pricing-plan-one__single-inner.gy-area1 {
        position: relative;
        display: block;
        background: #ffffff;
        border: 1px solid #e7dddd;
        padding: 100px 13px 20px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 1;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        border-radius: 2px;
        height: 251px;
        height: 100%;
    }

    .pricing-plan-one__single.gyar {
        position: relative;
        display: block;
        margin-bottom: 150px;
        padding-top: 29px;
    }

    .table-footer.bttn.bttn-gy {
        position: relative;
        display: block;
        margin-top: -13px;
    }

    .pricing-plan-one__single-inner .table-footer a.btn-link {
        position: relative;
        display: inline-block;
        color: #4a065d;
        font-size: 16px;
        line-height: 10px;
        font-weight: 500;
        text-transform: capitalize;
        background: #fff;
        border-radius: 46px;
        padding: 1px 36px 5px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        z-index: 1;
        border: none;
        text-decoration: none;
    }

    .pricing-plan-one__single-inner .table-footer a.btn-link:hover {
        color: #002359;
        background: #fff;
    }

    .pricing-plan-one__single-inner .table-footer a.btn-link:before {
        background: #fff;
    }

    .pricing-plan-one__single-inner .table-footer a:hover .ic.cc {
        color: #4a065d;
    }

    .table-footer.bttn-gy {
        position: relative;
        display: block;
        margin-top: 0px;
        padding-bottom: 15px;
    }

    .pricing-plan-one__single-img img.gy-img {
        width: 100%;
        transition: .5s ease;
        transform: scale(1.05);
        border-bottom: 2px solid #0a3576;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .btn--read {
        padding: 10px 30px;
        background: aliceblue;
        width: 30%;
        border-radius: 5px;
        font-size: 17px;
        font-weight: 600;
        color: #000;
        background: #ffe2e2;
    }

    .deg-para {
        font-size: 16px;
        text-align: justify;
        font-weight: 400;
        padding-bottom: 0px;
    }

    .degree-tit {
        font-size: 24px;
        font-weight: 600;
        padding-bottom: 10px;
        color: #c1228b;
    }

    .degree-title {
        font-size: 35px;
        font-weight: 500;
        padding-bottom: 8px;
        color: #640672;
    }

    .ex-area {
        padding: 30px 50px;
        /* box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px, rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 16px 32px, rgb(0 0 0 / 7%) 0px 32px 64px; */
        border: 2px solid #ffe2e2;
        height: 362px;
        text-align: center;
        margin-top: 20px;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    }

    .ex--area {
        display: inline-block;
        /* padding-top: 50px; */
        padding-bottom: 8px;
    }

    .vision-sec.second {
        padding-right: 56px;
    }

    .vision-sec.last {
        padding-left: 56px;
    }

    .ex--area img {
        border: 2px solid #f3f1ff;
        border-radius: 3px;
        padding: 2px;
    }

    .ex-area1 {
        padding: 30px 50px;
        /* box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px, rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 16px 32px, rgb(0 0 0 / 7%) 0px 32px 64px; */
        text-align: right;
        border: 2px solid #ffe2e2;
        height: 362px;
        margin-top: 30px;
        text-align: center;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    }

    .ex--area.lasst {
        margin-top: 65px;
    }

    .vision--img {
        display: block;
    }

    .mobile-view {
        display: none;
    }

    .desctop-view {
        display: block;
    }

    .ex--area .img1 {
        border-left: 10px solid #edd1d3;
        border-bottom: 10px solid #edd1d3;
        margin-top: 20px;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    }

    .ex--area .img2 {
        border-right: 10px solid #edd1d3;
        border-bottom: 10px solid #edd1d3;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    }

    .duar {
        border-left: 10px solid #ad8eab;
        border-bottom: 10px solid #a16d81;
        margin-bottom: 20px;
    }

    .duar1 {
        border-right: 10px solid #ad8eab;
        border-bottom: 10px solid #a16d81;
    }

    .pricing-plan-one__single-img:hover .aa {
        position: absolute;
        top: 82px;
        left: 29px;
        width: 360px;
        height: 202px;
        border: 2px solid #fff;
    }

    .aa {
        position: absolute;
        top: 94px;
        left: 31px;
    }

    .aaa {
        position: absolute;
        top: 81px;
        left: 15px;
        width: 307px;
        height: 288px;
        text-align: center;
        font-size: 26px;
        color: #ffffff;
        font-weight: 700;
    }

    .servicess h1 {
        font-size: 30px;
        font-weight: 500;
        text-align: center;
        padding-top: 10px;
    }

    .serv-img {
        /*min-width: 689px; */
        /* transition-property: all; */
        /* height: 410px; */
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .servi-area {
        padding-bottom: 50px;
    }

    .servicess {
        text-align: center;
        Padding-top: 80px;
    }

    .servicess img {
        width: 70px;
    }

    .mobile-serv {
        display: none;
    }

    .desktop-serv {
        display: block;
    }

    .btn--read:hover {
        color: #890d77;
    }

    .srvbtn {
        display: none;
    }

    .servicess p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .servicess:hover a.srvbtn {
        display: inline-block;
        width: 25%;
        padding: 0px;
        /* background-color: #704461; */
        color: #d7488a;
        border: double;
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
        text-align: center;
        border-radius: 48px;
    }

    .toggle-class {
        flex-shrink: 0;
        width: auto !important;
        max-width: 100% !important;
        padding-right: 20px !important;
        padding-left: 20px !important;
        margin-top: 0px;
    }

    .stick-head {
        text-align: center;
        background: #fff1e85c;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        margin-top: 4px;
    }

    .servv-txt {
        position: absolute;
        top: 125px;
        /* left: 7px; */
        width: 577px;
        height: 55px;
        text-align: center;
        font-size: 35px;
        color: #ffffff;
        font-weight: 500;
        background: #2e201947;
        padding: 14px 5px;
        /* padding-right: 44px; */
        padding-left: 10px;
        border: 1px solid #ffffed7d;
        border-top-right-radius: 21px;
        /* border-bottom-right-radius: 21px; */
        border-bottom-left-radius: 20px;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
        line-height: 21px;
        text-shadow: 1px 1px #100e0e;
    }

    .s--img img {
        margin-top: 10px;
        background-size: cover;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        border: double;
        color: #8f255c7a;
        padding: 5px;
    }

    .s--txt h1 {
        margin-top: 18px;
        /* text-align: center; */
       /*padding-left: 20px;*/
   font-size: 23px;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    }

    .inner-txt p {
        font-size: 18px;
        font-weight: 600;
        line-height: 41px;
    }

    .inner-txt {
        margin-top: 5px;
        padding-left: 36px;
    }

    i.fas.fa-angle-right.i2 {
        margin-right: 12px;
        font-size: 18px;
        color: #8f255c;
        background: #ebbbb16e;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        line-height: 18px;
        padding-left: 5px;
        border: 1px solid #8f255c33;
    }

    .inner-txt p:hover {
        color: #97245f;
    }

    .pricing-plan-one.tt {
        position: relative;
        display: block;
        background: #ffffff;
        padding: 2px 0px 65px;
        z-index: 1;
    }

    .srea {
        display: flex;
        /* text-align: center; */
        justify-content: center;
    }

    .ttx {
        font-size: 16px;
        font-family: 'Mulish', sans-serif;
        font-weight: 400;
        text-align: left;
    }

    .knw-btn {
        font-size: 18px;
        color: #831780;
        font-weight: 600;
        margin-top: 10px;
    }

    .services-details-text4.content-box1 {
        position: relative;
        display: inline-flex;
        flex: 1;
        /* margin-left: 30px; */
    }

    .services-details-text4.content-box1 ul li {
        position: relative;
        display: inline-flex;
        padding-left: 27px;
        margin-bottom: 10px;
        height: 250px;
    }

    .services-details-text4.content-box1 p.cons2 {
        font-size: 20px;
        font-weight: 600;
        color: #002258;
    }

    .services-details-text4 .content-box1 ul li .icon-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 27px;
        left: -27px;
        width: 20px;
        height: 20px;
        background: #7e207c;
        border-radius: 50%;
    }

    .services-details-text4 .content-box1 ul li .icon-box span::before {
        position: relative;
        display: inline-block;
        color: #ffffff;
        font-size: 14px;
        margin-top: 0px;
    }

    .services-details-text4 .content-box1 p.cons2 {
        font-size: 20px;
        font-weight: 600;
        color: #002258;
    }

    .services-details-text4 .content-box1 ul li {
        position: relative;
        display: block;
        padding-left: 27px;
        margin-bottom: 10px;
        height: 250px;
    }

    /* .inner.two::after {
        content: "";
        position: absolute;
        right: 0;
        z-index: 100;
        top: 0;
        width: 3px;
        height: 50%;
        background: #000;
    }
    
    .inner.two::after {
        content: "";
        position: absolute;
        top: 0;
        z-index: 100;
        right: 0;
        width: 3px;
        height: 50%;
        background: #000;
    } */

    .main-menu .main-menu__list>li>ul.mega-menu {
        min-width:979px;
        left: -185px;
        padding-left: 10px;
        /* background: linear-gradient(181deg, #ef82b9, #ef86ba); */
        /* box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px; */
        display: table;
    }

    .logo-box-one.ind3 {
        padding: 10px 0px;
    }

    .main-menu .main-menu__list>li+li.dropdown.first-drop {
        margin-left: 22px;
    }

    .contact-page .title {
        text-align: center;
        margin-bottom: 50px;
    }

    .banefits-one__tab-box .tab-buttons li.tab-btn.one.new-serv {
        position: relative;
        float: left;
        max-width: 358px;
        width: 16%;
        text-align: center;
    }

    .fa-solid,
    .fas {
        color: #af3571;
    }

    .social-icon i {
        color: #e38f67;
        font-size: 25px;
        display: inline-block;
        padding-top: 10px;
        margin-left: 16px;
    }

    .s--txt {
        margin-top: 10px;
        border: double;
        color: #8f255c7a;
        /* padding: 104px 0px 0px; */
        /* min-height: 623px; */
        /* padding-left: 100px; */
        display: block;
    }

    /* .banefits-one__tab-box .tab-buttons .tab-btn.active-btn span
    .banefits-one__tab-box .tab-buttons li.tab-btn.one.new-serv */

    .slider-1 {
        display: block;
    }

    .sliderr2 {
        display: none;
    }

    .soc-icon {
        display: inline-flex;
        padding-right: 60px;
        float: right;
        padding-top: 15px;
    }

    .headre-icons a {
        font-size: 20px;
        font-weight: 500;
        color: #af3470;
        padding-left: 87px;
    }

    .headref {
        font-size: 20px;
        font-weight: 500;
        color: #af3470;
        padding-left: 20px;
    }

    .headref a {
        font-size: 25px;
        font-weight: 500;
        color: #af3470;
        padding-left: 0px;
    }

    /*.aes-txt {*/
    /*    display: none;*/
    /*}*/

    .aes-txt p {}

    .pricing-plan-one__single .aes-txt {
        display: block;
        position: absolute;
        top: 200px;
        text-align: center;
        left: 0;
        right: 0;
        padding: 20px 50px;
        background: #2e201947;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    }

    .pricing-plan-one__single .aes-txt p {
        display: block;
        font-size: 25px;
        font-weight: 600;
        color: white;
        text-shadow: 1px 1px #100e0e;
        background: #ffd4be47;
        padding: 20px 20px;
        box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px;
        border: 1px solid #ffffed7d;

    }

    
    .headre-icons i {
        color: #b93470;
        padding-right: 10px;
        font-size: 25px;
    }

    .headref i {
        color: #b93470;
        /* padding-right: 10px; */
        font-size: 20px;
    }

    .main-header-two__right .contact-box .text p:hover {
        color: #dbb00c;
    }

    .headre-icons a:hover {
        color: #b38f06;
    }

    .headref i:hover {
        color:#dbb00c;
    }

    span.head-mail1{
        display: inline-block;
        color: #b93470;
    padding-right: 10px;
    font-size: 20px;
    }
    li.head-mail2{
        display: inline-block;
        font-size: 19px;
        font-weight: 500;
        color: #b93470;
    
    }
    span.head-mail1 .avi{
        color: #b93470!important;

    }
    .email-sec{
        padding-top: 26px;
    display: inline-block;
    padding-left: 20px;
    }
    li.head-mail2 a {       
        color: #b93470;
    }
    li.head-mail2 a:hover {
        color: #dbb00c;
    }
    .pt-100 {
        padding-top: 4.25rem;
    }
    .pb-75 {
        padding-bottom: 3.6875rem;
    }
    .container-fluid.abtt-area {
        padding-top: 46px;
        padding-bottom: 46px;
        background: #ffe5d8;
    }
    h1.about-text {
        font-size: 38px;
        color:var(--thm-black);
        font-family: 'Roboto', sans-serif;
        letter-spacing: 1px;
        text-align: center;
    }
    .single-gallery-item {
        margin-bottom: 30px;
        border-radius: 5px;
        overflow: hidden;
        cursor: -webkit-zoom-in;
        cursor: zoom-in;
        position: relative;
    }
    
    .single-gallery-item h4 {
        font-size: 20px;
        line-height: 28px;
        padding: 8px 15px;
        background-color: #c1228b;
        color: #fff;
    }
    
    ul.mega-menu.mobile{
        min-width: 763px!important;
    }

.fac-iframe{
    margin-top: 0px;
}

/*FAQ START*/



.about-text1 {
  /*margin: 50px 0 30px;*/
  text-align: center;
  color: var(--accent-color);
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
    color: var(--thm-black);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    text-align: center;
} 

        .faq-container {
            max-width: 1111px;
            margin: 50px auto;
            border-radius: 10px;
            background-color: #fff;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        }

        .faq {
            box-sizing: border-box;
            background: transparent;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .faq:not(:first-child) {
            border-top: 1px solid #e6e6e6;
        }

        .faq-title {
            margin: 0 35px 0 0;
            font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;

        }

        .faq-text {
            margin: 30px 0 0;
            display: none;
            line-height: 1.5rem;
        }

        .faq.active {
            background-color: #f8f8f8;
            box-shadow: inset 4px 0px 0px 0px var(--accent-color);
        }

        .faq.active .faq-title {
            color: var(--accent-color);
        }

        .faq.active .faq-text {
            display: block;
        }

        .faq-toggle {
            background-color: transparent;
            border: 1px solid #e6e6e6;
            color: inherit;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            padding-top: 3px;
            position: absolute;
            top: 30px;
            right: 30px;
            height: 30px;
            width: 30px;
            transition: 0.3s ease;
        }

        .faq-toggle:focus {
            outline: none;
        }

        .faq.active .faq-toggle {
            transform: rotate(180deg);
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: #fff;
        }

/*FAQ END*/
.v-sec{
    background-image:url(/resources/assets/css/../images/bg-view.png);
    background-repeat:no-repeat; 
    width: 100%;
     background-position:center; 
    background-size:cover;
}
a.btn-appoint {
 
    border: 1px solid #e7bcbc;
    background: #f9dddd;
        padding: 5px 8px;
        border-radius: 60px;
        font-size: 16px!important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        color:#222122!important;
    
}

.services-details__sidebar-single .title-box h1 {
    color: #99219a;
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}
h2.about-text-1 {
        font-size: 23px;
    color: var(--thm-black);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
}




/*for contact form*/



form {
  font-family: 'Cabin', sans-serif;
  padding: 0;
  width: 90%;
  border-radius: 15px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.feedback-input {
  color: #000;
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  font-size: 18px;
  border-radius: 0;
  margin-right: 0;
  line-height: 22px;
  background-color: none;
  padding: 13px 13px 13px 13px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #22A7F0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.feedback-input:focus {
  box-shadow: 0;
  color: #3498db;
  transition: .4s ease;
  outline: none;
  border-bottom: 2px solid black;
  padding: 13px 13px 13px 13px;
}

.focused {
  color: #30aed6;
  border: #30aed6 solid 3px;
}

textarea {
  width: 100%;
  height: 150px;
  line-height: 150%;
  resize: vertical;
}

#button-blue {
    font-family: 'Cabin', sans-serif;
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: #e236a8;
    color: white;
    font-size: 19px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -4px;
    font-weight: 500;
    transition: .3s ease;
}

#button-blue:hover {
  background-color: rgba(0, 0, 0, 0);
  color: black;
  background: #22A7F0;
}

.submit:hover {
  color: #22A7F0;
}






/* appointment form css */
.appointment-area{
    margin-top: 60px;
    margin-bottom: 60px;
}
.appointment-btn {
  background: #003f74;
  padding: 14px 14px;
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 500;
  border-radius: unset;
}
.appointment-btn:hover {
  color: #CD362C;
}
.appointment-form {
    background-color: #ffe6ef;
    padding: 40px 100px;
    border-radius: 52px;
}

.appointment-form h2 {
    font-size: 30px;
    line-height: 46px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: .1em;
    color: #de0093;
    font-weight: 600;
    font-family: poppins !important;
}
.appointment-form .default-btn {
  width: 100%;
  display: block;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #e236a8;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #fbfbfb;
    margin-top: 11px;
    box-shadow: 0px 0px 13px -3px gray;
}
.appointment-form input {
    border-radius: 10px;
    padding: 13px;
    font-size: 16px;
    margin: 7px;
}
.appointment-form textarea{          
  border-radius: 10px;    
  font-size: 16px;          
}               
.default-btn:hover {
  background-color: #dceef7;
  color: #235d7c;
  border: 1px solid #003f74;
}
.head_h1 {
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 14px;
}


.highlight li{
    color:#9a1f99;
}



/*testi*/

.testim {
		width: 100%;
		/*position: absolute;*/
		/*top: 50%;*/
		/*-webkit-transform: translatey(-50%);*/
		/*-moz-transform: translatey(-50%);*/
		/*-ms-transform: translatey(-50%);*/
		/*-o-transform: translatey(-50%);*/
		/*transform: translatey(-50%);*/
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #333;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
		cursor: pointer;
}

.testim .arrow:hover {
    color: green;
}
    

.testim .arrow.left {
    left: 70px;
}

.testim .arrow.right {
    right: 70px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
		height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid green;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
		position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: green;
    border-color: green;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
		overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: green;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #333;
    width: 70%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}
	
	.testim .cont div p {
		line-height: 25px;
	}

}

.testi-but {
    background-color: #bf2a8f;
    padding: 10px;
    align-items: center;
    color: white;
    font-size: 14px;
    font-family: 'Poppins' ! IMPORTANT;
    border-radius: 12px;
    
}

/*image gallery carosual Home Page*/

.magnific-img img {
    width: 100%;
    height: auto;
}
.mfp-bottom-bar,*{
   font-family: 'Abel', sans-serif;
}
.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
            .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        .gallery img:hover {
            transform: scale(1.05);
        }
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75); 
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
    
            .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

.gallery img {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

        .gallery img:hover {
            transform: scale(1.05);
        }
    


/* https://www.yuvaniaestheticclinic.com/resources/assets/css/responsive.css */
@media only screen and (min-width: 1200px) and (max-width: 1750px) {
    /*Cta One*/
    .cta-one__bg {
        right: 0px;
    }
    .cta-one__inner .text-box h2 {
        font-size: 45px;
    }
    /*Portfolio One*/
    .portfolio-one__single-img .inner .content-box {
        padding: 15px 10px 15px;
        width: 260px;
    }
    .portfolio-one__single-img .inner .btn-box {
        left: 242px;
    }
    .portfolio-one__single-img .inner .btn-box a {
        width: 50px;
        height: 50px;
    }
    .portfolio-one__single-img .inner .btn-box a span::before {
        font-size: 18px;
    }
    .portfolio-one__single-img .inner .content-box h2 {
        font-size: 21px;
        line-height: 32px;
    }
    /*Banefits One*/
    .banefits-one::before {
        left: 0px;
    }
    /*Brand Two*/
    .brand-two::before {
        left: 0px;
    }
    .brand-two::before {
        border-bottom-left-radius: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    /*Testimonials One*/
    .testimonials-one__left {
        margin-left: 0px
    }
    .testimonials-one::before {
        right: 500px;
    }
    .testimonials-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
        display: none;
    }
    /*Main Slider One*/
    .main-slider-one__img img {
        opacity: 0.5;
    }
    /*Contact Two*/
    .contact-one--two__img .inner img {
        opacity: 0.5;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1550px) {
    /*Main Slider One*/
    .main-slider-one__content {
        padding-left: 165px;
    }
    /*Main Slider Three*/
    .main-slider-three .shape9 {
        display: none;
    }
    .main-slider-three .shape10 {
        display: none;
    }
    .main-slider-three__img img {
        opacity: 0.5;
    }
    .main-slider-three .shape8 {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    /*About One*/
    .about-one__shape1 {
        display: none;
    }
    .about-one__content {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 10px;
    }
    .about-one__content .sec-title h2 {
        font-size: 26px;
        padding-top: 5px;
    }
    /*Main Header One*/
    .header-one-social-links {
        display: none;
    }
    .header-search-box {
        display: none;
    }
    /*Main Header Two*/
    .main-header-three__right .contact-box {
        display: none;
    }
    .main-header-three__right .header-search-box {
        display: none;
    }
    /*Contact One*/
    .contact-one__form {
        margin-left: 0px;
    }
    .contact-one__form-btn .thm-btn {
        padding: 0px 35px 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
    /*About Two*/
    .about-two__img {
        margin-left: 0px;
        margin-right: 0px;
    }
}


/*Medium screen*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .auto-container {
        padding: 0px 30px;
    }
    /*Main Header One*/
    .header-search-box {
        display: none;
    }
    .header-one-social-links {
        display: none;
    }
    .main-header-one__right {
        display: none;
    }
    .main-header-one__inner {
        padding: 30px 0px 30px;
        background: rgba(0, 0, 0, 0.1);
    }
    .main-menu .mobile-nav__toggler {
        color: #ffffff;
    }
    .main-header-one .main-menu-box {
        line-height: 0;
    }
    /*Main Header Two*/
    .main-header-two__left .logo-box-two::before {
        display: none;
    }
    .main-header-two__right {
        display: none;
    }
    .main-header-two .main-menu-box {
        line-height: 0;
    }
    .main-header-two__inner {
        padding: 30px 0px 30px;
    }
    /*Main Header Three*/
    .main-header-three__right {
        display: none;
    }
    .logo-box-three::before {
        display: none;
    }
    .main-header-three__inner {
        background: rgba(0, 0, 0, 0.1);
        padding: 30px 0px 30px;
    }
    .main-header-three .main-menu__wrapper-inner {
        background: transparent;
    }
    .main-header-three {
        top: 0px;
    }
    .main-header-three .main-menu-box {
        line-height: 0;
    }
    .main-header-three .logo-box-three {
        padding-left: 0px;
        padding-right: 0px;
    }
    /*Main Slider One*/
    .main-slider-one__content {
        padding-left: 150px;
    }
    .main-slider-one__img img {
        opacity: 0.5;
    }
    .main-slider-one__img {
        top: -45px;
        right: -120px;
    }
    /*Main Slider Three*/
    .main-slider-three .shape9 {
        display: none;
    }
    .main-slider-three .shape10 {
        display: none;
    }
    .main-slider-three__img img {
        opacity: 0.5;
    }
    .main-slider-three .shape8 {
        display: none;
    }
    .main-slider-three .shape2 {
        display: none;
    }
    /*Page Header*/
    .page-header__img img {
        opacity: 0.5;
    }
    /*About One*/
    .about-one__img {
        max-width: 600px;
        width: 100%;
    }
    .about-one__content {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 170px;
    }
    .about-one__shape1 {
        display: none;
    }
    /*Cta One*/
    .cta-one__bg {
        right: 0px;
    }
    .cta-one__inner .text-box h2 {
        font-size: 33px;
        line-height: 45px;
    }
    /* Features One*/
    .features-one__single.mb60 {
        margin-top: 0px;
    }
    /* Features One*/
    .counter-one__single {
        width: 50%;
    }
    /*Pricing Plan One*/
    .pricing-plan-one__single-inner {
        padding: 134px 30px 50px;
    }
    /*Testimonials One*/
    .testimonials-one {
        padding-bottom: 120px;
    }
    .testimonials-one__left {
        margin-left: 0px;
        max-width: 100%;
        width: 100%;
        padding: 120px 0px 60px;
    }
    .testimonials-one__form {
        position: relative;
    }
    .testimonials-one::before {
        right: 0px;
    }
    .testimonials-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
        right: -10px;
    }
    /*Blog One*/
    .blog-one__single__content h2 {
        font-size: 18px;
        line-height: 30px;
    }
    /*Footer One*/
    .footer-one__top-inner form ul li {
        width: 50%;
        margin-bottom: 10px;
    }
    .footer-one__top-inner form ul li .button-box .footer-one__top-btn {
        width: 100%;
    }
    .footer-one__top-inner {
        padding: 68px 100px 70px;
    }
    .footer-one__top-inner .shape6 {
        display: none;
    }
    .footer-widget__single-blog {
        margin-top: 60px;
    }
    .footer-widget__single-newsletter {
        margin-top: 60px;
    }
    /*About Two*/
    .about-two__img {
        margin-left: 0px;
        margin-right: 0px;
        max-width: 600px;
    }
    .about-two__bg {
        display: none;
    }
    .about-two__content {
        margin-left: 0px;
        margin-top: 90px;
    }
    /*Services Two*/
    .services-two .shape2 {
        display: none;
    }
    /*Banefits One*/
    .banefits-one::before {
        left: 0px;
    }
    .banefits-one__pattern {
        display: none;
    }
    .banefits-one__tab-box .tab-buttons .tab-btn {
        max-width: 310px;
    }
    .tabs-content__content-accordion {
        margin-left: 0px;
    }
    /*Pricing Plan Two*/
    .pricing-plan-two__single-inner {
        padding: 30px 20px 35px;
    }
    .pricing-plan-two__single {
        padding: 20px 15px 20px;
    }
    .pricing-plan-two__single-inner .table-header {
        padding: 15px 20px 17px;
    }
    .pricing-plan-two__single-inner .table-footer .thm-btn {
        padding: 0px 30px 0px;
    }
    .pricing-plan-two__single-inner .table-header h5 {
        font-size: 15px;
    }
    /*Brand Two*/
    .brand-two::before {
        left: 0px;
    }
    .brand-two::before {
        border-bottom-left-radius: 0px;
    }
    /*Poroduct One*/
    .poroduct-one__single-content .left-content h3 {
        font-size: 18px;
    }
    .poroduct-one__single-img .inner .overlay-box {
        left: 50px;
        right: 50px;
    }
    /*About Three*/
    .about-three__content .sec-title h2 {
        font-size: 40px;
    }
    /*Services Three*/
    .services-three__single-inner .content-box h2 {
        font-size: 22px;
    }
    .services-three__single {
        padding: 65px 40px 55px;
    }
    /*Work Process One*/
    .work-process-one__single .content-box h3 {
        font-size: 18px;
    }
    /*Team Two*/
    .team-two {
        padding: 120px 0px 90px;
    }
    .team-two__single {
        max-width: 350px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Contact One*/
    .contact-one__form {
        margin-left: 0px;
    }
    .contact-one::before {
        right: 0;
    }
    .contact-one__bg {
        display: none;
    }
    /*Pricing Plan Two*/
    .pricing-plan-two {
        padding: 120px 0px 90px;
    }
    /*Contact Two*/
    .contact-one--two__img {
        display: none;
    }
    .contact-one--two .contact-one__form {
        margin-left: 0px;
        max-width: none;
    }
    .contact-one--two {
        padding: 0px 0px 100px;
    }
    /*Services Details*/
    .services-details-text4 {
        display: block;
    }
    .services-details-text4 .content-box {
        margin-left: 0px;
        margin-top: 40px;
    }
    .services-details-text6-single {
        margin-bottom: 20px;
    }
    /*Job One*/
    .job-one__bg {
        position: relative;
        left: 0%;
        min-height: 600px;
    }
    .job-one__content {
        margin-top: 50px;
    }
    .job-one {
        padding: 0px 0px 120px;
    }
    /*Banefits Two*/
    .banefits-two--team .banefits-two__single {
        padding: 0px 30px 13px;
    }
    .banefits-two--team {
        padding: 120px 0px 70px;
    }
    /*Team Details*/
    .team-details-top__client-info {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 50px;
    }
    .team-details__middle__bg {
        position: relative;
        top: 0px;
        left: 0;
        bottom: auto;
        min-height: 500px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .team-details__middle {
        padding: 0px 0px 120px;
    }
    .team-details__middle-content {
        margin-top: 50px;
    }
    /*Shop Page*/
    .shop-page__sidebar {
        max-width: 600px;
        width: 100%;
        margin: 70px auto 0px;
    }
    /*Shop Details */
    .shop-details__img-box {
        margin-right: 0px;
        max-width: 600px;
        width: 100%;
    }
    .shop-details__content {
        margin-top: 190px;
    }
    .single-review-box .text-box h3 {
        font-size: 18px;
    }
    /*Contact Page*/
    .contact-page__content .title h2 {
        font-size: 40px;
    }
    /*Blog Details*/
    .blog-details .blog-one__single__content .meta-box {
        padding: 25px 15px 25px;
    }
    .blog-details .blog-one__single__content .meta-box li {
        margin-right: 10px;
    }
    .blog-details__content .blog-one__single-img .date-box {
        right: 10px;
    }
    .blog-details__bottom {
        display: block;
    }
    .blog-details__social-list {
        margin-top: 25px;
    }
    /*login register*/
    .login-register-area .form .social-icon {
        float: left;
        margin-right: 0px;
    }
    .login-register-area .form .social-icon .login-with {
        position: relative;
        left: 0px;
        top: 0px;
        margin: 0;
    }
    .login-register-area .form .right {
        margin-left: 0px;
    }
}


/*Tablet Layout*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* #main-content {
        width: 100%;
        float: left;
        margin: 0 auto;
    } */
    #main-content {
        width: 100%;
        float: left;
        margin: 0 auto;
    }
    .auto-container {
        padding: 0px 30px;
    }
    /*Main Header One*/
    .header-search-box {
        display: none;
    }
    .header-one-social-links {
        display: none;
    }
    .main-header-one__right {
        display: none;
    }
    .main-header-one__inner {
        padding: 30px 0px 30px;
        background: rgba(0, 0, 0, 0.1);
    }
    .main-menu .mobile-nav__toggler {
        color: #ffffff;
    }
    .main-header-one .main-menu-box {
        line-height: 0;
    }
    /*Main Header Two*/
    .main-header-two__left .logo-box-two::before {
        display: none;
    }
    .main-header-two__right {
        display: none;
    }
    .main-header-two .main-menu-box {
        line-height: 0;
    }
    .main-header-two__inner {
        padding: 30px 0px 30px;
    }
    /*Main Header Three*/
    .main-header-three__right {
        display: none;
    }
    .logo-box-three::before {
        display: none;
    }
    .main-header-three__inner {
        background: rgba(0, 0, 0, 0.1);
        padding: 30px 0px 30px;
    }
    .main-header-three .main-menu__wrapper-inner {
        background: transparent;
    }
    .main-header-three {
        top: 0px;
    }
    .main-header-three .main-menu-box {
        line-height: 0;
    }
    .main-header-three .logo-box-three {
        padding-left: 0px;
        padding-right: 0px;
    }
    /*Main Slider One*/
    .main-slider-one__img {
        display: none;
    }
    .main-slider-one .shape5 {
        display: none;
    }
    .main-slider-one__content {
        padding-left: 140px;
    }
    .main-slider-one__content .title h2 {
        font-size: 48px;
    }
    .main-slider-one__content .text {
        margin-top: 16px;
    }
    /*Main Slider Three*/
    .main-slider-three__img {
        display: none;
    }
    .main-slider-three .shape2 {
        display: none;
    }
    .main-slider-three .shape6 {
        display: none;
    }
    .main-slider-three .shape9 {
        display: none;
    }
    .main-slider-three .shape10 {
        display: none;
    }
    .main-slider-two .shape1 {
        display: none;
    }
    .main-slider-two .shape2 {
        display: none;
    }
    .main-slider-two .shape5 {
        display: none;
    }
    .main-slider-two .shape4 {
        display: none;
    }
    .main-slider-two .shape3 {
        display: none;
    }
    /*Page Header*/
    .page-header__img img {
        opacity: 0.4;
    }
    .page-header__inner h2 {
        font-size: 60px;
    }
    /*About One*/
    .about-one__img {
        max-width: 600px;
        width: 100%;
    }
    .about-one__content {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 170px;
    }
    .about-one__shape1 {
        display: none;
    }
    /*Cta One*/
    .cta-one__bg {
        right: 0px;
    }
    .cta-one__inner {
        display: block;
        text-align: center;
    }
    .cta-one__inner .text-box h2 {
        margin-bottom: 30px;
    }
    .cta-one__inner .text-box h2 br {
        display: none;
    }
    .cta-one__inner .btn-box {
        padding-right: 0px;
    }
    /* Features One*/
    .features-one__single.mb60 {
        margin-top: 0px;
    }
    /*Features Two*/
    .features-two__img {
        display: none;
    }
    .features-two__list li.style2 {
        float: none;
    }
    .features-two__list li {
        float: none;
        margin: 0 auto 31px;
    }
    /* Counter One*/
    .counter-one__single {
        width: 50%;
    }
    .counter-one__box {
        margin-left: 0px;
        margin-right: 0px;
    }
    /*Portfolio One*/
    .portfolio-one__single-img .inner .content-box {
        width: 250px;
    }
    .portfolio-one__single-img .inner .content-box h2 {
        font-size: 22px;
        line-height: 32px;
    }
    .portfolio-one__single-img .inner .btn-box {
        left: 250px;
    }
    /*Portfolio One*/
    .brand-one__box li {
        width: 50%;
    }
    .brand-one__box li:nth-child(2) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
    }
    .brand-one__box li:nth-child(4) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
        border-bottom: none;
    }
    .brand-one__box li:nth-child(3) {
        border-right: none;
    }
    /*Pricing Plan One*/
    .pricing-plan-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Slogan One*/
    .slogan-one__inner h2 br {
        display: none;
    }
    .slogan-one__inner h2 {
        font-size: 50px;
        line-height: 70px;
    }
    /*Testimonials One*/
    .testimonials-one {
        padding-bottom: 120px;
    }
    .testimonials-one__left {
        margin-left: 0px;
        max-width: 100%;
        width: 100%;
        padding: 120px 0px 60px;
    }
    .testimonials-one__form {
        position: relative;
    }
    .testimonials-one::before {
        right: 0px;
    }
    .testimonials-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
        right: -10px;
    }
    /*Blog One*/
    .blog-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Footer One*/
    .footer-one__top-inner form ul li {
        width: 50%;
        margin-bottom: 10px;
    }
    .footer-one__top-inner form ul li .button-box .footer-one__top-btn {
        width: 100%;
    }
    .footer-one__top-inner {
        padding: 68px 100px 70px;
    }
    .footer-one__top-inner .shape6 {
        display: none;
    }
    .footer-widget__single-blog {
        margin-top: 60px;
    }
    .footer-widget__single-newsletter {
        margin-top: 60px;
    }
    .footer-one__top-inner .title h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .footer .shape3 {
        display: none;
    }
    /*About Two*/
    .about-two__img {
        margin-left: 0px;
        margin-right: 0px;
        max-width: 600px;
    }
    .about-two__bg {
        display: none;
    }
    .about-two__content {
        margin-left: 0px;
        margin-top: 90px;
    }
    /*Services Two*/
    .services-two .shape2 {
        display: none;
    }
    .services-two__single {
        padding: 37px 25px 37px;
        padding-right: 25px;
    }
    .services-two__single .inner {
        padding-left: 120px;
    }
    /*Banefits One*/
    .banefits-one__pattern {
        display: none;
    }
    .banefits-one__tab-box .tab-buttons .tab-btn {
        max-width: 230px;
    }
    .banefits-one::before {
        left: 0px;
    }
    .tabs-content__img {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
    .tabs-content__content {
        margin-top: 40px;
    }
    .tabs-content__content-accordion {
        margin-left: 0px;
    }
    /*Testimonial Two*/
    .testimonial-two__content .shape1 {
        border-radius: 0%;
    }
    /*Pricing Plan Two*/
    .pricing-plan-two__single {
        max-width: 400px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Brand Two*/
    .brand-two::before {
        left: 0px;
    }
    .brand-two::before {
        border-bottom-left-radius: 0px;
    }
    /*Poroduct One*/
    .poroduct-one__top .sec-title h2 {
        font-size: 40px;
    }
    .poroduct-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*About Three*/
    .about-three__img {
        display: none;
    }
    .about-three__content {
        margin-right: 0px;
    }
    /*Services Three*/
    .services-three {
        padding: 420px 0 90px;
    }
    .services-three__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 90px;
    }
    /*Work Process One*/
    .work-process-one .shape1 {
        display: none;
    }
    .work-process-one__single.mt-100 {
        margin-top: 0px;
    }
    .work-process-one__single.mt-50 {
        margin-top: 0px;
    }
    /*Team Two*/
    .team-two {
        padding: 120px 0px 90px;
    }
    .team-two__single {
        max-width: 350px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Contact One*/
    .contact-one__form {
        margin-left: 0px;
    }
    .contact-one::before {
        right: 0;
    }
    .contact-one__bg {
        display: none;
    }
    /*Pricing Plan Two*/
    .pricing-plan-two {
        padding: 120px 0px 90px;
    }
    /*Contact Two*/
    .contact-one--two__img {
        display: none;
    }
    .contact-one--two .contact-one__form {
        margin-left: 0px;
        max-width: none;
    }
    .contact-one--two {
        padding: 0px 0px 100px;
    }
    /*Services Details*/
    .services-details-text6-single {
        margin-bottom: 20px;
    }
    .services-details__sidebar {
        margin-top: 50px;
    }
    /*Job One*/
    .job-one__bg {
        position: relative;
        left: 0%;
        min-height: 600px;
    }
    .job-one__content {
        margin-top: 50px;
    }
    .job-one {
        padding: 0px 0px 120px;
    }
    /*Banefits Two*/
    .banefits-two--team .banefits-two__single {
        padding: 0px 30px 13px;
    }
    .banefits-two--team {
        padding: 120px 0px 70px;
    }
    /*Team Details*/
    .team-details-top__client-info {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 50px;
    }
    .team-details-top__content-info-single {
        margin-bottom: 40px;
    }
    .team-details-top__content-btn {
        margin-top: 7px;
    }
    .team-details__middle__bg {
        position: relative;
        top: 0px;
        left: 0;
        bottom: auto;
        min-height: 500px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .team-details__middle {
        padding: 0px 0px 120px;
    }
    .team-details__middle-content {
        margin-top: 50px;
    }
    /*Appointment Page*/
    .appointment-page__form .title h2 {
        font-size: 45px;
    }
    /*Shop Page*/
    .shop-page__sidebar {
        max-width: 600px;
        width: 100%;
        margin: 70px auto 0px;
    }
    .shop-page__content .styled-pagination {
        text-align: center;
    }
    /*Shop Details */
    .shop-details__img-box {
        margin-right: 0px;
        max-width: 600px;
        width: 100%;
    }
    .shop-details__content {
        margin-top: 190px;
    }
    .single-review-box .text-box h3 {
        font-size: 18px;
    }
    .single-review-box-outer {
        margin-bottom: 30px;
    }
    .review-form {
        padding: 53px 40px 60px;
    }
    /*Contact Page*/
    .contact-page__content .title h2 {
        font-size: 40px;
    }
    .contact-page__content-single-inner .content-box p br {
        display: none;
    }
    /*Blog Page*/
    .blog-page .blog-one__single {
        max-width: none;
        width: 100%;
        margin: 0 auto 30px;
    }
    .sidebar {
        margin-top: 50px;
    }
    /*Blog Details*/
    .blog-details .blog-one__single {
        max-width: none;
    }
    /**cart area**/
    .cart-button-box .update-cart {
        float: none;
    }
    /**Checkout Area **/
    .checkout-area__sidebar {
        margin-left: 0px;
        margin-top: 50px;
    }
    /*login register*/
    .login-register-area .form .social-icon {
        position: relative;
        float: none;
        margin-right: 0px;
        margin-bottom: 40px;
    }
    .login-register-area .form .social-icon .login-with {
        position: relative;
        left: 0px;
        top: 0px;
        margin: 0;
    }
    .login-register-area .form .right {
        margin-left: 0px;
    }
}


/*Mobile Layout*/

@media only screen and (max-width: 767px) {
    a.btn-appoint {
        margin-top: 20px;
        padding: 5px 55px!important;
        text-align: center!important;
        border: 1px solid #996969;
    background: #eb897c;
    }
    .faq-toggle{
        top: 18px;
    right: 14px;
    }
    .faq {

        padding: 15px 15px;
    }
    .faq-title {

        font-size: 18px;
    }
    .faq.active .faq-text {
    display: block;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    /* font-size: 20px; */
    font-weight: 400;
    color: #383838;
}
    
    .about-text1 {
  /*margin: 50px 0 30px;*/

  font-family: 'Roboto', sans-serif;
  font-size: 25px;
    color: var(--thm-black);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    text-align: center;
} 
    .fac-iframe{
    margin-top: 40px;
}
    .footer-widget__single-about .social-link{
        margin-top: 10px;
    margin-left: 7px;
    }
    .pricing-plan-one__single .aes-txt {
    display: block;
    position: relative;
    top: 10px;
    text-align: center;
    left: 0;
    right: 0;
     padding: 0px 0px; 
    background: #996a5347;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}
    .pricing-plan-one__single .aes-txt p {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #360b0b;
    text-shadow: none;
    background:#fff0f0;
    padding: 20px 20px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px;
    border: 1px solid #ffffed7d;
}
    .scroll-to-top {
       
        bottom:60px;
        
    }
    .footer-one__bottom{
        padding: 9px 0px 57px;
    }
    .contact-page-google-map{
        padding:0px 0px 40px;
    }
    .contact-page{
        padding: 50px 0px 10px;
    }
    ul.mega-menu.mobile{
        min-width: auto!important;
    }
    .footer{
        padding: 35px 0px 35px;
    }
    .footer-widget__single .title h2 {
        font-size: 21px;
    }
    .footer-widget__single .title {
        margin-bottom: 10px;
        margin-top: 0px;
    }
    h1.about-text {
        font-size: 25px;
        color:var(--thm-black);
        font-family: 'Roboto', sans-serif;
        letter-spacing: 1px;
        text-align: center;
    }
    .container-fluid.abtt-area {
        padding-top: 35px;
        padding-bottom: 28px;
    }
    .inner-txt p {
        font-size: 16px;
        line-height: 36px;
    }
    .sec-servv{
        padding-left: calc(var(--bs-gutter-x)/ 2);
        padding-right: calc(var(--bs-gutter-x)/ 2); 
    }
    .pricing-plan-one__single:hover .aes-txt{
        display: none;
    }
    .pricing-plan-one__single:hover .aes-txt p{
        display: none;
    }
    .sliderr2{
        display: block;
            }
    .slider-1{
        display: none;
            }
    
    .team-details-top {
        padding: 50px 0px 100px;
    }
    .mobile-nav__content.main-menu__list li a.gal {
        padding-bottom: 15px;
    }
    .mobile-nav__content .main-menu__list>li>ul>li>a {
        font-size: 15px;
    }
    li.dropdown.first-drop.current {
        padding-bottom: 5px;
    }
    li.dropdown.first-drop {
        padding-bottom: 5px;
    }
    .set-color a {
        background: transparent;
    }
    .services-details-text4 .content-box1 ul li.non-sur {
        height: 483px;
    }
    .s--txt {
        padding-top: 0px;
        display: block;
        padding-bottom: 20px;
    }
    .banefits-one__tab-box .tab-buttons {
        display: block;
    }
    .main-header-two__left {
        padding: 5px 0px;
    }
    .mobile-nav__contact {
        display: none;
    }
    .title h2 {
        font-size: 30px;
    }
    .contact-page .title {
        margin-bottom: 30px;
    }
    header#navbar {
        position: relative!important;
    }
    .logo-box-one.ind3 {
        padding: 5px 0px;
    }
    .knw-btn {
        margin-top: 0px;
    }
    .services-details-text4.cos-tret {
        margin-top: 5px;
    }
    .pricing-plan-one {
        padding: 25px 0px 65px;
    }
    .sec-title {
        padding-bottom: 7px;
    }
    .s--txt h1 {
        margin-top: 30px;
        /* text-align: center; */
        /*padding-left: 45px;*/
    }
    .inner-txt {
        margin-top: 6px;
        padding-left: 42px;
    }
    .servv-txt {
        position: absolute;
    top: 66px;
    /* left: 2px; */
    width: 273px;
    height: 43px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    background: #321e1547;
    padding: 6px 0px;
    border: 1px solid #ffffed7d;
    border-top-right-radius: 15px;
    /* border-bottom-right-radius: 21px; */
    border-bottom-left-radius: 15px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    }
    .v-sec {
        margin-top: 50px;
        padding-top: 50px;
    }
    .servicess {
        Padding-top: 20px;
    }
    .servicess:hover a.srvbtn {
        display: inline-block;
        width: 40%;
        padding: 0px;
        /* background-color: #704461; */
        color: #704461;
        border: double;
        font-size: 18px;
        font-weight: 400;
        margin-top: 0px;
        text-align: center;
        border-radius: 48px;
    }
    .servicess {
        padding-bottom: 30px;
    }
    .servicess h1 {
        font-size: 25px;
    }
    .desktop-serv {
        display: none;
    }
    .mobile-serv {
        display: block;
    }
    .serv-img {
        min-width: auto;
        /* transition-property: all; */
        height: auto;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .pricing-plan-one__single-img:hover .aa {
        position: absolute;
        top: 67px;
        left: 15px;
        width: 304px;
        height: 174px;
        border: 2px solid #fff;
    }
    .aaa {
        position: absolute;
        top: 42px;
        left: 0px;
        width: 307px;
        height: 288px;
        text-align: center;
        font-size: 24px;
        color: #ffffff;
        font-weight: 600;
    }
    .blog-one {
        padding: 30px 0px 40px;
    }
    .degree-title {
        font-size: 25px;
        font-weight: 500;
        padding-bottom: 1px;
        color: #640672;
        text-align: center;
    }
    .degree-tit {
        font-size: 18px;
        font-weight: 600;
        padding-bottom: 10px;
        color: #c1228b;
        text-align: center;
    }
    .ex--area.lasst {
        margin-top: 33px;
    }
    .desctop-view {
        display: none;
    }
    .mobile-view {
        display: block;
        margin-top: 25px;
    }
    .ex-area1 {
        position: relative;
        top: 0;
        /* left: 413px; */
        /* bottom: 1px; */
        right: 0;
        width: 100%;
        background: #fff;
        padding: 20px 20px;
        box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px, rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 16px 32px, rgb(0 0 0 / 7%) 0px 32px 64px;
        text-align: left;
        border: 2px solid #ffe2e2;
        text-align: center;
        height: 100%;
    }
    .ex-area {
        position: relative;
        top: 0px;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        background: #fff;
        padding: 20px 20px;
        box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px, rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 16px 32px, rgb(0 0 0 / 7%) 0px 32px 64px;
        border: 2px solid #ffe2e2;
        text-align: center;
        height: 100%;
        margin-top: 9px;
    }
    .vision--img {
        display: none;
    }
    .vision-sec.second {
        padding-right: 0;
    }
    .vision-sec.last {
        padding-left: 0px;
    }
    .treatment--title h2 {
        font-size: 25px;
        line-height: 1.2em;
        font-weight: 400;
        /* margin-bottom: 20px; */
        color: #efb946;
        padding: 10px 0px;
        text-shadow: 1px 0px #161616;
    }
    .banefits-one__tab-box .tab-buttons .tab-btn span {
        padding: 8px 0px 0px;
        height: 43px;
        border-bottom: 1px solid #d9d9c6;
        font-size: 15px;
        font-weight: 600;
        font-family: 'Mulish', sans-serif;
        width: 101%;
    }
    .pricing-plan-one__single.gyar.mobile-gy {
        padding-top: 0px;
    }
    .pricing-plan-one__single-inner.gy-area1 {
        padding: 146px 13px 20px;
    }
    section.banefits-one.nn {
        margin-top: 10px;
        padding: 20px 0px 80px;
    }
    .services-details-text4 .content-box.cos-area {
        margin-top: 15px;
    }
    .tabs-content__img.imgg {
        padding: 0px 20px 0px;
    }
    .tabs-content__img .inner {
        margin-left: 0px;
    }
    .banefits-one__tab-box .tab-buttons li.tab-btn.one {
        width: 33%;
    }
    .blog-one__single-img .date-box {
        height: 92px;
    }
    .sec-title .sub-title .text span.title-head {
        font-size: 30px;
    }
    .pricing-plan-one__single-inner .table-footer {
        margin-top: 5px;
    }
    .vision-sec {
        margin-bottom: 50px;
        width: auto;
    }
    .sec-title .sub-title .text {
        text-align: center;
    }
    .about-one {
        padding: 40px 0px 61px;
    }
    .ab-area {
        padding: 40px 30px;
    }
    .auto-container {
        padding: 0px 15px;
    }
    /*Sec Title*/
    .sec-title .sub-title .text span {
        font-size: 16px;
    }
    .sec-title h2 {
        font-size: 27px;
        text-align: center;
    }
    .sec-title h2 br {
        display: none;
    }
    .sec-title .sub-title h3 {
        font-size: 18px;
    }
    /*Main Header One*/
    .header-search-box {
        display: none;
    }
    .header-one-social-links {
        display: none;
    }
    .main-header-one__right {
        display: none;
    }
    .main-header-one__inner {
        padding: 10px 0px 10px;
        background: #fff !important;
    }
    .main-menu .mobile-nav__toggler {
        color: #d5a532;
    }
    .main-header-one .main-menu-box {
        line-height: 0;
    }
    /*Main Header Two*/
    .main-header-two__left .logo-box-two::before {
        display: none;
    }
    .main-header-two__right {
        display: none;
    }
    .main-header-two .main-menu-box {
        line-height: 0;
    }
    .main-header-two__inner {
        padding: 8px 0px 8px;
    }
    /*Main Header Three*/
    .main-header-three__right {
        display: none;
    }
    .logo-box-three::before {
        display: none;
    }
    .main-header-three__inner {
        background: rgba(0, 0, 0, 0.1);
        padding: 30px 0px 30px;
    }
    .main-header-three .main-menu__wrapper-inner {
        background: transparent;
    }
    .main-header-three {
        top: 0px;
    }
    .main-header-three .main-menu-box {
        line-height: 0;
    }
    .main-header-three .logo-box-three {
        padding-left: 0px;
        padding-right: 0px;
    }
    /*Main Slider One*/
    .main-slider-one__img {
        display: none;
    }
    .main-slider-one .shape5 {
        display: none;
    }
    .main-slider__nav {
        display: none;
    }
    .main-slider-one__content .tagline p {
        font-size: 16px;
    }
    .main-slider-one__content .title h2 br {
        display: none;
    }
    .main-slider-one__content .title h2 {
        font-size: 38px;
    }
    .main-slider-one__content .text p br {
        display: none;
    }
    /*Main Slider Two*/
    .main-slider-two .shape2 {
        display: none;
    }
    .main-slider-two .shape1 {
        display: none;
    }
    .main-slider-two__nav {
        display: none;
    }
    .main-slider-two__content .tagline p {
        font-size: 16px;
    }
    .main-slider-two__content .title h2 br {
        display: none;
    }
    .main-slider-two__content .title h2 {
        font-size: 34px;
    }
    .main-slider-two__content .text p br {
        display: none;
    }
    .main-slider-two__content .btn-box .thm-btn {
        padding: 0px 40px 0px;
    }
    /*Main Slider Three*/
    .main-slider-three__img {
        display: none;
    }
    .main-slider-three .shape2 {
        display: none;
    }
    .main-slider-three .shape6 {
        display: none;
    }
    .main-slider-three .shape1 {
        display: none;
    }
    .main-slider-three__content .tagline p {
        font-size: 17px;
    }
    .main-slider-three__content .title h2 {
        font-size: 45px;
    }
    .main-slider-three .shape5 {
        display: none;
    }
    /*Page Header*/
    .page-header__img {
        display: none;
    }
    .page-header__inner h2 {
        font-size: 45px;
    }
    .page-header__inner .thm-breadcrumb li {
        font-size: 17px;
    }
    .page-header__inner .thm-breadcrumb li a {
        font-size: 17px;
    }
    /*About One*/
    .about-one__img {
        max-width: 600px;
        width: 100%;
        padding-left: 0px;
    }
    .about-one__content {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 20px;
        padding-top: 0px
    }
    .about-one__shape1 {
        display: none;
    }
    .about-one__experience-box {
        position: relative;
        padding: 42px 35px 37px;
        margin-bottom: 15px;
    }
    .about-one__img2 {
        position: relative;
        bottom: 0px;
        margin-top: 15px;
    }
    .about-one__content-text2-single {
        margin-bottom: 23px;
    }
    .about-one__content-bottom {
        display: block;
        margin-top: 20px;
    }
    .about-one__client-info-box {
        margin-top: 25px;
        margin-left: 0px;
    }
    /*Cta One*/
    .cta-one__bg {
        right: 0px;
    }
    .cta-one__inner {
        display: block;
        text-align: center;
    }
    .cta-one__inner .text-box h2 {
        margin-bottom: 30px;
        font-size: 30px;
        line-height: 45px;
    }
    .cta-one__inner .text-box h2 br {
        display: none;
    }
    .cta-one__inner .btn-box {
        padding-right: 0px;
    }
    /* Features One*/
    .features-one__single.mb60 {
        margin-top: 0px;
    }
    .features-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Features Two*/
    .features-two__img {
        display: none;
    }
    .features-two__list li.style2 {
        float: none;
    }
    .features-two__list li {
        float: none;
        margin: 0 auto 31px;
    }
    .features-two__list li .inner h2 {
        font-size: 22px;
    }
    /* Counter One*/
    .counter-one__single {
        width: 100%;
    }
    .counter-one__box {
        margin-left: 0px;
        margin-right: 0px;
    }
    /*Portfolio One*/
    .portfolio-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .portfolio-one__single-img .inner .content-box {
        padding: 28px 15px 25px;
        width: 210px;
    }
    .portfolio-one__single-img .inner .btn-box {
        left: 210px;
    }
    .portfolio-one__single-img .inner .btn-box a {
        width: 50px;
        height: 50px;
    }
    .portfolio-one__single-img .inner .btn-box a span::before {
        font-size: 18px;
    }
    .portfolio-one__single-img .inner .content-box h2 {
        font-size: 21px;
        line-height: 32px;
    }
    /*Team One*/
    .team-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Portfolio One*/
    .brand-one {
        padding: 0px 0px 0px;
    }
    .brand-one__box li {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
    .brand-one__content {
        padding: 72px 30px 70px;
        max-width: none;
    }
    .brand-one__bg {
        display: none;
    }
    .brand-one__box li:nth-child(2) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
    }
    .brand-one__box li:nth-child(4) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
        border-bottom: none;
    }
    .brand-one__box li:nth-child(3) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
    }
    .brand-one__box li:nth-child(1) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
    }
    .brand-one__box li:nth-child(5) {
        border-right: 2px solid rgba(255, 255, 255, 0.6);
        border-bottom: none;
    }
    /*Pricing Plan One*/
    .pricing-plan-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto 0px;
        /* padding-top: 35px; */
    }
    .pricing-plan-one__single-inner {
        padding: 98px 30px 50px;
        height: 200px;
    }
    /*Slogan One*/
    .slogan-one__inner h2 br {
        display: none;
    }
    .slogan-one__inner h2 {
        font-size: 45px;
        line-height: 55px;
    }
    /*Testimonials One*/
    .testimonials-one {
        padding-bottom: 120px;
    }
    .testimonials-one__left {
        margin-left: 0px;
        max-width: 100%;
        width: 100%;
        padding: 120px 0px 60px;
    }
    .testimonials-one__form {
        position: relative;
        padding: 43px 30px 55px;
    }
    .testimonials-one::before {
        right: 0px;
    }
    .testimonials-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
        display: none;
    }
    .testimonials-one__single h2 {
        font-size: 24px;
        line-height: 40px;
    }
    .testimonials-one__single .client-info .text-box .text h2 {
        font-size: 17px;
        line-height: 30px;
    }
    .testimonials-one__single .client-info .text-box .text p {
        font-size: 13px;
    }
    .testimonials-one__form .title-box h2 {
        font-size: 30px;
    }
    .testimonials-one__form .form-box form .button-box button.thm-btn {
        font-size: 14px;
        padding: 0px 30px 0px;
    }
    /*Blog One*/
    .blog-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .blog-one__single__content h2 {
        font-size: 18px;
        line-height: 30px;
    }
    /*Footer One*/
    .footer-one__top-inner form ul li {
        width: 100%;
        margin-bottom: 10px;
    }
    .footer-one__top-inner form ul li .button-box .footer-one__top-btn {
        width: 100%;
    }
    .footer-one__top-inner {
        padding: 68px 30px 70px;
    }
    .footer-one__top-inner .shape6 {
        display: none;
    }
    .footer-widget__single-blog {
        margin-top: 40px;
    }
    .footer-widget__single-newsletter {
        margin-top: 60px;
    }
    .footer-one__top-inner .title h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .footer .shape3 {
        display: none;
    }
    .footer-one__top-inner .shape7 {
        display: none;
    }
    .footer-widget__single-about {
        margin-bottom: 20px;
    }
    .footer .shape2 {
        display: none;
    }
    .footer .shape1 {
        display: none;
    }
    .footer-one__bottom .bottom-inner {
        display: block;
        text-align: left;
    }
    .footer-one__bottom .bottom-inner .copyright {
        margin-bottom: 5px;
    }
    /*About Two*/
    .about-two__img {
        margin-left: 0px;
        margin-right: 0px;
        max-width: 600px;
    }
    .about-two__bg {
        display: none;
    }
    .about-two__content {
        margin-left: 0px;
        margin-top: 90px;
    }
    .about-two__img .shape1 {
        display: none;
    }
    .about-two__img .shape2 {
        display: none;
    }
    .about-two__img1 .counter-box {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 300px;
        width: 100%;
        margin: 10px auto 0px;
    }
    .about-two__content-text3 {
        display: block;
    }
    .about-two__client-info-box {
        margin-left: 0px;
        margin-top: 30px;
    }
    /*Services Two*/
    .services-two .shape1 {
        display: none;
    }
    .services-two .shape2 {
        display: none;
    }
    .services-two__single {
        padding: 37px 25px 37px;
        padding-right: 25px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .services-two__single .inner {
        padding-left: 0px;
    }
    .services-two__single .inner .img-box {
        position: relative;
        margin-bottom: 25px;
    }
    .services-two .shape6 {
        display: none;
    }
    /*Banefits One*/
    .banefits-one__pattern {
        display: none;
    }
    .banefits-one__tab-box .tab-buttons .tab-btn {
        width: 100%;
    }
    .banefits-one::before {
        left: 0px;
    }
    .tabs-content__img {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        padding: 41px 20px 42px;
    }
    .tabs-content__content {
        margin-top: 40px;
    }
    .tabs-content__content-accordion {
        margin-left: 0px;
    }
    .banefits-one__tab-box .tab-buttons {
        max-width: 350px;
        width: 100%;
        margin: 0 auto 40px;
    }
    .accordion-box .block .acc-btn {
        padding-right: 60px;
    }
    /*Testimonial Two*/
    .testimonial-two {
        background: var(--thm-black);
    }
    #testimonial-two__carousel-pagination {
        display: none;
    }
    .testimonial-two__content-box-single .inner {
        padding-left: 0px;
    }
    .testimonial-two__content-box-single .inner .img-box {
        position: relative;
        top: 0px;
        margin-bottom: 27px;
    }
    .testimonial-two__img7 {
        display: none;
    }
    .testimonial-two__content .shape1 {
        border-radius: 0%;
    }
    /*Testimonial Two*/
    .our-banefits-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Pricing Plan Two*/
    .pricing-plan-two__single {
        max-width: 400px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .pricing-plan-two__single-inner {
        padding: 30px 20px 35px;
    }
    .pricing-plan-two__single {
        padding: 20px 15px 20px;
    }
    .pricing-plan-two__single-inner .table-header {
        padding: 15px 20px 17px;
    }
    .pricing-plan-two__single-inner .table-footer .thm-btn {
        padding: 0px 30px 0px;
    }
    .pricing-plan-two__single-inner .table-header h5 {
        font-size: 15px;
    }
    /*Brand Two*/
    .brand-two::before {
        left: 0px;
    }
    .brand-two::before {
        border-bottom-left-radius: 0px;
    }
    /*Poroduct One*/
    .poroduct-one__top .sec-title h2 {
        font-size: 40px;
    }
    .poroduct-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .poroduct-one__top {
        display: block;
        text-align: center;
    }
    .poroduct-one__top .btn-box {
        margin-top: 25px;
    }
    .poroduct-one__single-content .left-content h3 {
        font-size: 17px;
    }
    .poroduct-one__single-img .inner .overlay-box {
        left: 50px;
        right: 50px;
    }
    /*About Three*/
    .about-three__img {
        display: none;
    }
    .about-three__content {
        margin-right: 0px;
    }
    .about-three__content-text2-single .content-box {
        margin-left: 30px;
    }
    .about-three__content-text2-single .content-box h2 {
        font-size: 19px;
    }
    .about-three__content-text3 {
        display: block;
    }
    .about-three__client-info-box {
        margin-left: 0px;
        margin-top: 25px;
    }
    /*Video One*/
    .video-one__inner .shape1 {
        display: none;
    }
    /*Services Three*/
    .services-three {
        padding: 420px 0 90px;
    }
    .services-three__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 90px;
    }
    .services-three__single-inner .content-box h2 {
        font-size: 22px;
    }
    .services-three__single {
        padding: 65px 40px 55px;
    }
    /*Portfolio Two*/
    .portfolio-two .owl-theme .owl-nav {
        display: none;
    }
    .portfolio-two__single-img .overlay-content {
        width: 280px;
        padding: 26px 20px 28px;
    }
    .portfolio-two__single-img .overlay-content h2 {
        font-size: 18px;
        line-height: 30px;
    }
    .portfolio-two__single-img .overlay-content p {
        font-size: 14px;
    }
    .portfolio-two__link a {
        width: 50px;
        height: 50px;
    }
    /*Work Process One*/
    .work-process-one .shape1 {
        display: none;
    }
    .work-process-one__single.mt-100 {
        margin-top: 0px;
    }
    .work-process-one__single.mt-50 {
        margin-top: 0px;
    }
    .work-process-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 40px;
    }
    /*Team Two*/
    .team-two {
        padding: 120px 0px 90px;
    }
    .team-two__single {
        max-width: 350px;
        width: 100%;
        margin: 0 auto 30px;
    }
    /*Contact One*/
    .contact-one__form {
        margin-left: 0px;
    }
    .contact-one::before {
        right: 0;
    }
    .contact-one__bg {
        display: none;
    }
    .contact-one__form-btn .thm-btn {
        padding: 0px 40px 0px;
    }
    /*Pricing Plan Two*/
    .pricing-plan-two {
        padding: 120px 0px 90px;
    }
    /*Contact Two*/
    .contact-one--two__img {
        display: none;
    }
    .contact-one--two .contact-one__form {
        margin-left: 0px;
        max-width: none;
    }
    .contact-one--two {
        padding: 0px 0px 120px;
    }
    /*Services Details*/
    .services-details-text1 h2 {
        font-size: 24px;
        text-align: center;
    }
    .services-details-text4 {
        display: block;
    }
    .services-details-text4 .content-box {
        margin-top: 30px;
        margin-left: 0px;
    }
    .services-details-text6-single {
        margin-bottom: 20px;
    }
    .services-details__sidebar {
        margin-top: 50px;
    }
    .sidebar__category-list li a {
        font-size: 15px;
        min-width: 263px;
        padding: 18px 15px 17px;
    }
    .services-details__sidebar-single .title-box h2 {
        font-size: 22px;
        text-align: center;
    }
    .sidebar__contact-box .number-box .text-box a {
        font-size: 15px;
    }
    /*Job One*/
    .job-one__bg {
        position: relative;
        left: 0%;
        min-height: 500px;
    }
    .job-one__content {
        margin-top: 50px;
    }
    .job-one {
        padding: 0px 0px 120px;
    }
    .job-one__content .title h2 br {
        display: none;
    }
    .job-one__content .title h2 {
        font-size: 40px;
    }
    /*Banefits Two*/
    .banefits-two--team .banefits-two__single {
        padding: 0px 30px 13px;
    }
    .banefits-two--team {
        padding: 120px 0px 70px;
    }
    /*Team Details*/
    .team-details-top__client-info {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .team-details-top__content-info-single {
        margin-bottom: 40px;
    }
    .team-details-top__content-btn {
        margin-top: 7px;
    }
    .team-details-top__content .title-box h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .team-details__middle__bg {
        position: relative;
        top: 0px;
        left: 0;
        bottom: auto;
        min-height: 500px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .team-details__middle {
        padding: 0px 0px 120px;
    }
    .team-details__middle-content {
        margin-top: 50px;
    }
    .team-details__middle-content .title h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .team-details__middle-content-list li .content-box h2 {
        font-size: 19px;
    }
    /*Portfolio Three*/
    .portfolio-three__single-img .inner .overlay-content {
        width: 280px;
        padding: 25px 15px 17px;
    }
    .portfolio-three__single-img .inner .overlay-content .text-box h2 {
        font-size: 20px;
    }
    /*Appointment Page*/
    .appointment-page__bg {
        display: none;
    }
    .appointment-page__form {
        padding: 88px 20px 100px;
    }
    .appointment-page__form .title h2 {
        font-size: 30px;
        line-height: 45px;
    }
    .appointment-page__form .button-box .thm-btn {
        padding: 0px 30px 0px;
    }
    /*Shop Page*/
    .shop-page__sidebar {
        max-width: 600px;
        width: 100%;
        margin: 70px auto 0px;
    }
    .shop-page__content .styled-pagination {
        text-align: center;
    }
    .shop-page__top-inner {
        display: block;
    }
    .shop-page__top-inner .left {
        display: block;
        margin-bottom: 20px;
    }
    .shop-page__top-inner .left .left_text {
        margin-left: 0px;
        text-align: center;
        margin-top: 15px;
    }
    .shop-page__top-inner .left .left_icon {
        justify-content: center;
    }
    .shop-page__top-inner .right .shorting .select-box {
        margin: 0 auto;
    }
    .shop-page__sidebar-single .title-box h2 {
        font-size: 22px;
    }
    /*Shop Details */
    .shop-details__img-box {
        margin-right: 0px;
        max-width: 600px;
        width: 100%;
    }
    .shop-details__content {
        margin-top: 190px;
    }
    .single-review-box .text-box h3 {
        font-size: 18px;
    }
    .single-review-box-outer {
        margin-bottom: 30px;
    }
    .review-form {
        padding: 53px 25px 60px;
    }
    .shop-details-top__nav {
        display: none;
    }
    .shop-details__countdown .countdown-timer li {
        margin-bottom: 20px;
    }
    .shop-details__countdown .countdown-timer li:last-child {
        margin-left: 0;
    }
    .shop-details__content-text h2 {
        font-size: 30px;
    }
    .shop-details__product-quantity {
        display: block;
    }
    .shop-details__product-quantity .btn-box1 {
        margin-left: 0px;
        margin-top: 10px;
    }
    .shop-details__product-quantity .btn-box2 {
        margin-top: 10px;
    }
    .shop-details__tab-button .tab-buttons {
        text-align: center;
    }
    .shop-details__tab-button .tab-buttons li {
        margin-bottom: 10px;
    }
    .shop-details__tab-button .tab-buttons li:last-child {
        margin-bottom: 0;
    }
    .shop-details__tab-description {
        padding: 36px 25px 55px;
    }
    .shop-details__tab-specifications {
        padding: 36px 25px 55px;
    }
    .shop-details__tab-content-item.style2 {
        padding: 50px 25px 50px;
    }
    .single-review-box {
        padding-left: 0px;
    }
    .single-review-box .img-box {
        position: relative;
        top: 0px;
    }
    .single-review-box .text-box {
        padding-left: 0px;
        margin-top: 20px;
    }
    .shop-details__tab-reviews .review-form .button-box {
        display: block;
    }
    .shop-details__tab-reviews .review-form .button-box .right {
        padding-left: 0px;
        margin-top: 15px;
    }
    .review-form .add-rating-box .review-box {
        padding-left: 6px;
    }
    /*Contact Page*/
    .contact-page__content .title h2 {
        font-size: 40px;
    }
    .contact-page__form {
        margin-top: 15px;
    }
    /*Blog Page*/
    .blog-page .blog-one__single {
        max-width: none;
        width: 100%;
        margin: 0 auto 30px;
    }
    .sidebar {
        margin-top: 50px;
    }
    .blog-page__content .blog-one__single-img .date-box {
        right: 30px;
    }
    .blog-one__single__content .meta-box li {
        margin-right: 15px;
    }
    .blog-page__content .blog-one__single__content h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .blog-page .styled-pagination li {
        margin-bottom: 10px;
    }
    /*Blog Details*/
    .blog-details .blog-one__single__content .meta-box {
        background: transparent;
    }
    .blog-details .blog-one__single__content .meta-box {
        justify-content: center;
        flex-direction: column;
        display: flex;
        align-items: center;
        margin-top: 0px;
    }
    .blog-details .blog-one__single__content .meta-box li {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .blog-details .blog-one__single__content .meta-box li:last-child {
        margin-bottom: 0;
    }
    .blog-details__content .blog-one__single-img .date-box {
        display: none;
    }
    .blog-details__content .blog-one__single__content h2 {
        font-size: 24px;
        line-height: 40px;
    }
    .blog-details__bottom {
        display: block;
    }
    .blog-details__bottom p {
        text-align: center;
    }
    .blog-details__tags a {
        margin-bottom: 10px;
    }
    .blog-details__social-list {
        justify-content: center;
        margin-top: 20px;
    }
    .author-one .inner {
        padding-left: 0px;
    }
    .author-one__image {
        position: relative;
        top: 0px;
        margin-bottom: 15px;
    }
    .comment-one__single {
        display: block;
    }
    .comment-one__content {
        margin-left: 0px;
    }
    .comment-one__image {
        margin-bottom: 15px;
    }
    .contact-page__content .title h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .contact-page__content-single-inner .content-box p br {
        display: none;
    }
    .contact-page__form {
        margin-top: 40px;
    }
    /**cart area**/
    .cart-button-box .update-cart {
        float: none;
    }
    .cart-button-box .apply-coupon .inner {
        position: relative;
        display: block;
        padding-left: 0px;
    }
    .cart-button-box .apply-coupon .apply-coupon-button button {
        margin-left: 0px;
        margin-top: 80px;
    }
    .cart-totals-form button.thm-btn {
        padding: 0px 35px 0px;
    }
    .checkout-area__sidebar {
        margin-top: 50px;
        margin-left: 0px;
    }
    .checkout-area__sidebar-single ul li .text-box .img-box {
        margin-right: 5px;
    }
    .checkout-area__sidebar-single ul li .title-box p span {
        margin-left: 10px;
    }
    /*login register*/
    .login-register-area .form .social-icon {
        position: relative;
        float: none;
        margin-right: 0px;
        margin-bottom: 40px;
    }
    .login-register-area .form .social-icon .login-with {
        position: relative;
        left: 0px;
        top: 0px;
        margin: 0;
    }
    .login-register-area .form .right {
        margin-left: 0px;
    }
}


/*Order Box One*/

@media only screen and (max-width: 991px) {
    .order-22 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-11 {
        -ms-flex-order: 1;
        order: 1;
    }
}

/* https://www.yuvaniaestheticclinic.com/resources/assets/css/color-1.css */
:root {
  --thm-base: #002359;
  --thm-base-rgb: 0, 35, 89;
  --thm-black: #002359;
  --thm-black-rgb: 0, 35, 89;
}
