
/* === public/assets/css/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);
    }

}

/* === public/assets/css/custom-animate.css === */

@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);
  }
}

@-webkit-keyframes bounceright {
  from {
    -webkit-transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(3px);
  }
}

@keyframes bounceright {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(3px);
  }
}


.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;
}


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

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



@-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 {
  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;
}







/*** 
=============================================
    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;
  }
}

/*** 
=============================================
    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;
  }
}



@-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;
}







@-webkit-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);
  }
}

@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);
  }
}


/*** 
=============================================
    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);
  }
}




/*** 
=============================================
    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;
}



@-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 shapeMover {

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

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


@keyframes shapeMover-2 {

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

  50% {
    -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    transform: perspective(400px) rotate(-45deg) 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%);
  }
}


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

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

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

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

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

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

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

  100% {
    transform: scale(0.9) translateX(0%) translateY(0%);
  }
}

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

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

  100% {
    transform: scale(0.9) translateX(0%) translateY(0%);
  }
}


























/* 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);
  }
}


/* Image Bounce */

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

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

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

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


.img-bounce {
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}


/** 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 2 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;
}








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

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

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

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

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

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

.float-bob-y-2 {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-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;
}


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

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

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

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

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

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

/* === public/assets/css/nice-select.css === */

.nice-select {
    position: relative;
    display: block;
    -webkit-tap-highlight-color: transparent;
    background-color: #f6f4f9;
    border-radius: 0px;
    border: 0px solid #e4e4e4;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    float: none;
    font-family: inherit;
    color: #888888;
    font-size: 14px;
    font-weight: 300;
    height: 70px;
    line-height: 48px;
    outline: none;
    padding-left: 25px;
    padding-right: 25px;
    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: #6e7a7a;
}

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


.nice-select:after {
    position: absolute;
    right: 17px;
    top: 50%;
    margin-top: -4px;
    display: block;
    border-bottom: 1px solid var(--anity-gray);
    border-right: 1px solid var(--anity-gray);
    content: '';
    width: 8px;
    height: 8px;
    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;
}

.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: var(--anity-base);
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 0px;
    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 {
    color: #ffffff;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: #ffffff;
    background-color: var(--anity-black);
}

.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;
}

.get-flight-two__inner .nice-select:after {
    border-bottom: 2px solid var(--anity-gray);
    border-right: 2px solid var(--anity-gray);
}

/* === public/assets/css/module-css/about.css === */

/*==============================================
    About One
===============================================*/
.about-One {
    position: relative;
    display: block;
    padding: 40px 0 80px;
    z-index: 1;
}

.about-One__left {
    position: relative;
    display: block;
    margin-right: 254px;
}

.about-One__img-box {
    position: relative;
    display: block;
}

.about-One__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    height: 370px;
	width: 370px;
}

.about-One__img::after {
    background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.about-One__img:hover::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.about-One__img img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-One__img-2 {
    position: absolute;
    top: 184px;
    right: -224px;
    overflow: hidden;
	height: 370px;
	width: 370px;
}

.about-One__img-2:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.about-One__img-2:hover:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.about-One__img-2 img {
    width: 100%;
    border-radius: 20px;
	height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-One__provide-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--anity-primary);
    border-radius: 20px;
    margin-right: 56px;
    margin-top: 46px;
    padding: 21px 31px 23px;
}

.about-One__provide-icon {
    position: relative;
    display: inline-block;
}

.about-One__provide-icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: var(--anity-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-One__provide-box:hover .about-One__provide-icon span {
    transform: scale(0.9);
}

.about-One__provide-content {
    position: relative;
    display: block;
}

.about-One__provide-count {
    position: relative;
    display: flex;
    align-items: center;
}

.about-One__provide-count h3 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.about-One__provide-count span {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
}

.about-One__provide-count-text {
    margin-top: 6px;
    color: var(--anity-black);
}

.about-One__shape-1 {
    position: absolute;
    width: 265px;
    height: 279px;
    right: -200px;
    top: 92px;
    border-radius: 50%;
    background-color: var(--anity-primary);
    filter: blur(162px);
    z-index: -1;
    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;
}

.about-One__right {
    position: relative;
    display: block;
    margin-top: 89px;
}

.about-One__right .section-title {
    position: relative;
    display: block;
    margin-top: -8px;
    margin-bottom: 19px;
    z-index: 1;
}

.about-One__vission-mission {
    position: relative;
    display: block;
}

.about-One__tab-box {
    position: relative;
    display: block;
}

.about-One__tab-box .tab-buttons {
    position: relative;
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 15px;
}

.about-One__tab-box .tab-buttons .tab-btn {
    position: relative;
    display: block;
}

.about-One__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 0;
}

.about-One__tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: inline-block;
    width: 180px;
    font-size: 16px;
    font-weight: 700;
    color: var(--anity-black);
    background-color: transparent;
    padding: 9px 20px 9px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
    text-align: center;
    text-transform: capitalize;
    border: 1px solid var(--anity-gray);
    border-radius: 10px;
    overflow: hidden;
}

.about-One__tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--anity-white);
    border: 1px solid var(--anity-extra);
}

.about-One__tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--anity-extra);
    background-position: top bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.about-One__tab-box .tab-buttons .tab-btn.active-btn span:before {
    transform: scaleY(1.0);
}

.about-One__tab-box .tabs-content {
    position: relative;
    display: block;
}

.about-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;
}

.about-One__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);

}

.about-One__tab-box .tabs-content__inner {
    position: relative;
    display: block;
}

.about-One__btn-and-need-help {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 41px;
}

.about-One__btn-box {
    position: relative;
    display: block;
}

.about-One__need-help {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-One__need-help .icon {
    position: relative;
    display: inline-block;
    top: 5px;
}

.about-One__need-help .icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-One__need-help:hover .icon span {
    transform: scale(0.9);
}

.about-One__need-help .content {
    position: relative;
    display: block;
}

.about-One__need-help .content p {
    color: var(--anity-black);
}

.about-One__need-help .content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.about-One__need-help .content h4 a {
    color: var(--anity-black);
}

.about-One__need-help .content h4 a:hover {
    color: var(--anity-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    z-index: 1;
}

.about-two__left {
    position: relative;
    display: block;
    border-radius: var(--anity-bdr-radius);
    margin-right: 80px;
    background-color: rgba(var(--anity-base-rgb), .10);
    padding: 35px 30px 35px;
}

.about-two__img {
    position: relative;
    display: block;
    border-radius: var(--anity-bdr-radius);
}

.about-two__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.about-two__right {
    position: relative;
    display: block;
    margin-top: 75px;
}

.about-two__right .section-title-two {
    margin-bottom: 22px;
}

.about-two__counter-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.about-two__counter-single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 19px;
}

.about-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 81px;
    height: 81px;
    border: 1px solid var(--anity-base);
    border-radius: 50%;
    margin: 0 auto;
}

.about-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-two__counter-single:hover .about-two__icon span {
    transform: scale(0.9);
}

.about-two__counter-single-2 .about-two__icon {
    border: 1px solid var(--anity-primary);
}

.about-two__counter-single-2 .about-two__icon span {
    color: var(--anity-primary);
}

.about-two__counter-single-3 .about-two__icon {
    border: 1px solid var(--anity-extra);
}

.about-two__counter-single-3 .about-two__icon span {
    color: var(--anity-extra);
}

.about-two__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-top: 21px;
    margin-bottom: 6px;
}

.about-two__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.about-two__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.about-two__counter-single-2 .about-two__title a:hover {
    color: var(--anity-primary);
    background-size: 100% 1px;
}

.about-two__counter-single-3 .about-two__title a:hover {
    color: var(--anity-extra);
    background-size: 100% 1px;
}

.about-two__count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two__count h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--anity-base);
}

.about-two__count p {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--anity-primary);
    font-family: var(--anity-font-two);
}

.about-two__count span {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--anity-base);
    font-family: var(--anity-font-two);
}

.about-two__counter-single-2 .about-two__count h2 {
    color: var(--anity-primary);
}

.about-two__counter-single-2 .about-two__count span {
    color: var(--anity-primary);
}

.about-two__counter-single-3 .about-two__count h2 {
    color: var(--anity-extra);
}

.about-two__counter-single-3 .about-two__count span {
    color: var(--anity-extra);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 220px 0 193px;
    z-index: 1;
}

.about-three__left {
    position: relative;
    display: block;
    margin-left: -47px;
    margin-right: 22px;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img {
    position: relative;
    display: block;
    z-index: 1;
}

.about-three__img img {
    width: 100%;
}

.about-three__shape-1 {
    position: absolute;
    top: -45px;
    right: 75px;
    opacity: .10;
    z-index: -1;
}

.about-three__shape-1 img {
    width: auto;
}

.about-three__shape-2 {
    position: absolute;
    bottom: -30px;
    right: 0px;
    opacity: .10;
    z-index: -1;
}

.about-three__shape-2 img {
    width: auto;
}

.about-three__shape-3 {
    position: absolute;
    top: -108px;
    left: 90px;
    bottom: -93px;
    right: 68px;
    border: 12px solid var(--anity-base);
    border-radius: 20px;
    z-index: -1;
}

.about-three__shape-3::before {
    content: "";
    position: absolute;
    bottom: 120px;
    left: -12px;
    top: 178px;
    width: 12px;
    background-color: var(--anity-white);
}

.about-three__shape-4 {
    position: absolute;
    top: -30px;
    left: -54px;
    width: 127px;
    height: 127px;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 76.2px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-three__shape-4 img {
    width: auto;
}

.about-three__right {
    position: relative;
    display: block;
    margin-top: -59px;
}

.about-three__right .section-title {
    margin-bottom: 28px;
}

.about-three__points {
    position: relative;
    display: block;
    margin-top: 29px;
    margin-bottom: 37px;
}

.about-three__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-three__points li+li {
    margin-top: 11px;
}

.about-three__points li .icon {
    position: relative;
    display: inline-block;
    top: 2px;
}

.about-three__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--anity-base);
}

.about-three__points li p {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.about-three__btn-and-need-help {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-three__btn-box {
    position: relative;
    display: block;
}

.about-three__need-help {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-three__need-help-icon {
    position: relative;
    display: inline-block;
    top: 4px;
}

.about-three__need-help-icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-three__need-help:hover .about-three__need-help-icon span {
    transform: scale(0.9);
}

.about-three__need-help .content {
    position: relative;
    display: block;
}

.about-three__need-help .content span {
    color: var(--anity-black);
}

.about-three__need-help .content p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--anity-font-two);
    margin-top: 2px;
}

.about-three__need-help .content p a {
    color: var(--anity-black);
}

.about-three__need-help .content p a:hover {
    color: var(--anity-base);
}




/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
    position: relative;
    display: block;
    padding: 140px 0px 110px;
}

.about-four__left {
    position: relative;
    display: block;
}

.about-four__left .section-title {
    margin-bottom: 24px;
}

.about-four__left .text {
    position: relative;
    display: block;
}

.about-four__left .text p {
    color: var(--anity-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.about-four-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 21px;
}

.about-four-img img {
    width: 100%;
}

.about-four-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.about-four-video .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--anity-white);
    border-radius: 50%;
    color: var(--anity-base);
    font-size: 30px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.about-four-video .video-popup:hover {
    color: var(--anity-white);
    background-color: var(--anity-base);
}

.about-four-video .video-popup::after,
.about-four-video .video-popup::before {
    content: "";
    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;
    -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;
    z-index: -1;
}

.about-four-video .video-popup::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.about-four__left .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 30px;
}

.about-four__right {
    position: relative;
    display: block;
    margin-left: 40px;
    margin-top: -6px;
}

.about-four__right .text1 {
    position: relative;
    display: block;
    padding-bottom: 28px;
}

.about-four__right .text1 p {
    color: var(--anity-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.about-four__right .text2 {
    position: relative;
    display: block;
}

.about-four__right .text2 p {
    line-height: 30px;
}

.about-four__right .text2 p+p {
    margin-top: 17px;
}

.about-four__right-counter {
    position: relative;
    display: block;
    padding-top: 39px;
}

.about-four__right-counter-single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    padding: 25px 25px 15px;
    margin-bottom: 27px;
}

.about-four__right-counter-single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--anity-base);
    color: var(--anity-white);
    font-size: 35px;
    line-height: 0;
    margin: 0px auto 32px;
}

.about-four__right-counter-single .count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-four__right-counter-single .count-box h2 {
    color: var(--anity-base);
    font-size: 40px;
    line-height: 1.0em;
}

.about-four__right-counter-single .count-box span {
    color: var(--anity-black);
    font-size: 40px;
    line-height: 1.0em;
    font-family: var(--anity-font-two);
    font-weight: 600;
}

.about-four__right-counter-single .count-box span.plus {
    margin-top: -7px;
}

.about-four__right-counter-single .title-box {
    position: relative;
    display: block;
    padding-top: 10px;
}

.about-four__right-counter-single .title-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/blog.css === */

/*==============================================
    Blog One
===============================================*/
.blog-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 40px 0 40px;
    z-index: 1;
}

.blog-one--style2 {
    padding: 140px 0px 110px;
}

.blog-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
}
.blog-one__single .blog-one__content{
	padding: 20px 20px 20px;
}

.blog-one__img-box {
    position: relative;
    display: block;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-one__img::after {
    /* background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.05) 0px, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.05) 77%, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.25) 92%, rgba(var(--karoons-white-rgb, 52, 52, 52), 0)); */
    /* content: ""; */
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.blog-one__single:hover .blog-one__img::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.blog-one__img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-one__single:hover .blog-one__img img {
    /* transform: scale(1.05) rotate(0deg); */
}

.blog-one__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.blog-one__img-box:hover .blog-one__img img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.blog-one__img-box iframe:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.blog-one__img-box:hover .blog-one__img iframe:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.blog-one__date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    width: 71px;
    height: 78px;
    background-color: var(--anity-white);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.blog-one__date::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: var(--anity-primary);
    z-index: -1;
}

.blog-one__date p {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
}

.blog-one__date p span {
    font-size: 16px;
    text-transform: uppercase;
}

.blog-one__content {
    position: relative;
    display: block;
    padding-top: 20px;
}

.blog-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.blog-one__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-one__title a:hover {
    color: var(--anity-base);
}

.blog-one__btn-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.blog-two__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
}

.blog-two__img-box {
    position: relative;
    display: block;
}

.blog-two__img {
    position: relative;
    display: block;
    border-top-right-radius: var(--anity-bdr-radius);
    border-top-left-radius: var(--anity-bdr-radius);
    overflow: hidden;
}

.blog-two__img img {
    width: 100%;
    border-top-right-radius: var(--anity-bdr-radius);
    border-top-left-radius: var(--anity-bdr-radius);
    transition: 0.5s;
    background-size: cover;
}

.blog-two__img img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-two__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.blog-two__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--anity-black-rgb), 0.6);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-two__link::before,
.blog-two__link::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--anity-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-two__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-two__single:hover .blog-two__link {
    opacity: 1;
    transform: translateY(0);
}

.blog-two__single:hover .blog-two__img img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-two__single:hover .blog-two__img img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-two__content {
    position: relative;
    display: block;
    padding: 20px 40px 40px;
}

.blog-two__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

.blog-two__meta li {
    position: relative;
    display: block;
}

.blog-two__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--anity-gray);
}

.blog-two__meta li a:hover {
    color: var(--anity-base);
}

.blog-two__meta li a span {
    color: var(--anity-base);
}

.blog-two__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-two__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-two__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.blog-two__btn-box {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.blog-three__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    padding: 20px 20px 40px;
    margin-bottom: 30px;
}

.blog-three__img-box {
    position: relative;
    display: block;
}

.blog-three__img {
    position: relative;
    display: block;
    border-radius: var(--anity-bdr-radius);
    overflow: hidden;
}

.blog-three__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    transition: 0.5s;
    background-size: cover;
}

.blog-three__img img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-three__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.blog-three__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--anity-black-rgb), 0.6);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-three__link::before,
.blog-three__link::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--anity-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-three__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-three__single:hover .blog-three__link {
    opacity: 1;
    transform: translateY(0);
}

.blog-three__single:hover .blog-three__img img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-three__single:hover .blog-three__img img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-three__content {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-left: 20px;
}

.blog-three__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

.blog-three__meta li {
    position: relative;
    display: block;
}

.blog-three__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--anity-gray);
}

.blog-three__meta li a:hover {
    color: var(--anity-base);
}

.blog-three__meta li a span {
    color: var(--anity-base);
}

.blog-three__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-three__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-three__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.blog-three__read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--anity-black);
    margin-top: 40px;
}

.blog-three__read-more:hover {
    color: var(--anity-base);
}

.blog-three__read-more span {
    color: var(--anity-base);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 40px 0 40px;
    z-index: 1;
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-details__img {
    position: relative;
	height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.blog-details__img .img-wrapper {
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.blog-details__img img {
    width: 100%;
    border-radius: 15px;
	height: auto;
    object-fit: contain;
    max-height: 100%;
}

.blog-details__content {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-bottom: 29px;
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details__meta li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details__meta li .icon {
    position: relative;
    display: inline-block;
}

.blog-details__meta li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.blog-details__meta li a {
    color: var(--anity-gray);
}

.blog-details__meta li a:hover {
    color: var(--anity-base);
}

.blog-details__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-top: 21px;
    margin-bottom: 19px;
}


.blog-details__text-2 {
    margin-top: 20px;
    margin-bottom: 42px;
}

.blog-details__author-box {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    padding: 40px 40px 44px;
    margin-bottom: 30px;
}

.blog-details__author-name {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
    position: relative;
    display: inline-block;
    padding-left: 52px;
    margin-top: 34px;
}

.blog-details__author-name::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--anity-base);
    transform: translateY(-50%);
}

.blog-details__author-quote {
    position: absolute;
    bottom: 37px;
    right: 43px;
}

.blog-details__author-quote span {
    position: relative;
    display: inline-block;
    font-size: 28px;
    color: var(--anity-base);
}

.blog-details__keyword-and-tag {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    padding: 20px 0 20px;
}

.blog-details__keyword {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details__keyword span {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.blog-details__keyword-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details__keyword-list a {
    position: relative;
    background-color: var(--anity-extra-two);
    color: var(--anity-gray);
    line-height: 26px;
    border-radius: 10px;
    padding: 12px 20px 12px;
}

.blog-details__keyword-list a:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.blog-details__tag {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details__tag span {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.blog-details__tag-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details__tag-list a {
    color: var(--anity-gray);
}

.blog-details__tag-list a:hover {
    color: var(--anity-base);
}

.comment-one {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.comment-one__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.comment-one__single+.comment-one__single {
    margin-top: 30px;
}

.comment-one__image {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
}

.comment-one__image img {
    width: 100%;
    border-radius: 50%;
}

.comment-one__content {
    position: relative;
    display: block;
}

.comment-one__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 7px;
}

.comment-one__content p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.comment-one__btn-box {
    position: relative;
    display: inline-block;
}

.comment-one__btn-box a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--anity-base);
    letter-spacing: 1.4px;
}

.comment-one__btn-box a:hover {
    color: var(--anity-black);
}

.comment-form {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    padding: 60px 40px 60px;
}

.comment-form .row {
    --bs-gutter-x: 20px;
}

.comment-form .comment-form__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    border-bottom: none;
}

.comment-form__text {
    color: var(--anity-black);
    margin-top: 9px;
    margin-bottom: 29px;
}

.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"] {
    height: 50px;
    width: 100%;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--anity-black);
    background-color: var(--anity-white);
    display: block;
    border: none;
    border-radius: var(--anity-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__input-box textarea {
    font-size: 16px;
    font-weight: 400;
    height: 165px;
    width: 100%;
    padding: 15px 30px 30px;
    outline: none;
    margin-bottom: 0px;
    border: none;
    color: var(--anity-black);
    background-color: var(--anity-white);
    border-radius: var(--anity-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__check-and-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.comment-form__input-box.text-message-box {
    height: 165px;
    margin-bottom: 0;
}

.comment-form .checked-box {
    position: relative;
    display: block;
}

.comment-form .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--anity-black);
    cursor: pointer;
    min-height: 25px;
}

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

.comment-form .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 9px;
    left: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    border: 1px solid var(--anity-black);
    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;
}

.comment-form .checked-box label span:before {
    position: absolute;
    top: 1px;
    left: 2px;
    display: block;
    border-bottom: 2px solid var(--anity-black);
    border-right: 2px solid var(--anity-black);
    content: '';
    width: 5px;
    height: 8px;
    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;
}

.comment-form.checked-box input[type="checkbox"]:checked+label span {
    border-color: #4D4E50;
    ;
}

.comment-form .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }

    .sidebar--two {
        margin-top: 0;
        margin-bottom: 50px;
    }

}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar {
    position: relative;
    display: block;
}

.sidebar__title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.sidebar__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 11px;
}

.sidebar__search {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    display: block;
    outline: none;
    background-color: var(--anity-white);
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 20px;
    border: none;
    color: var(--anity-gray);
    border-radius: 30px;
}

.sidebar__search-form button[type="submit"] {
    color: var(--anity-black);
    font-size: 22px;
    position: absolute;
    top: 50%;
    right: 15px;
    max-width: 40px;
    width: 100%;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateY(-50%);
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__category {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__category .sidebar__title-box {
    margin-bottom: 20px;
}

.sidebar__category-list {
    position: relative;
    display: block;
}

.sidebar__category-list li {
    position: relative;
    display: block;
}

.sidebar__category-list li+li {
    margin-top: 11px;
}

.sidebar__category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__category-list li a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__post .sidebar__title-box {
    margin-bottom: 17px;
}

.sidebar__post-list {
    position: relative;
    display: block;
}

.sidebar__post-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar__post-list li+li {
    margin-top: 8px;
}

.sidebar__post-image {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
}

.sidebar__post-image img {
    width: 100%;
    border-radius: 10px;
}

.sidebar__post-content {
    position: relative;
    display: block;
    margin-left: 15px;
}

.sidebar__post-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.sidebar__post-title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__post-title a:hover {
    color: var(--anity-base);
}

.sidebar__post-date {
    color: var(--anity-gray);
    margin-top: 6px;
}

.sidebar__post-date span {
    position: relative;
    margin-right: 10px;
    font-weight: 900;
    color: var(--anity-base);
}

.sidebar__tag {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__tag .sidebar__title-box {
    margin-bottom: 21px;
}

.sidebar__tag-list {
    position: relative;
    display: block;
    margin-left: -10px;
}

.sidebar__tag-list a {
    font-size: 16px;
    color: var(--anity-gray);
    background-color: var(--anity-white);
    display: inline-block;
    padding: 9px 14px 10px;
    margin-left: 10px;
    line-height: 26px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: var(--anity-bdr-radius);
}

.sidebar__tag-list a+a {
    margin-left: 10px;
    margin-top: 10px;
}

.sidebar__tag-list a:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
    position: relative;
    display: block;
    padding: 16px 0 40px;
    z-index: 1;
}

.blog-list__left {
    position: relative;
    display: block;
}

.blog-list__single {
    position: relative;
    display: block;
    margin-bottom: 80px;
}

.blog-list__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-list__img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--anity-black-rgb), 0.6);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--anity-base);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
    -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
    transform: perspective(400px) rotateX(-90deg) scale(0.2);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: var(--anity-bdr-radius);
}

.blog-list__img>a>span {
    position: relative;
}

.blog-list__img>a>span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--anity-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.blog-list__img>a>span::after {
    content: '';
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--anity-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-list__img>a:hover>span::before,
.blog-list__img>a:hover>span::after {
    background-color: var(--anity-white);
}

.blog-list__single:hover .blog-list__img>a {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}


.blog-list__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.blog-list__content {
    position: relative;
    display: block;
    padding-top: 20px;
}

.blog-list__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-list__meta li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-list__meta li .icon {
    position: relative;
    display: inline-block;
}

.blog-list__meta li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.blog-list__meta li a {
    color: var(--anity-gray);
}

.blog-list__meta li a:hover {
    color: var(--anity-base);
}

.blog-list__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-list__title a {
    color: var(--anity-back);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-list__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.blog-list__btn-box {
    margin-top: 40px;
}

.blog-list__pagination {
    position: relative;
    display: block;
    text-align: center;
}

.blog-list__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    display: inline-block;
    color: var(--anity-black);
    font-weight: 700;
    font-size: 24px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    font-family: var(--anity-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:hover a,
.blog-list__pagination .pg-pagination li.active a {
    border: 1px solid var(--anity-base);
    color: var(--anity-black);
}


/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/
.blog-page {
    position: relative;
    display: block;
    padding: 140px 0 110px;
}


/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.blog-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 190px;
}

.blog-carousel-page .blog-one__single {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# One Page Two Blog
--------------------------------------------------------------*/
.one-page-two-blog {
    padding: 140px 0 0px;
}

/*--------------------------------------------------------------
# One Page Three Blog
--------------------------------------------------------------*/
.one-page-three-blog {
    padding: 140px 0 0px;
}
.blog-list__img {
    height: 500px;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .blog-list__img {
        height: 350px;
    }
}
@media screen and (max-width: 768px) {
    .blog-list__img {
        height: 250px;
    }
}
@media screen and (max-width: 480px) {
    .blog-list__img {
        height: 180px;
    }
}
.blog-list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-one__img {
    height: 275px;
    overflow: hidden;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.blog-one__img img, .blog-one__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media screen and (max-width: 768px) {
    .blog-details__img {
        height: 40vh;
    }
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/contact.css === */

/*==============================================
    Contact One
===============================================*/
.contact-one {
    position: relative;
    display: block;
    padding: 140px 0 60px;
    z-index: 1;
}

.contact-one__inner {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 69px 109px 59px;
}

.contact-one__inner .section-title {
    margin-bottom: 42px;
}

.contact-one__form {
    position: relative;
    display: block;
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.contact-one__input-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 6px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: 4px;
    line-height: 60px;
}

.contact-one__input-box textarea {
    position: relative;
    height: 132px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: 4px;
    margin-bottom: 0;
}

.contact-one__input-box.text-message-box {
    height: 132px;
    margin-bottom: 40px;
}

.contact-one__btn-box {
    position: relative;
    display: block;
    text-align: center;
}

.contact-one__input-icon {
    position: absolute;
    top: 15px;
    right: 20px;
}

.contact-one__input-icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.contact-two__left {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-two__google-map {
    position: relative;
    display: block;
    height: 480px;
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.contact-two__right {
    position: relative;
    display: block;
}

.contact-two__contact-list {
    position: relative;
    display: block;
}

.contact-two__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 30px 30px;
}

.contact-two__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80px;
    width: 100%;
    height: 80px;
    border: 2px solid #EEEEEE;
    border-radius: 50%;
    z-index: 1;
}

.contact-two__contact-list li .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--anity-black);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.contact-two__contact-list li:hover .icon:before {
    transform: scaleX(1);
}

.contact-two__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.contact-two__contact-list li:hover .icon span {
    transform: scale(0.9);
    color: var(--anity-white);
}

.contact-two__contact-list li .content {
    position: relative;
    display: block;
}

.contact-two__contact-list li .content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.contact-two__contact-list li .content p {
    margin-top: 6px;
}

.contact-two__contact-list li .content p a {
    color: var(--anity-gray);
}

.contact-two__contact-list li .content p a:hover {
    color: var(--anity-base);
}

/*--------------------------------------------------------------
# Contact Three
--------------------------------------------------------------*/
.contact-three {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    z-index: 1;
}

.contact-three__left {
    position: relative;
    display: block;
}

.contact-three__google-map-inner {
    position: relative;
    display: block;
}

.contact-three__google-map {
    position: relative;
    display: block;
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    height: 717.98px;
}

.contact-three__contact-info {
    position: absolute;
    left: 60px;
    bottom: 60px;
    right: 60px;
    background-color: var(--anity-white);
    border-radius: var(--anity-bdr-radius);
    padding: 29px 30px 26px;
    z-index: 2;
}

.contact-three__contact-info-list {
    position: relative;
    display: block;
}

.contact-three__contact-info-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-three__contact-info-list li+li {
    margin-top: 22px;
}

.contact-three__contact-info-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50px;
    width: 100%;
    height: 50px;
    border: 1px solid var(--anity-base);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-three__contact-info-list li .icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    opacity: 0;
    border-radius: 50%;
    transition: transform 400ms ease, opacity 400ms ease;
    background-color: var(--anity-base);
    z-index: -1;
}

.contact-three__contact-info-list li:hover .icon::after {
    transform: scale(1);
    opacity: 1;
}

.contact-three__contact-info-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--anity-base);
    transition: all 0.4s ease-in-out;
}

.contact-three__contact-info-list li:hover .icon span {
    color: var(--anity-white);
}

.contact-three__contact-info-list li .content {
    position: relative;
    display: block;
}

.contact-three__contact-info-list li .content h5 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--anity-font);
    margin-bottom: 5px;
}

.contact-three__contact-info-list li .content p a {
    color: var(--anity-gray);
}

.contact-three__contact-info-list li .content p a:hover {
    color: var(--anity-base);
}

.contact-three__right {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    padding: 40px 40px 40px;
}

.contact-three__right-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-three__form {
    position: relative;
    display: block;
}

.contact-three__input-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.contact-three__input-box input[type="text"],
.contact-three__input-box input[type="email"] {
    height: 65px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: 35px;
}

.contact-three__input-box .select-box {
    width: 100%;
}

.contact-three__input-box .nice-select {
    height: 65px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: 35px;
    line-height: 62px;
    float: none;
}

.contact-three__input-box .nice-select:after {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--anity-gray);
    border-right: 2px solid var(--anity-gray);
    margin-top: 0px;
    z-index: 10;
}

.contact-three__input-box .nice-select .option {
    color: var(--anity-white);
}

.contact-three__input-box textarea {
    position: relative;
    height: 139px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: 35px;
    margin-bottom: 0;
}

.contact-three__input-box.text-message-box {
    height: 139px;
}

.contact-three__btn-box {
    position: relative;
    display: block;
}



/*==============================================
    Contact Four
===============================================*/
.contact-four {
    position: relative;
    display: block;
    padding: 140px 0px 140px;
}

.contact-four .container {
    max-width: 970px;
}

.contact-four__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.50;
}

.contact-info-one {
    position: relative;
    display: block;
}

.contact-info-one .info-column {
    margin-bottom: 50px;
}

.contact-info-one .info-column .inner-box {
    position: relative;
    display: block;
    text-align: center;
}

.contact-info-one .info-column .inner-box .icon {
    position: relative;
    color: var(--anity-base);
    font-size: 48px;
    margin-bottom: 35px;
}

.contact-info-one .info-column h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-info-one .info-column p {
    margin: 0;
}

.contact-info-one .info-column p a {
    color: var(--anity-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-one .info-column p a:hover {
    color: var(--anity-base);
}


.contact-info-one__form {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid var(--anity-bdr-color);
    border-radius: 4px;
    padding: 40px 40px 40px;
}

.contact-info-one__form form {
    position: relative;
    display: block;
}

.contact-info-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}


.contact-info-one__form form .form-group .input-box {
    position: relative;
    display: block;
}

.contact-info-one__form form .form-group input[type="text"],
.contact-info-one__form form .form-group input[type="email"],
.contact-info-one__form form .form-group textarea {
    position: relative;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--anity-bdr-color);
    background-color: transparent;
    width: 100%;
    height: 60px;
    color: var(--anity-gray);
    font-size: 16px;
    font-family: var(--anity-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.contact-info-one__form form .form-group textarea {
    height: 220px;
    padding-top: 22px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.contact-info-one__form form .form-group input[type="text"]::-webkit-input-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="text"]:-moz-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="text"]::-moz-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="text"]:-ms-input-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="email"]::-webkit-input-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="email"]:-moz-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="email"]::-moz-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group input[type="email"]:-ms-input-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group textarea::-webkit-input-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group textarea:-moz-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group textarea::-moz-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group textarea:-ms-input-placeholder {
    color: var(--anity-gray);
}

.contact-info-one__form form .form-group.form-group--1 {
    margin-top: 40px;
    margin-bottom: 0;
}

.contact-info-one__form form .form-group button {
    position: relative;
    justify-content: center;
}




























/*--------------------------------------------------------------
# One Page Contact Sec
--------------------------------------------------------------*/
.one-page-contact-sec {
    padding: 140px 0 140px;
}

/*--------------------------------------------------------------
# One Page Two Contact Sec
--------------------------------------------------------------*/
.one-page-two-contact-sec {
    padding: 110px 0 140px;
}











/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/country.css === */

/*==============================================
   Country One
===============================================*/
.country-one {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 135px 0 110px;
    z-index: 1;
}

.country-one__top-title-box {
    position: relative;
    display: block;
}

.country-one__top-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom: 69px;
}

.country-one__top-title span {
    color: var(--anity-primary);
}

.country-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 10px 10px 9px;
    margin-bottom: 30px;
}

.country-one__img {
    position: relative;
    display: block;
    max-width: 81px;
    width: 100%;
    z-index: 1;
}

.country-one__img:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #E20935, #16171A) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.country-one__img img {
    width: 100%;
    border-radius: 50%;
}

.country-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.country-one__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.country-one__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}





























/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/counter.css === */

/*==============================================
    Counter One
===============================================*/
.counter-one {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.counter-one__top {
    position: relative;
    display: block;
}

.counter-one__needy {
    position: relative;
    display: block;
    border-radius: var(--anity-bdr-radius);
    padding: 80px 60px 80px;
    margin-bottom: 30px;
    z-index: 1;
}

.counter-one__needy-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--anity-bdr-radius);
    z-index: -1;
}

.counter-one__needy-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90.92deg, #343434 0.57%, rgba(0, 0, 0, 0) 99.11%);
    border-radius: var(--anity-bdr-radius);
}

.counter-one__needy-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    color: var(--anity-white);
    margin-bottom: 39px;
}

.counter-one__needy-title span {
    position: relative;
    display: inline-block;
}

.counter-one__needy-title span img {
    position: absolute;
    bottom: -26px;
    right: 7px;
}

.counter-one__needy-btn-box {
    position: relative;
    display: block;
}

.counter-one__author-box {
    position: relative;
    display: block;
    background-color: var(--anity-base);
    border-radius: var(--anity-bdr-radius);
    padding: 42px 40px 42px;
    z-index: 1;
}

.counter-one__author-box-shape {
    position: absolute;
    right: 7px;
    bottom: 14px;
    opacity: .10;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.counter-one__author-box-shape img {
    width: auto;
}

.counter-one__author-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-one__author-img {
    position: relative;
    display: block;
}

.counter-one__author-img img {
    width: auto;
    border-radius: 50%;
}

.counter-one__author-content {
    position: relative;
    display: block;
}

.counter-one__author-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--anity-white);
    margin-bottom: 7px;
}

.counter-one__author-content span {
    color: var(--anity-white);
}

.counter-one__count-box {
    position: relative;
    display: block;
    margin-top: 98px;
}

.counter-one__count {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one__count h1 {
    font-size: 100px;
    line-height: 100px;
    color: var(--anity-white);
    font-weight: 700;
}

.counter-one__count span {
    font-size: 100px;
    line-height: 100px;
    color: var(--anity-white);
    font-weight: 700;
    font-family: var(--anity-font-two);
}

.counter-one__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--anity-white);
    margin-top: 2px;
}

.counter-one__bottom {
    position: relative;
    display: block;
}

.counter-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    text-align: center;
    margin-bottom: 30px;
    padding: 79px 30px 76px;
    z-index: 1;
}

.counter-one__count-box-2 {
    position: relative;
    display: block;
}

.counter-one__count-2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-one__count-2 h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
}

.counter-one__count-2 span {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    color: var(--anity-base);
    font-family: var(--anity-font-two);
}

.counter-one__single-1 .counter-one__count-2 span {
    color: var(--anity-extra);
}

.counter-one__single-4 .counter-one__count-2 span {
    color: var(--anity-extra);
}

.counter-one__text-2 {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--anity-font-two);
    font-weight: 700;
    margin-top: 15px;
}

.counter-one__single-shape-1 {
    position: absolute;
    top: 10px;
    left: 10px;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.counter-one__single-2 .counter-one__single-shape-1 {
    bottom: 10px;
    left: 10px;
    top: inherit;
}

.counter-one__single-3 .counter-one__single-shape-1 {
    bottom: 10px;
    left: 10px;
    top: inherit;
}

.counter-one__single-4 .counter-one__single-shape-1 {
    left: inherit;
    right: 10px;
}

.counter-one__single-shape-1 img {
    width: auto;
    opacity: .10;
}

.counter-one__bottom-img {
    position: relative;
    display: block;
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.counter-one__bottom-img::after {
    background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.counter-one__bottom-img:hover::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.counter-one__bottom-img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/coming-soon.css === */

/*--------------------------------------------------------------
# Coming Soon Page
--------------------------------------------------------------*/
.coming-soon-page {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.coming-soon-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--anity-black);
    background-blend-mode: luminosity;
    border-top: 40px dotted rgba(0, 0, 0, 0.5);
    border-bottom: 40px dotted rgba(0, 0, 0, 0.5);
    border-left: 40px dotted rgba(0, 0, 0, 0.7);
    border-right: 40px dotted rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.coming-soon-page__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
}

.coming-soon-page__content {
    position: relative;
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
}

.coming-soon-page__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.coming-soon-page__content .big-title {
    position: relative;
    display: inline-block;
    color: transparent;
    color: rgba(var(--anity-white-rgb), .30);
    font-size: 80px;
    line-height: 1.1em;
    font-family: var(--anity-font-2);
    font-weight: 700;
    text-transform: uppercase;
    word-spacing: 5px;
}

.coming-soon-page .timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 42px;
    z-index: 2;
}

.coming-soon-page .timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 170px;
    height: 170px;
    margin: 0px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 0%;
}

.coming-soon-page .timer-box .countdown-timer li span.days,
.coming-soon-page .timer-box .countdown-timer li span.hours,
.coming-soon-page .timer-box .countdown-timer li span.minutes,
.coming-soon-page .timer-box .countdown-timer li span.seconds {
    color: #ffffff;
    font-size: 55px;
    line-height: 60px;
    font-weight: 700;
    font-family: var(--anity-font);
}

.coming-soon-page .timer-box .countdown-timer li span.timeRef {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 11px;
    font-family: var(--anity-font);
}

.coming-soon-page__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.coming-soon-page__content .inner .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.coming-soon-page__subscribe-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon-page__subscribe-box form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.coming-soon-page__subscribe-box form input[type="email"] {
    position: relative;
    display: block;
    max-width: 490px;
    width: 100%;
    height: 60px;
    border-radius: var(--anity-bdr-radius);
    background: var(--anity-black);
    border: 1px solid rgba(var(--anity-white-rgb), .10) !important;
    color: var(--anity-gray);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--anity-font);
    outline: none;
}

.coming-soon-page__btn {
    border: none;
}

/* === public/assets/css/module-css/cta.css === */

/*==============================================
    CTA One
===============================================*/
.cta-one {
    position: relative;
    display: block;
    background-color: var(--anity-base);
    padding: 136px 0 140px;
    z-index: 1;
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-one__inner {
    position: relative;
    display: block;
    text-align: center;
}

.cta-one__title-box {
    position: relative;
    display: block;
}

.cta-one__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: var(--anity-white);
}

.cta-one__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 42px;
}



/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
    position: relative;
    display: block;
    z-index: 1;
}

.cta-two__inner {
    position: relative;
    display: block;
    text-align: center;
    background-color: #121212;
    border-radius: 37px;
    padding: 146px 0 146px;
    overflow: hidden;
    z-index: 1;
}

.cta-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .50;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-two__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: var(--anity-white);
}

.cta-two__btn-box {
    position: relative;
    display: block;
    margin-top: 49px;
}

/*--------------------------------------------------------------
# CTA Three
--------------------------------------------------------------*/
.cta-three {
    position: relative;
    display: block;
    background-image: -ms-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -moz-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -o-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ff5528), color-stop(100, #ffa415));
    background-image: -webkit-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: linear-gradient(to right, #ff5528 0%, #ffa415 100%);
    padding: 68px 0px 61px;
}


.cta-three__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-three__content .left-box {
    position: relative;
    display: block;
}

.cta-three__content .left-box .title {
    position: relative;
    display: block;
}

.cta-three__content .left-box .title h2 {
    color: var(--anity-white);
    font-size: 42px;
    line-height: 1.1em;
    font-weight: 900;
}

.cta-three__content .left-box .text {
    position: relative;
    display: block;
    padding-top: 14px;
}

.cta-three__content .left-box .text p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    line-height: 30px;
}

.cta-three__content .right-box {
    position: relative;
    display: block;
}

.cta-three__content .right-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.cta-three__content .right-box .btn-box .thm-btn {
    color: var(--anity-base);
    background-color: var(--anity-white);
    border: 1px solid var(--anity-white);
}

.cta-three__content .right-box .btn-box .thm-btn:hover {
    color: var(--anity-white);
    border-color: var(--anity-black);
}

.cta-three__content .right-box .btn-box .thm-btn::after {
    background-color: var(--anity-black);
}

.cta-three__content .right-box .btn-box .thm-btn:hover span {
    background-color: var(--anity-base);
    color: var(--anity-white);
}











/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/donate.css === */

/*==============================================
    Donate One
===============================================*/
.donate-one {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.donate-one.pdt {
    padding-top: 140px;
}

.donate-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-base);
    border-radius: 20px;
    padding: 77px 60px 55px;
    margin-bottom: 30px;
    z-index: 1;
}

.donate-one__single-2 {
    background-color: var(--anity-extra);
}

.donate-one__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.donate-one__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.donate-one__title a {
    color: var(--anity-white);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.donate-one__title a:hover {
    color: var(--anity-black);
    background-size: 100% 1px;
}

.donate-one__text {
    font-size: 18px;
    line-height: 34px;
    color: var(--anity-white);
    margin-top: 20px;
    margin-bottom: 38px;
}

.donate-one__btn-box {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Donate Two
--------------------------------------------------------------*/
.donate-two {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.donate-two__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 780px;
    background-color: var(--anity-extra-two);
    z-index: -1;
}

.donate-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.donate-two__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 55px;
}

.donate-two__top .section-title-two {
    margin-bottom: 0px;
}

.donate-two__top .section-title-two__title span img {
    right: -15px;
}

.donate-two__btn-box {
    position: relative;
    display: block;
}

.donate-two__single {
    position: relative;
    display: block;
    background: var(--anity-white);
    box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
    border-radius: var(--anity-bdr-radius);
    padding: 20px 20px 40px;
    margin-bottom: 40px;
}

.donate-two__img-box {
    position: relative;
    display: block;
}

.donate-two__img {
    position: relative;
    display: block;
}

.donate-two__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.donate-two__img img:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 0;
    width: 100%;
    transition: 0.5s;
    overflow: hidden;
}

.donate-two__single:hover .donate-two__img img:nth-child(2) {
    height: 100%;
    visibility: visible;
}

.donate-two__content {
    position: relative;
    display: block;
    padding: 40px 20px 0;
}

.donate-two__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
}

.donate-two__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.donate-two__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.donate-two__single-2 .donate-two__title a:hover {
    color: var(--anity-extra);
}

.donate-two__single-3 .donate-two__title a:hover {
    color: var(--anity-primary);
}

.donate-two__text {
    margin-top: 10px;
    margin-bottom: 20px;
}

.donate-two__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.donate-two__raised {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.donate-two__raised span {
    color: var(--anity-black);
}

.donate-two__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 45px;
    margin-top: 16px;
}

.donate-two__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--anity-extra-two);
    border-radius: 0px;
}

.donate-two__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.donate-two__single-2 .donate-two__progress .bar-inner {
    background: var(--anity-extra);
}

.donate-two__single-3 .donate-two__progress .bar-inner {
    background: var(--anity-primary);
}

.donate-two__progress .bar-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--anity-white);
    border: 3px solid var(--anity-base);
    transform: translateY(-50%);
}

.donate-two__single-2 .donate-two__progress .bar-inner::before {
    border: 3px solid var(--anity-extra);
}

.donate-two__single-3 .donate-two__progress .bar-inner::before {
    border: 3px solid var(--anity-primary);
}

/*--------------------------------------------------------------
# Donate Three
--------------------------------------------------------------*/
.donate-three {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 140px 0 110px;
    z-index: 1;
}

.donate-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

.donate-three__top .section-title {
    margin-bottom: 0;
}

.donate-three__btn-box {
    position: relative;
    display: block;
    top: -10px;
}

.donate-three__single {
    position: relative;
	flex: 1;
    display: flex;
	flex-direction: column;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
}

.donate-three__img-box {
    position: relative;
    display: block;
}

.donate-three__img {
    position: relative;
    display: block;
    border-top-left-radius: var(--anity-bdr-radius);
    border-top-right-radius: var(--anity-bdr-radius);
}

.donate-three__img img {
    width: 100%;
    border-top-left-radius: var(--anity-bdr-radius);
    border-top-right-radius: var(--anity-bdr-radius);
}

.donate-three__img iframe {
    width: 100%;
    border-top-left-radius: var(--anity-bdr-radius);
    border-top-right-radius: var(--anity-bdr-radius);
}

.donate-three__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.donate-three__single:hover .donate-three__img img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.donate-three__img iframe:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.donate-three__single:hover .donate-three__img iframe:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.donate-three__content {
    position: relative;
    display: block;
    padding: 20px 10px 20px;
}

.donate-three__title {
    font-size: 24px;
    line-height: 25px;
    font-weight: 700;
}

.donate-three__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.donate-three__title a:hover {
    color: var(--anity-base);
}

.donate-three__single-2 .donate-three__title a:hover {
    color: var(--anity-extra);
}

.donate-three__single-3 .donate-three__title a:hover {
    color: var(--anity-primary);
}

.donate-three__text {
    margin-top: 7px;
    margin-bottom: 7px;;
	line-height: 1.5em;
}

.donate-three__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.donate-three__raised {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.donate-three__raised span {
    color: var(--anity-black);
}

.donate-three__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 16px;
	padding: 0px 15px;
}

.donate-three__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--anity-extra-two);
    border-radius: 0px;
}

.donate-three__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.donate-three__single-2 .donate-three__progress .bar-inner {
    background: var(--anity-extra);
}

.donate-three__single-3 .donate-three__progress .bar-inner {
    background: var(--anity-primary);
}

.donate-three__progress .bar-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--anity-white);
    border: 3px solid var(--anity-base);
    transform: translateY(-50%);
}

.donate-three__single-2 .donate-three__progress .bar-inner::before {
    border: 3px solid var(--anity-extra);
}

.donate-three__single-3 .donate-three__progress .bar-inner::before {
    border: 3px solid var(--anity-primary);
}


/*--------------------------------------------------------------
# Donation One
--------------------------------------------------------------*/
.donation-one {
    position: relative;
    display: block;
    z-index: 1;
}

.donation-one.pdt {
    padding-top: 120px;
}



.donation-one__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.donation-one__left {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    min-height: 575px;
    z-index: 1;
}

.donation-one__left-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--anity-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.donation-one__right {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    z-index: 1;
}

.donation-one__content-box {
    position: relative;
    display: block;
    background-color: var(--anity-black);
    padding: 120px 0 120px;
    padding-left: 90px;
}

.donation-one__content-box .section-title-two__title {
    color: var(--anity-white);
}

.donation-one__donate-box {
    position: relative;
    display: block;
}

.donation-one__donate-box .donate-amount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 26px;
}

.donation-one__donate-box .donate-amount .amount-btn {
    color: var(--anity-gray);
    padding: 19px 30px 19px;
    background-color: #232425;
    transition: all 0.4s ease-in-out;
    border: none;
    font-size: 18px;
    line-height: 18px;
    border-radius: 28px;
}

.donation-one__donate-box .donate-amount .amount-btn.active {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.donation-one__donate-box .donate-now {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.donation-one__donate-box .donate-now input {
    width: 100%;
    padding: 13px 20px 13px;
    background-color: #232425;
    color: var(--anity-gray);
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 30px;
}




.donation-one__right--style2 {
    position: relative;
}

.donation-one__right--style2 .donation-one__content-box {
    background-image: -ms-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -moz-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -o-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ff5528), color-stop(100, #ffa415));
    background-image: -webkit-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: linear-gradient(to right, #ff5528 0%, #ffa415 100%);
}

.donation-one__right--style2 .donation-one__donate-box .donate-amount .amount-btn {
    color: rgba(255, 255, 255, 0.8);
}



/*--------------------------------------------------------------
  # Donation Details
  --------------------------------------------------------------*/
.donation-details {
    position: relative;
    display: block;
    padding: 40px 0 40px;
    z-index: 1;
}

.donation-details__inner {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    /* Equal inset on top/left/right so the title sits the same distance from the border */
    padding: 28px 28px 32px;
    width: 100%;
    max-width: min(720px, calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.donation-details__payment-method-box {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.donation-details__payment-method-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.donation-details__quote-radio {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.donation-details__quote-radio .custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.donation-details__quote-radio input[type="radio"] {
    display: none;
}

.donation-details__quote-radio .custom-radio .radio-dot {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: block;
    position: relative;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.donation-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot {
    border-color: var(--anity-base);
}

.donation-details__quote-radio .custom-radio .radio-dot::after {
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: #dddddd;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.3s ease-in-out 0s;
}

.donation-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--anity-base);
}

.donation-details__quote-radio .custom-radio .radio-text {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
    position: relative;
    top: 2px;
}

.donation-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-text {
    color: var(--anity-black);
}

.donation-details__personal-info {
    position: relative;
    display: block;
}

.donation-details__personal-info-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 47px;
}

.donation-details__form {
    position: relative;
    display: block;
}

.donation-details__input-box {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.donation-details__input-box-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--anity-gray);
    line-height: 18px;
    margin-bottom: 27px;
}

/* Amount field only as wide as the label text (not full row) */
.donation-details__donate-box .donate-now--amount-fit {
	display: grid;
	grid-template-columns: max-content;
	justify-items: stretch;
	max-width: 100%;
	align-self: flex-start;
}

.donation-details__donate-box .donate-now--amount-fit input.addAmount-value {
	width: 70%;
	min-width: 0;
	max-width: 100%;
	justify-self: start;
}

.donation-details__input-box input[type="text"],
.donation-details__input-box input[type="email"] {
    height: 80px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: #dddddd;
    display: block;
    border-radius: var(--anity-bdr-radius);
    font-family: var(--anity-font-two);
}

.donation-details__donate-box-outer {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.donation-details__donate-box-divider {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--anity-gray);
    text-transform: uppercase;
    position: relative;
    margin-top: 55px;
}

.donation-details__donate-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 35px;
}

.donation-details__donate-box .donate-amount {
    position: relative;
    display: block;
}

.donation-details__donate-box .donate-amount .amount-btn {
    color: var(--anity-gray);
    padding: 30px 30px 30px;
    background-color: var(--anity-white);
    transition: all 0.4s ease-in-out;
    border: none;
    font-size: 20px;
    line-height: 20px;
    border-radius: var(--anity-bdr-radius);
    font-weight: 700;
    font-family: var(--anity-font-two);
}

.donation-details__donate-box .donate-amount .amount-btn+.amount-btn {
    margin-left: 15px;
}

.donation-details__donate-box .donate-amount .amount-btn.active {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.donation-details__donate-box .donate-now {
    position: relative;
    display: block;
}

.donation-details__donate-box .donate-now input {
    height: 52px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    outline: none;
    font-size: 26px;
    font-weight: 700;
    color: #828181;
    display: block;
    border-radius: var(--anity-bdr-radius);
    font-family: var(--anity-font-two);
    line-height: 1.15;
}

.donation-details__donate-amout {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--anity-font-two);
}
.donation-details__donate-amout .donateAmount {
	color: var(--anity-font-two);
}

.donation-details__donate-amout span {
    font-size: 20px;
    color: var(--anity-black);
}

/*--------------------------------------------------------------
# Donation Page
--------------------------------------------------------------*/
.donation-page {
    position: relative;
    display: block;
    padding: 40px 0 40px;
}

/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.donation-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 190px;
}

.donation-carousel-page .donate-three__single {
    margin-bottom: 0;
}
.donation-details__btn-box {
	text-align: left;
}

.donation-details__btn-box .donation-details__btn{
	width:200px;
}

/*--------------------------------------------------------------
# Montonio widget width (stable on wide viewports; was squeezed in col-6)
# Uses #montonio-gateway-div so shop checkout (no .donation-details section) still matches
--------------------------------------------------------------*/
#montonio-gateway-div #montonio-checkout {
	width: 440px;
	max-width: 100%;
	box-sizing: border-box;
	flex-shrink: 0;
}

/*--------------------------------------------------------------
# Montonio bank grid (SDK injects .montonio-container / .montonio-bank)
--------------------------------------------------------------*/
#montonio-checkout .montonio-container {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding-top: 12px !important;
	width: 100%;
	flex-direction: unset !important;
	flex-wrap: unset !important;
	align-items: stretch;
}

#montonio-checkout .montonio-bank {
	width: 100% !important;
	max-width: none;
	height: 70px !important;
	min-height: 0;
	margin: 0 !important;
	padding: 8px !important;
	box-sizing: border-box;
}

#montonio-checkout .montonio-bank img {
	max-height: 34px;
}

@media (max-width: 575px) {
	/* Keep 4 banks per row on phones; shrink tiles to fit */
	#montonio-gateway-div #montonio-checkout {
		width: 100%;
		max-width: 100%;
	}

	#montonio-checkout .montonio-container {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 5px;
		padding-top: 8px !important;
	}

	#montonio-checkout .montonio-bank {
		height: 48px !important;
		padding: 4px !important;
		border-radius: 12px;
	}

	#montonio-checkout .montonio-bank img {
		max-height: 22px;
	}
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/error-page.css === */

/*--------------------------------------------------------------
# Error Page
--------------------------------------------------------------*/
.error-page {
    position: relative;
    display: block;
    padding: 130px 0 140px;
    z-index: 1;
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center;
}

.error-page__title-box {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.error-page__title {
    position: relative;
    display: inline-block;
    font-size: 350px;
    line-height: 350px;
    font-weight: 500;
    color: var(--anity-base);
    z-index: 2;
}

.error-page__tagline {
    font-size: 40px;
    line-height: 49px;
    font-weight: 400;
    color: var(--anity-black);
    text-transform: capitalize;
    margin-bottom: 8px;
}

.error-page__text {
    font-size: 20px;
}

.error-page__form {
    position: relative;
    display: block;
    margin: 47px auto 20px;
}

.error-page__form-input {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.error-page__form input[type="search"] {
    height: 52px;
    width: 100%;
    outline: none;
    background-color: var(--anity-extra-two);
    border: 0;
    font-size: 14px;
    color: var(--anity-gray);
    font-weight: 500;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: var(--anity-bdr-radius);
}

.error-page__form button[type="submit"] {
    background-color: transparent;
    color: var(--anity-black);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/event.css === */

/*==============================================
    Event One
===============================================*/
.event-one {
    position: relative;
    display: block;
    padding: 0px 0 0px;
    z-index: 1;
}

.event-one.pdb {
    padding-bottom: 110px;
}

.event-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid var(--anity-extra-two);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 19px 19px 29px;
}

.event-one__img-box {
    position: relative;
    display: block;
}

.event-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.event-one__img::after {
    background: rgba(var(--anity-white-rgb, 255, 255, 255), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.event-one__single:hover .event-one__img::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.event-one__img::before {
    background: rgba(var(--anity-white-rgb, 255, 255, 255), 0.3);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 51%;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.event-one__single:hover .event-one__img::before {
    bottom: 0;
    top: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.event-one__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    filter: grayscale(1);
}

.event-one__date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 10px;
    background-color: var(--anity-white);
    padding: 5px 15px 5px;
    padding-right: 52px;
    z-index: 2;
}

.event-one__date p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--anity-black);
}

.event-one__date p span {
    color: var(--anity-extra);
}

.event-one__content {
    position: relative;
    display: block;
    padding-top: 22px;
}

.event-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
}

.event-one__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.event-one__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.event-one__text {
    margin-top: 22px;
    margin-bottom: 20px;
}

.event-one__location {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #616670;
}

.event-one__location span {
    color: var(--anity-base);
}

.event-one__btn-box {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
    position: relative;
    display: block;
    padding: 140px 0 0;
    z-index: 1;
}

.event-details .container {
    max-width: 800px;
}

.event-details__inner {
    position: relative;
    display: block;
}

.event-details__img {
    position: relative;
    display: block;
}

.event-details__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.event-details__text-1 {
    font-size: 18px;
    color: var(--anity-black);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 25px;
}

.event-details__text-box {
    position: relative;
    display: block;
    background-color: var(--anity-primary);
    border-radius: var(--anity-bdr-radius);
    padding: 60px 60px 60px;
    margin-top: 38px;
    margin-bottom: 36px;
}

.event-details__text-box p {
    font-size: 20px;
    line-height: 35px;
    color: var(--anity-black);
}

.event-details__text-4 {
    margin-top: 14px;
    margin-bottom: 34px;
}

.event-details__points {
    position: relative;
    display: block;
}

.event-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-details__points li+li {
    margin-top: 5px;
}

.event-details__points-shape {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--anity-gray);
}

.event-details__text-5 {
    margin-top: 34px;
    margin-bottom: 50px;
}

.event-details__events-box {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.event-details__events-box .row {
    --bs-gutter-x: 20px;
}

.event-details__event-single {
    position: relative;
    display: block;
    background-color: var(--anity-base);
    border-radius: var(--anity-bdr-radius);
    padding: 20px 20px 20px;
    margin-bottom: 30px;
}

.event-details__event-single h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--anity-white);
    margin-bottom: 5px;
}

.event-details__event-list {
    position: relative;
    display: block;
}

.event-details__event-list li {
    position: relative;
    display: block;
}

.event-details__event-list li p {
    color: var(--anity-white);
}

.event-details__event-list li p span {
    font-weight: 700;
    color: var(--anity-white);
    position: relative;
    margin-right: 10px;
}

.event-details__event-list li p a {
    color: var(--anity-white);
}

.event-details__event-list li p a:hover {
    color: var(--anity-black);
}

/*==============================================
   Two Section
===============================================*/
.additional-event {
    position: relative;
    display: block;
}

.additional-event__wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.additional-event__left {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    background-color: var(--anity-base);
    z-index: 1;
}

.additional-event__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .09;
    z-index: -1;
}

.additional-event__content-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 122px 0 115px;
}

.additional-event__sub-title {
    font-size: 20px;
    color: var(--anity-white);
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.additional-event__title {
    color: var(--anity-white);
    font-size: 60px;
    line-height: 65px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 25px 0 0px;
}

.additional-event__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    background-color: var(--anity-black);
    z-index: 1;
}

/*--------------------------------------------------------------
# Event List
--------------------------------------------------------------*/
.events-list {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.events-list__inner {
    position: relative;
    display: block;
}

.events-list__single-and-date {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.events-list__single {
    position: relative;
    display: flex;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    align-items: center;
    gap: 30px;
    padding: 30px;
}

.events-list__img {
    position: relative;
    display: block;
    max-width: 245px;
    width: 100%;
}

.events-list__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.events-list__content {
    position: relative;
    display: block;
}

.events-list__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
}

.events-list__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.events-list__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.events-list__text {
    margin-bottom: 17px;
    margin-top: 7px;
}

.events-list__date {
    position: relative;
    display: block;
}

.events-list__date li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.events-list__date li+li {
    margin-top: 2px;
}

.events-list__date li .icon {
    position: relative;
    display: inline-block;
    width: 16px;
}

.events-list__date li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.events-list__date li p span {
    color: var(--anity-black);
    font-weight: 600;
}

.events-list__date-box {
    position: relative;
    display: flex;
    background-color: var(--anity-primary);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100px;
    height: 120px;
}

.events-list__date-box p {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    font-family: var(--anity-font-two);
    color: var(--anity-white);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.events-list__date-box p span {
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
.events-page {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}


/*--------------------------------------------------------------
# Events Carousel Page
--------------------------------------------------------------*/
.events-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 190px;
}

.events-carousel-page .event-one__single {
    margin-bottom: 0;
}
.event-one .row > [class*='col-'] {
    display: flex;
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/faq.css === */

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 140px 0 120px;
}

.faq-page__left {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.faq-page .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--anity-black-rgb), .10);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion.active {
    border: 1px solid var(--anity-base);
}

.faq-page .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 20px 30px 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--anity-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--anity-black);
}

.faq-page .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-page .faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    font-size: 15px;
    color: var(--anity-gray);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    width: 21px;
    height: 21px;
}

.faq-page .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: var(--anity-base);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-page .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 18px;
    padding-left: 30px;
    padding-right: 70px;
}

.faq-page .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq-page__right {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

/* === public/assets/css/module-css/feature.css === */

/*==============================================
    Feature One
===============================================*/
.feature-one {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.feature-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #FFDED5;
    border-radius: var(--anity-bdr-radius);
    padding: 59px 40px 57px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one__single:hover {
    transform: translateY(-10px);
}

.feature-one__single-2 {
    background-color: #FFEFD7;
}

.feature-one__single-3 {
    background-color: #CEF9E8;
}

.feature-one__icon {
    position: relative;
    display: inline-block;
}

.feature-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 66px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-one__single-3 .feature-one__icon span {
    color: var(--anity-extra);
}

.feature-one__single:hover .feature-one__icon span {
    transform: scale(0.9);
}

.feature-one__content {
    position: relative;
    display: block;
}

.feature-one__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 12px;
}

.feature-one__content h4 a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.feature-one__content h4 a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-two {
    position: relative;
    display: block;
    margin-top: -130px;
    padding: 0 0 0px;
    z-index: 10;
}

.feature-two__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: #48B1BC;
    border-radius: var(--anity-bdr-radius);
    gap: 30px;
    padding: 30px 30px 35px;
    margin-bottom: 30px;
}

.feature-two__single-2 {
    background-color: var(--anity-extra);
}

.feature-two__single-3 {
    background-color: var(--anity-base);
}

.feature-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80px;
    width: 100%;
    height: 80px;
    background-color: rgba(var(--anity-white-rgb), .20);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.feature-two__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--anity-black);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.feature-two__single:hover .feature-two__icon:before {
    transform: scaleX(1);
}

.feature-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--anity-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-two__single:hover .feature-two__icon span {
    transform: scale(0.9);
    color: var(--anity-white);
}

.feature-two__content {
    position: relative;
    display: block;
}

.feature-two__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.feature-two__title a {
    color: var(--anity-white);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.feature-two__title a:hover {
    color: var(--anity-black);
    background-size: 100% 1px;
}

.feature-two__text {
    color: var(--anity-white);
    margin-top: 12px;
    margin-bottom: 35px;
}

.feature-two__read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--anity-white);
}

.feature-two__read-more:hover {
    color: var(--anity-black);
}

















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/footer.css === */

/*==============================================
    Site Footer
===============================================*/
.site-footer {
    position: relative;
    display: block;
    background-color: var(--anity-black);
    z-index: 1;
}

.site-footer__newsletter {
    position: relative;
    display: block;
    background-color: var(--anity-base);
    border-bottom: 1px solid rgba(var(--anity-white-rgb), .10);
    -webkit-box-shadow: 0px -8px 25px 2px rgba(52, 52, 52, 0.3);
    box-shadow: 0px -8px 25px 2px rgba(52, 52, 52, 0.3);
}

.site-footer__newsletter-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 0px 12px;
    overflow: hidden;
    z-index: 1;
}

.site-footer__newsletter-left {
    position: relative;
    display: block;
}

.site-footer__newsletter-title-box {
    position: relative;
    display: block;
}

.site-footer__newsletter-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--anity-white);
}

.site-footer__newsletter-right {
    position: relative;
    display: block;
    max-width: 650px;
    width: 100%;
}

.site-footer__newsletter-content {
    position: relative;
    display: block;
}

.site-footer__newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.site-footer__newsletter-input {
    position: relative;
    display: block;
    max-width: 430px;
    width: 100%;
}

.site-footer__newsletter-input:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 1px;
    background-color: rgba(var(--anity-white-rgb), .30);
}

.site-footer__newsletter-input input[type="text"] {
    font-size: 14px;
    color: var(--anity-white);
    font-weight: 400;
    height: 60px;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    outline: none;
}

.site-footer__top {
    position: relative;
    display: block;
}

.site-footer__top-inner {
    position: relative;
    display: block;
    padding: 15px 0 15px;
}

.site-footer__top-inner .row {
	align-items: center;
}

.footer-widget__about {
    position: relative;
    display: block;
    padding-top: 14px;
}

.footer-widget__about-logo {
    position: relative;
    display: inline-block;
}

.footer-widget__about-text {
    margin: 0;
    color: var(--anity-white);
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-footer__social {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__social 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(--anity-white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer__social a:hover {
    color: var(--anity-white);
    background-color: var(--anity-base);
}

.site-footer__social a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--anity-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.site-footer__social a:hover:before {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.site-footer__social a+a {
    margin-left: 10px;
}

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 68px;
}

.footer-widget__title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--anity-white);
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 32px;
}

.footer-widget__services-list {
    position: relative;
    display: block;
}

.footer-widget__services-list li+li {
    margin-top: 15px;
}

.footer-widget__services-list li a {
    color: var(--anity-white);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__services-list li a:hover {
    color: var(--anity-base);
}

.footer-widget__links {
    position: relative;
    display: block;
}

.footer-widget__contact {
    position: relative;
    display: block;
    margin-left: 19px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-widget__contact-list li+li {
    margin-top: 16px;
}

.footer-widget__contact-list li .icon {
    position: relative;
    display: inline-block;
}

.footer-widget__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.footer-widget__contact-list li p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--anity-font-two);
    color: var(--anity-white);
}

.footer-widget__contact-list li p a {
    color: var(--anity-white);
}

.footer-widget__contact-list li p a:hover {
    color: var(--anity-base);
}

.site-footer__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--anity-white-rgb), .10);
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 23px;
}

.site-footer__copyright {
    position: relative;
    display: block;
    top: 3px;
}

.site-footer__copyright-text {
    color: var(--anity-white);
}

.site-footer__copyright-text a {
    color: var(--anity-white);
    font-weight: 600;
    text-transform: capitalize;
}

.site-footer__copyright-text a:hover {
    color: var(--anity-base);
}

.site-footer__bottom-menu-box {
    position: relative;
    display: block;
    top: 3px;
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer__bottom-menu li+li {
    margin-left: 20px;
}

.site-footer__bottom-menu li a {
    position: relative;
    display: inline-block;
    color: var(--anity-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--anity-base);
}

/*==============================================
    Site Footer Two
===============================================*/
.site-footer-two {
    position: relative;
    display: block;
    background-color: var(--anity-black);
    overflow: hidden;
    z-index: 1;
}

.site-footer-two__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .02;
    z-index: -1;
}

.site-footer-two__shape-1 img {
    width: auto;
}

.site-footer-two__top {
    position: relative;
    display: block;
}

.site-footer-two__top-inner {
    position: relative;
    display: block;
    padding: 80px 0 80px;
}

.footer-widget-two__about {
    position: relative;
    display: block;
}

.footer-widget-two__about-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: var(--anity-white);
}

.footer-widget-two__about-text {
    margin: 0;
    color: rgba(var(--anity-white-rgb), .80);
    padding-top: 19px;
    padding-bottom: 40px;
}

.footer-widget-two__btn-box {
    position: relative;
    display: block;
}

.footer-widget-two__services {
    position: relative;
    display: block;
}

.footer-widget-two__title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--anity-white);
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 32px;
    margin-top: 33px;
}

.footer-widget-two__services-list {
    position: relative;
    display: block;
}

.footer-widget-two__services-list li+li {
    margin-top: 15px;
}

.footer-widget-two__services-list li a {
    color: rgba(var(--anity-white-rgb), .80);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget-two__services-list li a:hover {
    color: var(--anity-base);
}

.footer-widget-two__links {
    position: relative;
    display: block;
    margin-left: 22px;
}

.footer-widget-two__contact {
    position: relative;
    display: block;
    margin-left: 80px;
}

.footer-widget-two__contact-list {
    position: relative;
    display: block;
}

.footer-widget-two__contact-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-widget-two__contact-list li+li {
    margin-top: 16px;
}

.footer-widget-two__contact-list li .icon {
    position: relative;
    display: inline-block;
}

.footer-widget-two__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.footer-widget-two__contact-list li p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--anity-font-two);
    color: var(--anity-white);
}

.footer-widget-two__contact-list li p a {
    color: var(--anity-white);
}

.footer-widget-two__contact-list li p a:hover {
    color: var(--anity-base);
}

.site-footer-two__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.site-footer-two__social 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(--anity-white);
    background-color: transparent;
    border: 1px solid var(--anity-base);
    border-radius: 10px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer-two__social a:hover {
    color: var(--anity-white);
    background-color: var(--anity-base);
}

.site-footer-two__social a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--anity-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.site-footer-two__social a:hover:before {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.site-footer-two__social a+a {
    margin-left: 10px;
}

.site-footer-two__bottom {
    position: relative;
    display: block;
}

.site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 23px;
    border-top: 1px solid rgba(var(--anity-white-rgb), .10);
}

.site-footer-two__copyright {
    position: relative;
    display: block;
    top: 3px;
}

.site-footer-two__copyright-text {
    color: rgba(var(--anity-white-rgb), .70);
}

.site-footer-two__copyright-text a {
    color: rgba(var(--anity-white-rgb), .70);
}

.site-footer-two__copyright-text a:hover {
    color: var(--anity-base);
}

.site-footer-two__bottom-menu-box {
    position: relative;
    display: block;
    top: 3px;
}

.site-footer-two__bottom-menu {
    position: relative;
    display: block;
    overflow: hidden;
}

.site-footer-two__bottom-menu li {
    position: relative;
    display: block;
    float: left;
}

.site-footer-two__bottom-menu li+li {
    margin-left: 20px;
}

.site-footer-two__bottom-menu li a {
    position: relative;
    display: inline-block;
    color: rgba(var(--anity-white-rgb), .70);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
    color: var(--anity-base);
}

/*--------------------------------------------------------------
# Site Footer Two Top
--------------------------------------------------------------*/
.site-footer-two__shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: .02;
    transform: translateX(-50%);
    z-index: -1;
}

.site-footer-two__shape img {
    width: auto;
}

.site-footer-two__top-logo {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 73px;
}

.site-footer-two__top-logo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 520px;
    background-color: var(--anity-primary);
    transform: translateY(-50%);
}

.site-footer-two__top-logo::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 1px;
    width: 520px;
    background-color: var(--anity-primary);
    transform: translateY(-50%);
}
@media (min-width: 1200px) {
    .footer-widget__contact{
		margin-left: 343px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1320px) {
	.footer-widget__contact{
		margin-left: 250px;
	}
}
@media (min-width: 990px) {
    .site-footer__bottom-menu{
		margin-right: 65px;
	}
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/found.css === */

/*==============================================
    Found One
===============================================*/
.found-one {
    position: relative;
    display: block;
    padding: 80px 0 40px;
    overflow: hidden;
    z-index: 1;
}

.found-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 730px;
    background-color: var(--anity-black);
    z-index: -1;
}

.found-one__shape-1 {
    position: absolute;
    top: 0;
    left: -40px;
}

.found-one__shape-1 img {
    width: auto;
    filter: invert(5);
}

.found-one .section-title__tagline {
    color: var(--anity-base);
}

.found-one .section-title__title {
	color: var(--anity-black);
}

.found-one__single {
    position: relative;
	flex: 1;
    display: flex;
	flex-direction: column;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    text-align: center;
    margin-bottom: 30px;
}

.found-one__single .found-one__content{
	padding: 20px 20px 30px;
}


.found-one .row > [class*='col-'] {
    display: flex;
}

.found-one__img-box {
    position: relative;
    display: block;
}

.found-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.found-one__img img, .found-one__img iframe {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: 0.5s;
}

.found-one__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 1s;
    overflow: hidden;
}

.found-one__single:hover .found-one__img img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.found-one__img iframe:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 1s;
    overflow: hidden;
}

.found-one__single:hover .found-one__img iframe:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.found-one__content {
    position: relative;
    display: block;
    padding: 22px 5px 0;
}

.found-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
	text-align:left;
}

.found-one__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.found-one__title a:hover {
    color: var(--anity-base);
}

.found-one__text {
    margin-top: 7px;
    margin-bottom: 7px;
    text-align: left;
    line-height: 1.5em;
}

.found-one__progress {
    position: relative;
    display: block;
    width: 100%;
}

.found-one__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: #DDDDDD;
    border-radius: 0px;
}

.found-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-extra);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.found-one__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.found-one__raised span {
    color: var(--anity-black);
}

.found-one__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}
.found-one__img {
    height: 300px;
    overflow: hidden;
}
.found-one__img img, .found-one__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/project.css === */

/*==============================================
    Project Details
===============================================*/
.project-details {
    position: relative;
    display: block;
    padding: 80px 0 80px;
    z-index: 1;
}

.project-details__img {
    position: relative;
    display: block;
}

.project-details__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.project-details__info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 586px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--anity-bdr-radius);
}

.project-details__info-title-box {
    position: relative;
    display: block;
    background-color: #F84D42;
    text-align: center;
    padding: 11px 10px 8px;
}

.project-details__info-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--anity-white);
}

.project-details__info-and-social {
    position: relative;
    display: flex;
    border: 1px solid #E3E3E3;
    background-color: var(--anity-white);
    border-top: 0;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 30px;
    border-bottom-left-radius: var(--anity-bdr-radius);
    border-bottom-right-radius: var(--anity-bdr-radius);
}

.project-details__info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-details__info-list {
    position: relative;
    display: block;
}

.project-details__info-list li {
    position: relative;
    display: block;
}

.project-details__info-list li+li {
    margin-top: 20px;
}

.project-details__info-list li p {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.project-details__info-list li p span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--anity-font);
    color: var(--anity-gray);
    margin-left: 10px;
}

.project-details__social {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.project-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30px;
    height: 30px;
    border: 1px solid var(--anity-base);
    border-radius: 50%;
    font-size: 16px;
    color: var(--anity-base);
}

.project-details__social a:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.project-details__left {
    position: relative;
    display: block;
}

.project-details__title-1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-top: 30px;
    margin-bottom: 19px;
}

.project-details__text-2 {
    margin-top: 20px;
    margin-bottom: 19px;
}

.project-details__points {
    position: relative;
    display: block;
}

.project-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-details__points li+li {
    margin-top: 11px;
}

.project-details__points li .icon {
    position: relative;
    display: inline-block;
}

.project-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--anity-base);
}

.project-details__points li p {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.project-details__title-2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 29px;
    margin-bottom: 22px;
}

.project-details__right {
    position: relative;
    display: block;
    margin-top: 30px;
}

.project-details__right-img-1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-details__right-img-1 img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.project-details__right-img-2 {
    position: relative;
    display: block;
}

.project-details__right-img-2 img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.project-details__pagination {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    margin-top: 30px;
}

.project-details__pagination .pg-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 30px;
}

.project-details__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
}

.project-details__pagination .pg-pagination li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--anity-black);
    gap: 20px;
    font-weight: 700;
    font-size: 20px;
    font-family: var(--anity-font-two);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__pagination .pg-pagination li a:hover {
    color: var(--anity-base);
}

.project-details__pagination .pg-pagination li a i {
    color: var(--anity-base);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F4F4F4;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__pagination .pg-pagination li:hover a i {
    color: var(--anity-white);
    background-color: var(--anity-base);
}

.project-details__pagination .pg-pagination li:first-child a i {
    transform: rotate(-180deg);
}

/*--------------------------------------------------------------
# Cause Details
--------------------------------------------------------------*/
.cause-details {
    position: relative;
    display: block;
    padding: 40px 0 40px;
    z-index: 1;
}

.cause-details__left {
    position: relative;
    display: block;
}

.cause-details__img-box {
	position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cause-details__img {
	height: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cause-details__img img {
	width: 100%;
    border-radius: 15px;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

.cause-details__meta {
    position: relative;
    display: block;
    margin-top: 25px;
}

.cause-details__meta a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--anity-base);
}

.cause-details__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 20px;
}

.cause-details__progress-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cause-details__progress {
    position: relative;
    display: block;
    width: 100%;
}

.cause-details__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: #DDDDDD;
    border-radius: 0px;
}

.cause-details__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.cause-details__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cause-details__raised {
    position: relative;
    display: block;
}

.cause-details__raised p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--anity-black);
}

.cause-details__raised p span {
    font-weight: 400;
    color: var(--anity-gray);
}

.cause-details__raised p i {
    color: var(--anity-base);
}

.cause-details__donation-amout-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 40px;
    border-bottom: 1px solid #DDDDDD;
}

.cause-details__donation-amout-list span {
    position: relative;
    display: inline-block;
    background-color: var(--anity-extra-two);
    padding: 14px 25px;
    border-radius: 35px;
    font-weight: 700;
    line-height: 26px;
    color: var(--anity-gray);
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cause-details__donation-amout-list span:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.cause-details__pament-box {
    position: relative;
    display: block;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 51px;
    margin-bottom: 41px;
}

.cause-details__pament-title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
}

.cause-details__quote-radio {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.cause-details__quote-radio .custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cause-details__quote-radio input[type="radio"] {
    display: none;
}

.cause-details__quote-radio .custom-radio .radio-dot {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: block;
    position: relative;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cause-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot {
    border-color: var(--anity-base);
}

.cause-details__quote-radio .custom-radio .radio-dot::after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #dddddd;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.3s ease-in-out 0s;
}

.cause-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--anity-base);
}

.cause-details__quote-radio .custom-radio .radio-text {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
    position: relative;
    top: 2px;
}

.cause-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-text {
    color: var(--anity-black);
}

.cause-details__form {
    position: relative;
    display: block;
}

.cause-details__input-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.cause-details__input-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 12px;
    font-family: var(--anity-font);
}

.cause-details__input-box input[type="text"],
.cause-details__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    background-color: var(--anity-extra-two);
    border: none;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
    line-height: 60px;
}

.cause-details__donate-and-btn {
    position: relative;
    display: block;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.cause-details__donate-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cause-details__donate-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 12px;
    font-family: var(--anity-font);
}

.cause-details__donate {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
	border:none;
}

.cause-details__donate input {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
    background-color: var(--anity-extra-two);
    padding: 16px 30px 16px;
    border-radius: var(--anity-bdr-radius);
	border:none;
}

.cause-details__donate p {
    font-weight: 700;
    color: var(--anity-black);
}

.cause-details__donate-btn {
    position: relative;
    display: block;
}

.cause-details__donate-btn button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--anity-base);
    color: var(--anity-white);
    padding: 16px 47px 16px;
    border-radius: var(--anity-bdr-radius);
    border: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cause-details__donate-btn button:hover {
    background-color: var(--anity-black);
}

.cause-details__text-2 {
    margin-top: 24px;
    margin-bottom: 30px;
}

.cause-details__img-box-2 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.cause-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.cause-details__img-box-img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.cause-details__title-1 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700px;
}

.cause-details__text-4 {
    margin-top: 22px;
    margin-bottom: 22px;
}

.cause-details__text-4 .color-black {
    color: var(--anity-black);
    font-weight: 600;
}

.cause-details__text-4 .color-base {
    color: var(--anity-base);
    font-weight: 600;
}

.cause-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 130px;
    margin-top: 20px;
}

.cause-details__points-list {
    position: relative;
    display: block;
}

.cause-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cause-details__points-list li+li {
    margin-top: 2px;
}

.cause-details__points-list li .icon {
    position: relative;
    display: inline-block;
}

.cause-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-extra);
}

.cause-details__points-list li p {
    font-weight: 700;
}

.sidebar__gallery {
    position: relative;
    display: block;
    padding: 30px 30px 10px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__gallery-img {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sidebar__gallery-img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.sidebar__call-to-action {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--anity-base);
    border-radius: var(--anity-bdr-radius);
    padding: 100px 50px 110px;
    z-index: 1;
}

.sidebar__call-to-action-sub-title {
    color: var(--anity-white);
}

.sidebar__call-to-action-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--anity-white);
}

.sidebar__call-to-action-btn-box {
    position: relative;
    display: block;
    margin-top: 28px;
}

.sidebar__call-to-action-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/*--------------------------------------------------------------
# Project page
--------------------------------------------------------------*/
.projects-page {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.projects-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.projects-page__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--anity-bdr-radius);
    z-index: 1;
}

.projects-page__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    background-color: rgba(var(--anity-base-rgb), 0.7);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
    border-radius: var(--sopot-bdr-radius);
    z-index: 1;
}

.projects-page__single:hover .projects-page__img:before {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.projects-page__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.projects-page__single:hover .projects-page__img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.projects-page__icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.projects-page__icon a {
    height: 80px;
    width: 80px;
    background-color: var(--anity-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: var(--anity-white);
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    z-index: 2;
}

.projects-page__single:hover .projects-page__icon a {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.projects-page__icon a:hover {
    background-color: var(--anity-white);
    color: var(--anity-base);
}
.donate-three__img {
    height: 275px;
    overflow: hidden;
}
.donate-three__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.donate-three__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.donation-page #appendPaginatedHtml > [class*='col-'] {
    display: flex;
}
@media screen and (max-width: 768px) {
    .cause-details__img-box {
        height: 40vh;
    }
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/services.css === */

/*==============================================
   Services One
===============================================*/
.services-one {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 140px 0 293px;
    z-index: 1;
}

.services-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: -30px;
    opacity: .20;
    z-index: -1;
}

.services-one__shape-1 img {
    width: auto;
    filter: opacity(0.2);
}

.services-one__left {
    position: relative;
    display: block;
}

.services-one__inner {
    position: relative;
    display: block;
}

.services-one__tab-box {
    position: relative;
    display: block;
}

.services-one__tab-box .tab-buttons {
    position: relative;
    display: block;
}

.services-one__tab-box .tab-buttons .tab-btn {
    position: relative;
    display: block;
}

.services-one__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-top: 30px;
}

.services-one__tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--anity-font-two);
    border-radius: var(--anity-bdr-radius);
    width: 100%;
    color: var(--anity-black);
    background-color: var(--anity-white);
    padding: 31px 30px 32px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    overflow: hidden;
    z-index: 1;
}

.services-one__tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--anity-white);
}

.services-one__tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--anity-base);
    background-position: top bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.services-one__tab-box .tab-buttons .tab-btn.active-btn span:before {
    transform: scaleY(1.0);
}

.services-one__tab-box .tabs-content {
    position: relative;
    display: block;
}

.services-one__tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translatex(35px);
    -ms-transform: translatex(35px);
    transform: translatex(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;
}

.services-one__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translatex(0px);
    -ms-transform: translatex(0px);
    transform: translatex(0px);

}

.services-one__tab-box .tabs-content__inner {
    position: relative;
    display: block;
    margin-left: 110px;
}

.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.services-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--anity-white);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.services-one__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--anity-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-one__single:hover .services-one__icon:before {
    transform: scaleX(1);
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
    transform: scale(0.9);
    color: var(--anity-white);
}

.services-one__single-2 .services-one__icon span {
    color: var(--anity-primary);
}

.services-one__single-4 .services-one__icon span {
    color: var(--anity-extra);
}

.services-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 31px;
    margin-bottom: 22px;
}

.services-one__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.services-one__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/shop.css === */

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product {
    position: relative;
    display: block;
    padding: 16px 0 40px;
}

.product__sidebar {
    position: relative;
    display: block;
}

.product__sidebar-single+.product__sidebar-single {
    margin-top: 30px;
}

.product__sidebar-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    margin-bottom: 22px;
}



.shop-search {
    position: relative;
    display: block;
}

.shop-search form {
    border-radius: var(--anity-bdr-radius);
    position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
    width: 100%;
    height: 70px;
    background-color: var(--anity-extra-two);
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    color: var(--anity-gray);
    font-family: var(--anity-font);
    border: none;
    outline: none;
    font-weight: 500;
}

.shop-search form ::placeholder {
    color: inherit;
    opacity: 1;
}



.product__price-ranger {
    position: relative;
    padding: 27px 30px 30px;
    margin: 0;
    background-color: var(--anity-extra-two);
}

.product__price-ranger.price-ranger {
    margin-top: 7px;
    margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
    background: var(--anity-white);
    border: none;
    height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--anity-base);
    border: 0;
    height: 14px;
    width: 14px !important;
    border-radius: 50%;
    margin-left: -2px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
    background: var(--anity-base);
}

.product__price-ranger .price-ranger #slider-range {
    margin-left: 3px;
    margin-right: 0;
    margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
    display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    background: var(--anity-black);
    float: right;
    text-align: center;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    display: inline-block;
    color: var(--anity-gray);
    font-size: 14px;
    font-weight: 400;
    width: 40px;
    line-height: 30px;
    border: none;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--anity-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    left: -2px;
}



.shop-category {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 29px 15px 15px;
}

.shop-category .product__sidebar-title {
    margin-left: 15px;
    margin-bottom: 13px;
}

.shop-category ul {
    position: relative;
    display: block;
}

.shop-category ul li {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    color: var(--anity-gray);
    margin-bottom: 5px;
}

.shop-category ul li:last-child {
    margin-bottom: 0;
}

.shop-category ul li a {
    position: relative;
    display: block;
    line-height: 24px;
    font-size: 16px;
    color: var(--anity-gray);
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
    transition: all 0.3s ease;
    z-index: 1;
    padding: 8px 15px 8px;
}

.shop-category ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--anity-white);
    border-radius: var(--anity-bdr-radius);
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-category ul li a:hover:before {
    transform: scaleY(1.0);
}

.shop-category ul li:hover a,
.shop-category ul li.active a {
    color: var(--anity-black);
    text-shadow: 1px 0 0 rgba(23, 26, 29, .8);
    background: var(--anity-white);
}

.shop-category ul li a:after {
    position: absolute;
    right: 20px;
    top: 5px;
    font-family: 'icomoon' !important;
    content: "\e91c";
    opacity: 1;
    font-size: 15px;
    color: var(--anity-base);
    line-height: 30px;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.shop-category ul li a:hover:after,
.shop-category ul li.active a:after {
    color: var(--anity-base);
    transform: scale(1);
    text-shadow: none;
}

.shop-color-option {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 29px 30px 27px;
}

.shop-color-option ul {
    position: relative;
    display: block;
}

.shop-color-option ul li {
    position: relative;
    display: block;
    font-size: 16px;
    color: var(--anity-gray);
    padding-left: 30px;
}

.shop-color-option ul li+li {
    margin-top: 6px;
}

.shop-color-option ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--anity-black);
    border-radius: 0%;
    transform: translateY(-50%);
}

.shop-color-option ul li:nth-child(2):before {
    background-color: blue;
}

.shop-color-option ul li:nth-child(3):before {
    background-color: brown;
}

.shop-color-option ul li:nth-child(4):before {
    background-color: pink;
}

.shop-color-option ul li:nth-child(5):before {
    background-color: orange;
}

.shop-product-tags {
    position: relative;
    display: block;
    background: var(--anity-extra-two);
    padding: 25px 15px 30px;
    overflow: hidden;
    z-index: 1;
}

.shop-product-tags .product__sidebar-title {
    margin-left: 5px;
}

.shop-product__tags-list {
    margin-top: -10px;
}

.shop-product__tags-list a {
    font-size: 12px;
    color: var(--anity-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--anity-white);
    display: inline-block;
    padding: 5px 20px 5px;
    margin-left: 5px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.shop-product__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

.shop-product__tags-list a:hover {
    color: var(--anity-white);
    background: var(--anity-base);
}

.product__items {
    position: relative;
    display: block;
}

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

.product__showing-text-box {
    position: relative;
    display: block;
}

.product__showing-text {
    font-size: 16px;
    font-weight: 400;
}

.product__showing-sort {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
}

.product__showing-sort .select-box .nice-select {
    background-color: var(--anity-extra-two);
    color: var(--anity-gray);
    font-size: 14px;
    font-weight: 400;
    height: 70px;
    line-height: 70px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}


.product__all {
    position: relative;
    display: block;
}

.product__all-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid #dddddd;
    background-color: rgb(255, 255, 255);
    padding: 0 0 30px;
    transition: all 500ms ease;
    z-index: 1;
}

.product__all-single:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.product__all-img {
    position: relative;
    display: block;
    background-color: var(--anity-black);
    overflow: hidden;
    z-index: 1;
}

.product__all-img:before {
    position: absolute;
    /* content: ""; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: rgba(var(--anity-black-rgb), .10); */
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;

    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
    z-index: 1;
}

.product__all-single:hover .product__all-img:before {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}

.product__all-img img, .product__all-img iframe {
    width: 100%;
    transition: all 500ms ease;
}

.product__all-single:hover .product__all-img img {
    /* transform: scale(1.05); */
}
.product__all-single:hover .product__all-img iframe {
    /* transform: scale(1.05); */
}

.product__all-img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.product__all-single:hover .product__all-img img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.product__all-img iframe:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.product__all-single:hover .product__all-img iframe:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.product__all-content {
    position: relative;
    display: block;
    text-align: left;
    margin-top: 16px;
	margin-left: 15px;
}

.product__all-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 12px;
}

.product__all-title a {
    color: var(--anity-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.product__all-title a:hover {
    color: var(--anity-base);
}

.product__all-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--anity-gray);
}

.product__all-review {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__all-review i {
    font-size: 15px;
    color: var(--anity-base);
}

.product__all-review i+i {
    margin-left: 5px;
}

.product__all-btn-box {
    position: relative;
    display: block;
    margin-top: 10px;
    z-index: 2;
	text-align:center;
}



/*--------------------------------------------------------------
  # Product Details
  --------------------------------------------------------------*/
.product-details {
    position: relative;
    display: block;
    padding: 40px 0px 40px;
}

.product-details__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-details__img img {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: var(--anity-bdr-radius);
}


.product-details__top {
    position: relative;
    display: block;
    margin-top: -5px;
}

.product-details__title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    margin: 0;
}

.product-details__title span {
    position: relative;
    display: inline-block;
    color: var(--anity-base);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 25px;
    letter-spacing: 0;
}

.product-details__reveiw {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    border-bottom: 1px solid #dddddd;
}

.product-details__reveiw i {
    font-size: 16px;
    color: var(--anity-base);
}

.product-details__reveiw i+i {
    margin-left: 4px;
}

.product-details__reveiw span {
    position: relative;
    top: 1px;
    line-height: 1;
    font-size: 16px;
    color: var(--anity-gray);
    margin-left: 18px;
}

.product-details__content {
    position: relative;
    display: block;
}

.product-details__content-text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 31px;
}

.product-details__content-text2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.product-details__quantity-title {
    margin: 0;
    color: var(--anity-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-right: 20px;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.product-details__quantity .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #dddddd;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--anity-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--anity-gray);
}

.product-details__quantity .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--anity-gray);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border: none;
    border-left: 1px solid #dddddd;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid #dddddd;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
}

.product-details__buttons {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-details__buttons-1 {
    position: relative;
    display: block;
}

.product-details__buttons-1 .thm-btn {
    padding: 12px 25px 12px;
}

.product-details__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
}

.product-details__buttons-2 .thm-btn {
    background-color: var(--anity-base);
    padding: 12px 25px 12px;
    color: var(--anity-white);
}

.product-details__social {
    position: relative;
    display: flex;
    align-items: center;
}

.product-details__social .title {
    position: relative;
    display: block;
}

.product-details__social .title h3 {
    color: var(--anity-black);
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.product-details__social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.product-details__social-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--anity-white);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--anity-black);
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

.product-details__social-link a+a {
    margin-left: 10px;
}

.product-details__social-link a:hover {
    color: var(--anity-white);
    background-color: var(--anity-base);
}


/*--------------------------------------------------------------
  # Product Description
  --------------------------------------------------------------*/
.product-description {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 50px;
}

.product-description__title {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 27px;
}

.product-description__text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-description__list ul {
    position: relative;
    display: block;
}

.product-description__list ul li {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.product-description__list ul li:last-child {
    margin-bottom: 0px;
}

.product-description__list ul li p {
    color: var(--anity-black);
    margin: 0;
    font-weight: 500;
}

.product-description__list ul li p span:before {
    position: relative;
    display: inline-block;
    color: var(--anity-base);
    font-size: 17px;
    line-height: 17px;
    margin-right: 11px;
    top: 2px;
}

.product-description__tex2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
    position: relative;
    display: block;
}

.comments-area {
    position: relative;
    display: block;
    border-top: 1px solid #dddddd;
    padding-top: 56px;
}

.review-one__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.review-one__title h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
    margin: 0;
}


.comments-area .comment-box {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #dddddd;
}

.comments-area .comment {
    position: relative;
    display: flex;
    align-items: center;
}

.comments-area .comment-box .author-thumb {
    position: relative;
    display: block;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
}

.comments-area .comment-box .author-thumb figure {
    margin: 0;
}

.review-one__content {
    position: relative;
    display: block;
    padding-left: 45px;
    flex: 1;
}

.review-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-one__content-top .info {
    position: relative;
    display: block;
}

.review-one__content-top .info h2 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
}

.review-one__content-top .info h2 span {
    color: var(--anity-base);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
}

.review-one__content-top .reply-btn {
    position: relative;
    display: block;
}

.review-one__content-top .reply-btn i:before {
    color: var(--anity-base);
    font-size: 15px;
}

.review-one__content-bottom {
    position: relative;
    display: block;
}

.review-one__content-bottom p {
    font-size: 16px;
    line-height: 30px;
    margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
    position: relative;
    display: block;
    padding: 16px 0 140px;
}

.review-form-one__inner {
    position: relative;
    display: block;
}

.review-form-one__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

.review-form-one__rate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 25px;
}

.review-form-one__rate-text {
    font-size: 16px;
    font-weight: 400;
}

.review-form-one__rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.review-form-one__rate i {
    font-size: 16px;
    color: var(--anity-base);
}

.review-form-one__rate i+i {
    margin-left: 5px;
}

.review-form-one__form {
    position: relative;
    display: block;
}

.review-form-one__form .row {
    --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
    font-size: 14px;
    color: var(--anity-gray);
    height: 190px;
    width: 100%;
    background-color: var(--anity-extra-two);
    padding: 25px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
}

.review-form-one__input-box.text-message-box {
    height: 190px;
}

.review-form-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: var(--anity-extra-two);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
}

.review-form-one__btn {
    border: none;
}



/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
    position: relative;
    display: block;
    background: var(--anity-white);
    padding: 40px 0px 40px;
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .cart-table {
        min-width: 1170px;
    }
}

.cart-table {
    margin-bottom: 60px;
}

.cart-table thead th {
    color: var(--anity-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 0;
    border: none;
    padding-bottom: 22px;
}

.cart-table thead th:last-child {
    text-align: right;
}

.cart-table tbody tr {
    vertical-align: middle;
}

.cart-table tbody tr:last-child {
    border-bottom: 1px solid #dddddd;
}

.cart-table tbody td {
    font-size: 18px;
    color: var(--anity-gray);
    vertical-align: middle;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}

.cart-table tbody td:last-child {
    text-align: right;
}

.cart-table .product-box {
    display: flex;
    align-items: center;
}

.cart-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 35px;
}

.cart-table .product-box .img-box img {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: var(--anity-bdr-radius);
}

.cart-table h3 {
    color: var(--anity-black);
    font-size: 20px;
    margin-left: 36px;
    font-weight: 700;
    margin: 0;
}

.cart-table h3 a {
    color: var(--anity-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cart-table h3 a:hover {
    color: var(--anity-base);
}

.cart-table .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.cart-table .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #dddddd;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--anity-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    color: var(--anity-gray);
    font-weight: 700;
}

.cart-table .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    border-left: 1px solid #dddddd;
}

.cart-table .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid #dddddd;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
    position: relative;
    display: block;
}

.cart-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--anity-black);
    font-size: 16px;
}

.cart-cupon__form {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.cart-cupon__input {
    width: 100%;
    max-width: 370px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 20px;
    font-family: var(--anity-font);
    font-size: 14px;
    color: var(--anity-gray);
    height: 60px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-cupon__form ::placeholder {
    color: var(--anity-gray);
    opacity: 1;
}

.cart-cupon__form .thm-btn {
    top: -1px;
    outline: none !important;
    background-color: transparent;
    padding: 12px 25px 12px;
}

.cart-total {
    position: relative;
    display: block;
    margin-bottom: 22px;
    margin-top: -9px;
}

.cart-total li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--anity-gray);
    font-size: 18px;
    font-weight: 500;
}

.cart-total li+li {
    margin-top: 15px;
}

.cart-total li span:first-child {
    display: block;
    color: var(--anity-black);
    font-size: 20px;
    margin-right: 80px;
    font-weight: 700;
    width: 140px;
    text-align: right;
}

.cart-total li:nth-child(2) span:first-child {
    position: relative;
    right: 6px;
}

.cart-total-amount {
    color: var(--anity-base);
}

.cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart-page__buttons-1 {
    position: relative;
    display: block;
}

.cart-page__buttons-1 .thm-btn {
    background: transparent;
    padding: 7px 25px 7px;
}

.cart-page__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
}

.cart-page__buttons-2 .thm-btn {
    background-color: var(--anity-base);
    padding: 7px 25px 7px;
    color: var(--anity-white);
}


/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
    position: relative;
    display: block;
    padding: 40px 0 40px;
}

.checkout-page .billing_details {
    position: relative;
    display: block;
}

.billing_title {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.billing_title p {
    font-size: 16px;
    margin: 0;
}

.billing_title span {
    color: var(--anity-base);
}

.billing_title h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
    margin-top: 16px;
}

.billing_details_form {
    position: relative;
    display: block;
}

.billing_details_form .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}


.billing_details_form .btn-light {
    border: none;
}

.billing_details_form .btn-light:hover {
    border: none;
}

.billing_input_box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: var(--anity-extra-two);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: var(--anity-bdr-radius);
    outline: none;
    font-size: 14px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
}

.billing_details .checked-box {
    position: relative;
    display: block;
    margin-top: -4px;
}

.billing_details .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--anity-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--anity-font);
}

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

.billing_details .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--anity-base);
    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;
    border: 0;
}

.billing_details .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    content: '';
    width: 6px;
    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;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
    border-color: #ffffff;
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.ship_different_address_title {
    margin-top: 44px;
}

.ship_different_address_title h2 span::before {
    position: relative;
    display: inline-block;
    color: var(--anity-base);
    font-size: 19px;
    top: -2px;
    left: 15px;
}

.ship_different_address_form .ship_different_input {
    position: relative;
    display: block;
    height: 120px;
}

.ship_different_address_form .ship_different_input textarea {
    font-size: 14px;
    color: var(--anity-gray);
    height: 120px;
    width: 100%;
    background-color: var(--anity-extra-two);
    padding: 15px 30px 20px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    border-radius: var(--anity-bdr-radius);
    font-weight: 400;
}

.billing_details_form .select-box .nice-select {
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    color: var(--anity-gray);
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}

.your_order {
    position: relative;
    display: block;
    padding-top: 56px;
}

.your_order h2 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 36px;
}

.order_table_box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 24px;
}

.order_table_detail {
    position: relative;
    width: 100%;
}

.order_table_head {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
}

.order_table_head th {
    font-size: 20px;
    color: var(--anity-black);
    font-weight: 700;
    margin: 0;
    padding: 23px 0 22px;
}

.order_table_head th.right {
    float: right;
}

.order_table_detail tbody td {
    padding: 29px 0 2px;
}

.order_table_detail tbody td.pro__title {
    color: var(--anity-gray);
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.order_table_detail tbody td.pro__price {
    color: var(--anity-gray);
    font-size: 16px;
    line-height: 18px;
    text-align: right;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout__payment {
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    padding: 49px 50px 18px;
    margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
    margin-top: 41px;
}


.checkout__payment__title {
    display: flex;
    color: var(--anity-black);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    align-items: center;
    margin-bottom: 27px;
    cursor: pointer;
}

.checkout__payment__title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 2px solid #dddddd;
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    top: 0px;
    transition: all 500ms ease;
}

.checkout__payment__title img {
    margin-left: 15px;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--anity-base);
    border-color: var(--anity-base);
    content: '\f00c';
}

.checkout__payment__content {
    font-size: 16px;
    line-height: 30px;
    color: var(--anity-gray);
    font-weight: 400;
}


/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
.wishlist-page {
    position: relative;
    display: block;
    background: var(--anity-white);
    padding: 140px 0px 140px;
}

.wishlist-page .table-responsive-box {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .wishlist-table {
        min-width: 1170px;
    }
}

.wishlist-table {
    min-width: 1170px;
    width: 100%;
    border: 1px solid #dddddd;
}

.wishlist-table tbody tr {
    vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
    border-bottom: 1px solid #dddddd;
}

.wishlist-table tbody td {
    font-size: 18px;
    font-weight: 500;
    color: var(--anity-gray);
    vertical-align: middle;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0;
}

.wishlist-table tbody td:first-child {
    width: 120px;
}

.wishlist-table tbody td:last-child {
    text-align: center;
    padding-left: 7px;
    padding-right: 14px;
}

.wishlist-table .product-box {
    position: relative;
    display: block;
}

.wishlist-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    overflow: hidden;
    border-radius: var(--anity-bdr-radius);
}

.wishlist-table .product-box .img-box img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    filter: grayscale(1);
}

.product-name-select-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.product-name-select-box .product-name {
    position: relative;
    display: block;
}

.product-name-select-box .product-name h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
}

.product-name-select-box .product-name p {
    font-size: 18px;
    font-weight: 400;
}

.product-name-select-box .product-select {
    position: relative;
    display: block;
}

.wishlist-table .cross-icon {
    position: relative;
    display: block;
}

.wishlist-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--anity-black);
    font-size: 16px;
}


/*--------------------------------------------------------------
# Account
--------------------------------------------------------------*/
.account {
    position: relative;
    display: block;
    padding: 40px 0 40px;
}

.account .container {
    max-width: 760px;
}

.account__main-tab-box {
    position: relative;
    display: block;
}

.account__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.account__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    text-align: center;
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(1) span {
    border-top-left-radius: var(--anity-bdr-radius);
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(2) span {
    border-top-right-radius: var(--anity-bdr-radius);
}

.account__main-tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: block;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 18px;
    line-height: 18px;
    color: var(--anity-black);
    background-color: transparent;
    padding: 22px 0px 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid #dddddd;
    font-family: var(--anity-font-two);
    text-transform: capitalize;
    letter-spacing: 0.1em;
}

.account__main-tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--anity-white);
}

.account__main-tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    background-color: var(--anity-base);
    transform: scaleY(0.0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(1) span:before {
    border-top-left-radius: var(--anity-bdr-radius);
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(2) span:before {
    border-top-right-radius: var(--anity-bdr-radius);
}

.account__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
    transform: scaleY(1.0) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.account__main-tab-box .tabs-content {
    position: relative;
    display: block;
    border: 1px solid #dddddd;
    border-top: 0px;
    padding: 60px 80px 75px;
}

.account__main-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;
}

.account__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.account__main-tab-inner {
    position: relative;
    display: block;
}

.account__form {
    position: relative;
    display: block;
}

.account__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.account__form-input-box input[type="text"],
.account__form-input-box input[type="password"] {
    height: 50px;
    width: 100%;
    border: none;
    background-color: var(--anity-extra-two);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: var(--anity-bdr-radius);
    outline: none;
    font-size: 14px;
    color: var(--anity-gray);
    display: block;
    font-weight: 500;
}

.account__form-btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.account__form-btn {
    border: none;
}

.account__form-btn-box .checked-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.account__form-btn-box .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--anity-gray);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
    font-family: var(--anity-font);
}

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

.account__form-btn-box .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background: var(--anity-white);
    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;
    border: 2px solid #dddddd;
}

.account__form-btn-box .checked-box label span:before {
    position: absolute;
    top: 3px;
    left: 4px;
    display: block;
    border-bottom: 2px solid #dddddd;
    border-right: 2px solid #dddddd;
    content: '';
    width: 6px;
    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;
}

.account__form-btn-box.checked-box input[type="checkbox"]:checked+label span {
    border-color: #dddddd;
}

.account__form-btn-box .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.account__form-forgot-password {
    position: relative;
    display: block;
    margin-top: 9px;
}

.account__form-forgot-password a {
    font-size: 14px;
    font-weight: 500;
    color: var(--anity-gray);
    position: relative;
    display: inline-block;
}
.product__all-single{
	width:100%;
	border-radius: 10px;
}
.product__all-img {
    height: 275px;
    overflow: hidden;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.product__all-img img, .product__all-img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/team.css === */

/*==============================================
    Team One
===============================================*/
.team-one {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.team-one__left {
    position: relative;
    display: block;
}

.team-one__left .section-title {
    margin-bottom: 23px;
}

.team-one__count-list {
    position: relative;
    display: block;
    margin-top: 40px;
}

.team-one__count-list li {
    position: relative;
    display: block;
}

.team-one__count-single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 410px;
    width: 100%;
    padding: 37px 40px 37px;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.team-one__count-list li+li {
    margin-top: 30px;
}

.team-one__count-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 81px;
    height: 81px;
    border: 1px solid var(--anity-base);
    border-radius: 50%;
}

.team-one__count-list li:nth-child(2) .team-one__count-icon {
    border: 1px solid var(--anity-primary);
}

.team-one__count-list li:last-child .team-one__count-icon {
    border: 1px solid var(--anity-extra);
}

.team-one__count-icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--anity-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.team-one__count-list li:hover .team-one__count-icon span {
    transform: scale(0.9);
}

.team-one__count-list li:nth-child(2) .team-one__count-icon span {
    color: var(--anity-primary);
}

.team-one__count-list li:last-child .team-one__count-icon span {
    color: var(--anity-extra);
}

.team-one__count-content {
    position: relative;
    display: block;
}

.team-one__count {
    position: relative;
    display: flex;
    align-items: center;
}

.team-one__count h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    color: var(--anity-base);
}

.team-one__count-list li:nth-child(2) .team-one__count h2 {
    color: var(--anity-primary);
}

.team-one__count-list li:last-child .team-one__count h2 {
    color: var(--anity-extra);
}

.team-one__count span {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    color: var(--anity-base);
    font-family: var(--anity-font-two);
}

.team-one__count-list li:nth-child(2) .team-one__count span {
    color: var(--anity-primary);
}

.team-one__count-list li:last-child .team-one__count span {
    color: var(--anity-extra);
}

.team-one__count-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
    margin-top: 16px;
}

.team-one__right {
    position: relative;
    display: block;
}

.volunteer-page .row > [class*='col-'] {
    display: flex;
}

.team-one__single {
    position: relative;
	flex: 1;
    display: flex;
	flex-direction: column;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    margin-bottom: 30px;
}

.team-one__img-box {
    position: relative;
    display: block;
}

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.team-one__img::after {
    background: rgba(var(--anity-black-rgb), .20);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.team-one__single:hover .team-one__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.team-one__img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 1s ease-in-out;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.1);
}

.team-one__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.team-one__name-box {
    position: relative;
    display: block;
}

.team-one__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 15px;
    margin-bottom: 7px;
}

.team-one__name a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-one__name a:hover {
    color: var(--anity-extra);
}

.team-one__share-and-social {
    position: relative;
    display: block;
}

.team-one__share {
    position: relative;
    display: block;
}

.team-one__share a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--anity-extra);
    border-radius: 5px;
    font-size: 16px;
    color: var(--anity-extra);
}

.team-one__social {
    position: absolute;
    left: 2px;
    right: 2px;
    /*top: -155px;*/
	bottom:41px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--anity-extra);
    border-radius: 10px;
    gap: 20px;
    padding: 10px 5px 10px;
    background-position: bottom top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaley(0);
    z-index: 2;
}

.team-one__share-and-social:hover .team-one__social {
    transform: scaley(1.0);
}

.team-one__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--anity-white);
}

.team-one__social a:hover {
    color: var(--anity-base);
}


/*--------------------------------------------------------------
# Volunteer Page
--------------------------------------------------------------*/
.become-volinteer {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    z-index: 1;
}

.become-volinteer__left {
    position: relative;
    display: block;
    margin-right: 100px;
}

.become-volinteer__img {
    position: relative;
    display: block;
}

.become-volinteer__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.become-volinteer__right {
    position: relative;
    display: block;
    margin-top: 20px;
}

.become-volinteer__right .section-title {
    margin-bottom: 22px;
}

.become-volinteer__text-2 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.become-volinteer__bottom {
    position: relative;
    display: block;
    padding-top: 137px;
}

.become-volinteer__bottom-left {
    position: relative;
    display: block;
}

.become-volinteer__bottom-left-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 32px;
}

.become-volinteer__form {
    position: relative;
    display: block;
}

.become-volinteer__input-box {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.become-volinteer__input-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 6px;
}

.become-volinteer__input-box input[type="text"],
.become-volinteer__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
    line-height: 60px;
}

.become-volinteer__input-box textarea {
    position: relative;
    height: 376px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 0;
}

.become-volinteer__input-box.text-message-box {
    height: 376px;
}

.become-volinteer__btn-box {
    position: relative;
    display: block;
}

.become-volinteer__btn {
    background-color: transparent;
}

/*--------------------------------------------------------------
# Volinteer Details
--------------------------------------------------------------*/
.volunteer-details {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    z-index: 1;
}

.volunteer-details__left {
    position: relative;
    display: block;
}

.volunteer-details__img {
    position: relative;
    display: block;
}

.volunteer-details__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.volunteer-details__social {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.volunteer-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--anity-white);
    background-color: var(--anity-base);
    border-radius: 50%;
}

.volunteer-details__social a:hover {
    background-color: var(--anity-black);
}

.volunteer-details__right {
    position: relative;
    display: block;
}

.volunteer-details__name-and-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 22px;
    margin-bottom: 26px;
}

.volunteer-details__name-box {
    position: relative;
    display: block;
}

.volunteer-details__name {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
}

.volunteer-details__video-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
}

.volunteer-details__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    line-height: 44px;
    text-align: center;
    font-size: 15px;
    color: var(--anity-white);
    background-color: var(--anity-base);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.volunteer-details__video-icon:hover {
    background-color: var(--anity-black);
    color: var(--anity-white);
}

.volunteer-details__video-link .ripple,
.volunteer-details__video-icon .ripple:before,
.volunteer-details__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--anity-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--anity-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--anity-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--anity-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.volunteer-details__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.volunteer-details__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.volunteer-details__progress-box {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 54px;
}

.volunteer-details__progress-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--anity-black);
    margin-bottom: 15px;
}

.volunteer-details__progress+.volunteer-details__progress {
    margin-top: 21px;
}

.volunteer-details__progress .bar {
    position: relative;
    width: 100%;
    height: 7px;
    border: 1px solid var(--anity-base);
    border-radius: 5px;
}

.volunteer-details__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 7px;
    border-radius: 5px;
    background-color: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.volunteer-details__progress .bar-inner::before {
    content: "";
    position: absolute;
    top: 49%;
    right: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--anity-white);
    border: 5px solid var(--anity-base);
    transform: translateY(-50%);
}

.volunteer-details__progress .count-text {
    position: absolute;
    right: 0;
    bottom: 20px;
    color: var(--anity-base);
    line-height: 26px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.volunteer-details__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.volunteer-details__progress .bar.marb-0 {
    margin-bottom: 0;
}

.volunteer-profile {
    display: flex;
    align-items: center;
    gap: 30px;
}

.volunteer-profile__inner {
    display: flex;
    align-items: center;
    gap: 21px;
    border-right: 1px solid #DDDDDD;
    padding-right: 34px;
}

.volunteer-profile__img {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
}

.volunteer-profile__img img {
    width: 100%;
    border-radius: 50%;
}

.volunteer-profile__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.volunteer-profile__name a {
    color: var(--anity-black);
}

.volunteer-profile__name a:hover {
    color: var(--anity-base);
}

.volunteer-profile__designation {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.volunteer-profile__signature {
    margin-left: 34px;
}

/*--------------------------------------------------------------
# Volinteer Details Background
--------------------------------------------------------------*/
.volunteer-details__background {
    position: relative;
    display: block;
    padding-top: 66px;
    padding-bottom: 64px;
    background-color: var(--anity-extra-two);
}

.volunteer-details__background__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.458;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-bottom: 29px;
}

.volunteer-details__background__content {
    padding-top: 41px;
    padding-bottom: 28px;
    border-top: 1px solid #DDDDDD;
}

.volunteer-details__background__content:last-child {
    padding-bottom: 0;
}

.volunteer-details__background__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: var(--anity-font);
}

.volunteer-details__background__year {
    position: relative;
    top: -3px;
    padding: 10px;
    background-color: var(--anity-white);
    font-size: 16px;
    color: var(--anity-base);
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 100px;
    margin-left: 10px;
    transition: all 400ms ease;
}

.volunteer-details__background__content:hover .volunteer-details__background__year {
    color: var(--anity-white);
    background-color: var(--anity-primary);
}

.volunteer-details__background__text {
    text-transform: capitalize;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Volunteer Page
--------------------------------------------------------------*/
.volunteer-page {
    position: relative;
    display: block;
    padding: 40px 0 40px;
    z-index: 1;
}

.volunteer-page .team-one__content {
    padding: 20px 20px 20px;
}

.volunteer-page .team-one__share a {
    border: 1px solid var(--anity-base);
    color: var(--anity-base);
}

.volunteer-page .team-one__social {
    background-color: var(--anity-base);
}

.volunteer-page .team-one__social a:hover {
    color: var(--anity-black);
}

.volunteer-page .team-one__name a:hover {
    color: var(--anity-base);
}



/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.volunteer-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 190px;
}

.volunteer-carousel-page .team-one__single {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# One Page Three Team
--------------------------------------------------------------*/
.one-page-three-team {
    padding: 80px 0 110px;
}
.team-one__img {
    height: 275px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.team-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.team-one__sub-title{
	line-height: 22px;
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/testimonial.css === */

/*==============================================
    Testimonial One
===============================================*/
.testimonial-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 110px 0 0;
    z-index: 1;
}


.testimonial-one .owl-carousel {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 0;
    position: relative;
    display: block;
}

.testimonial-one .owl-carousel .owl-stage-outer {
    overflow: visible;
    padding-bottom: 80px;
}

.testimonial-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    padding: 40px 30px 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover {
    transform: translateY(-10px);
}

.testimonial-one__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonial-one__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-primary);
}

.testimonial-one__text {
    position: relative;
    display: block;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 23px;
    background-color: rgba(var(--anity-primary-rgb), 0.05);
    padding: 20px 30px 20px;
    border-radius: 10px;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    width: 80px;
}

.testimonial-one__client-img img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-one__client-content {
    position: relative;
    display: block;
}

.testimonial-one__client-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.testimonial-one__client-name a {
    color: var(--anity-black);
}

.testimonial-one__client-name a:hover {
    color: var(--anity-base);
}

.testimonial-one__client-sub-title {
    color: var(--anity-black);
    line-height: 16px;
}


/*==============================================
    Testimonial Two
===============================================*/
.testimonial-two {
    padding: 140px 0 60px;
}



/*==============================================
    Testimonial Page
===============================================*/
.testimonial-page {
    position: relative;
    display: block;
    padding: 140px 0 110px;
}

.testimonial-page .testimonial-one__single {
    margin-bottom: 30px;
}

/*==============================================
    One Page Three Testimonial two
===============================================*/
.one-page-three-testimonial-two {
    padding: 140px 0 0px;
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/video.css === */

/*==============================================
    Video One
===============================================*/
.video-one {
    position: relative;
    display: block;
    margin-top: -193px;
    z-index: 2;
}

.video-one__inner {
    position: relative;
    display: block;
    padding: 170px 0 170px;
    border-radius: var(--anity-bdr-radius);
    z-index: 1;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--anity-bdr-radius);
    z-index: -1;
}

.video-one__video-link {
    position: relative;
    display: block;
}

.video-one__video-icon {
    height: 110px;
    width: 110px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    border: 10px solid rgba(var(--anity-primary-rgb), .40);
    margin: 0 auto;
    z-index: 1;
}

.video-one__video-icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--anity-white);
    transition: all 0.5s ease;
}

.video-one__video-icon:before {
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    content: "";
    border-radius: 50%;
    border: 1px solid rgba(var(--anity-primary-rgb), .50);
    z-index: -1;
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 126px;
    height: 126px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--anity-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--anity-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--anity-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}











/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/who-we-are.css === */

/*==============================================
    Who We Are
===============================================*/
.who-we-are {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 140px 0 166px;
    z-index: 1;
}

.who-we-are__shape-3 {
    position: absolute;
    bottom: 15px;
    left: 0;
}

.who-we-are__shape-3 img {
    width: auto;
}

.who-we-are__shape-4 {
    position: absolute;
    top: 30px;
    right: -30px;
    z-index: -1;
}

.who-we-are__shape-4 img {
    width: auto;
}

.who-we-are .section-title {
    margin-bottom: 28px;
}

.who-we-are__left {
    position: relative;
    display: block;
    margin-top: 35px;
}

.who-we-are__progress-box {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
}

.who-we-are__progress-list {
    position: relative;
    display: block;
}

.who-we-are__progress-list li {
    position: relative;
    display: block;
}

.who-we-are__progress-list li+li {
    margin-top: 20px;
}

.who-we-are__progress-single {
    position: relative;
    display: block;
    width: 100%;
}

.who-we-are__progress-single p {
    margin-bottom: 10px;
}

.who-we-are__progress-single p span {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-extra);
    position: relative;
    margin-left: 11px;
}

.who-we-are__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: #DDDDDD;
    border-radius: 0px;
}

.who-we-are__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.who-we-are__right {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-right: 110px;
}

.who-we-are__img-box {
    position: relative;
    display: block;
}

.who-we-are__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 2;
}

.who-we-are__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.who-we-are__img:hover::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.who-we-are__img img {
    width: 100%;
}

.who-we-are__img-2 {
    position: absolute;
    right: -110px;
    bottom: -68px;
    overflow: hidden;
    z-index: 2;
}

.who-we-are__img-2::after {
    background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.who-we-are__img-2:hover::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.who-we-are__img-2 img {
    width: auto;
    border-radius: 20px;
}

.who-we-are__shape-1 {
    position: absolute;
    left: 190px;
    bottom: -48px;
    width: 166px;
    height: 166px;
    background-color: rgba(var(--anity-primary-rgb), .50);
    border-radius: 50%;
}

.who-we-are__shape-1::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    bottom: -12px;
    top: -12px;
    border: 3px solid rgba(var(--anity-primary-rgb), .50);
    border-radius: 50%;
}

.who-we-are__shape-2 {
    position: absolute;
    left: 260px;
    bottom: 139px;
    width: 166px;
    height: 166px;
    background-color: var(--anity-primary);
    border-radius: 50%;
    filter: blur(200px);
    z-index: 1;
}














/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/toaster/toastr.min.css === */

.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}

/* === public/admin-assets/vendor/libs/sweetalert2/sweetalert2.css === */

.swal2-popup.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: min-content auto min-content;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.075), 0 1px 2px hsla(0, 0%, 0%, 0.075), 1px 2px 4px hsla(0, 0%, 0%, 0.075), 1px 3px 8px hsla(0, 0%, 0%, 0.075), 2px 4px 16px hsla(0, 0%, 0%, 0.075);
  pointer-events: all;
}
.swal2-popup.swal2-toast > * {
  grid-column: 2;
}
.swal2-popup.swal2-toast .swal2-title {
  margin: 0.5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center;
}
.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: 0.5em;
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}
.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8em;
  height: 0.8em;
  margin: 0;
  font-size: 2em;
}
.swal2-popup.swal2-toast .swal2-html-container {
  margin: 0.5em 1em;
  padding: 0;
  overflow: initial;
  font-size: 1em;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}
.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}
.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}
.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-actions {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.5em;
  padding: 0 0.5em;
}
.swal2-popup.swal2-toast .swal2-styled {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  border-radius: 50%;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-toast-animate-success-line-tip 0.75s;
}
.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-toast-animate-success-line-long 0.75s;
}
.swal2-popup.swal2-toast.swal2-show {
  animation: swal2-toast-show 0.5s;
}
.swal2-popup.swal2-toast.swal2-hide {
  animation: swal2-toast-hide 0.1s forwards;
}

div:where(.swal2-container) {
  display: grid;
  position: fixed;
  z-index: 1060;
  inset: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
  height: 100%;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}
div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}
div:where(.swal2-container).swal2-backdrop-hide {
  background: transparent !important;
}
div:where(.swal2-container).swal2-top-start, div:where(.swal2-container).swal2-center-start, div:where(.swal2-container).swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
div:where(.swal2-container).swal2-top, div:where(.swal2-container).swal2-center, div:where(.swal2-container).swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
div:where(.swal2-container).swal2-top-end, div:where(.swal2-container).swal2-center-end, div:where(.swal2-container).swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}
div:where(.swal2-container).swal2-top-start > .swal2-popup {
  align-self: start;
}
div:where(.swal2-container).swal2-top > .swal2-popup {
  grid-column: 2;
  place-self: start center;
}
div:where(.swal2-container).swal2-top-end > .swal2-popup, div:where(.swal2-container).swal2-top-right > .swal2-popup {
  grid-column: 3;
  place-self: start end;
}
div:where(.swal2-container).swal2-center-start > .swal2-popup, div:where(.swal2-container).swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}
div:where(.swal2-container).swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  place-self: center center;
}
div:where(.swal2-container).swal2-center-end > .swal2-popup, div:where(.swal2-container).swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  place-self: center end;
}
div:where(.swal2-container).swal2-bottom-start > .swal2-popup, div:where(.swal2-container).swal2-bottom-left > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}
div:where(.swal2-container).swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  place-self: end center;
}
div:where(.swal2-container).swal2-bottom-end > .swal2-popup, div:where(.swal2-container).swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  place-self: end end;
}
div:where(.swal2-container).swal2-grow-row > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}
div:where(.swal2-container).swal2-grow-column > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}
div:where(.swal2-container).swal2-no-transition {
  transition: none !important;
}
div:where(.swal2-container) div:where(.swal2-popup) {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem;
}
div:where(.swal2-container) div:where(.swal2-popup):focus {
  outline: none;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-loading {
  overflow-y: hidden;
}
div:where(.swal2-container) h2:where(.swal2-title) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 1em 0;
  color: inherit;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}
div:where(.swal2-container) div:where(.swal2-actions) {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 1.25em auto 0;
  padding: 0;
}
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
div:where(.swal2-container) div:where(.swal2-loader) {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}
div:where(.swal2-container) button:where(.swal2-styled) {
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  transition: box-shadow 0.1s;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}
div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
  cursor: pointer;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7066e0;
  color: #fff;
  font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-deny {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #dc3741;
  color: #fff;
  font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-deny:focus {
  box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #6e7881;
  color: #fff;
  font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:focus {
  box-shadow: 0 0 0 3px rgba(110, 120, 129, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) button:where(.swal2-styled):focus {
  outline: none;
}
div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner {
  border: 0;
}
div:where(.swal2-container) div:where(.swal2-footer) {
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: inherit;
  font-size: 1em;
  text-align: center;
}
div:where(.swal2-container) .swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
div:where(.swal2-container) div:where(.swal2-timer-progress-bar) {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}
div:where(.swal2-container) img:where(.swal2-image) {
  max-width: 100%;
  margin: 2em auto 1em;
}
div:where(.swal2-container) button:where(.swal2-close) {
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #ccc;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end;
}
div:where(.swal2-container) button:where(.swal2-close):hover {
  transform: none;
  background: transparent;
  color: #f27474;
}
div:where(.swal2-container) button:where(.swal2-close):focus {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner {
  border: 0;
}
div:where(.swal2-container) .swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 1em 1.6em 0.3em;
  padding: 0;
  overflow: auto;
  color: inherit;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea),
div:where(.swal2-container) select:where(.swal2-select),
div:where(.swal2-container) div:where(.swal2-radio),
div:where(.swal2-container) label:where(.swal2-checkbox) {
  margin: 1em 2em 3px;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea) {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: transparent;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125em;
}
div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,
div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,
div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}
div:where(.swal2-container) input:where(.swal2-input):focus,
div:where(.swal2-container) input:where(.swal2-file):focus,
div:where(.swal2-container) textarea:where(.swal2-textarea):focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) input:where(.swal2-input)::placeholder,
div:where(.swal2-container) input:where(.swal2-file)::placeholder,
div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder {
  color: #ccc;
}
div:where(.swal2-container) .swal2-range {
  margin: 1em 2em 3px;
  background: #fff;
}
div:where(.swal2-container) .swal2-range input {
  width: 80%;
}
div:where(.swal2-container) .swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}
div:where(.swal2-container) .swal2-range input,
div:where(.swal2-container) .swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}
div:where(.swal2-container) .swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}
div:where(.swal2-container) .swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  font-size: 1.125em;
}
div:where(.swal2-container) .swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}
div:where(.swal2-container) .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: transparent;
  color: inherit;
  font-size: 1.125em;
}
div:where(.swal2-container) .swal2-radio,
div:where(.swal2-container) .swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}
div:where(.swal2-container) .swal2-radio label,
div:where(.swal2-container) .swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}
div:where(.swal2-container) .swal2-radio input,
div:where(.swal2-container) .swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 0.4em;
}
div:where(.swal2-container) label:where(.swal2-input-label) {
  display: flex;
  justify-content: center;
  margin: 1em auto 0;
}
div:where(.swal2-container) div:where(.swal2-validation-message) {
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}
div:where(.swal2-container) div:where(.swal2-validation-message)::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}
div:where(.swal2-container) .swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: transparent;
  font-weight: 600;
}
div:where(.swal2-container) .swal2-progress-steps li {
  display: inline-block;
  position: relative;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

div:where(.swal2-icon) {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  user-select: none;
}
div:where(.swal2-icon) .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}
div:where(.swal2-icon).swal2-error {
  border-color: #f27474;
  color: #f27474;
}
div:where(.swal2-icon).swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-error.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark {
  animation: swal2-animate-error-x-mark 0.5s;
}
div:where(.swal2-icon).swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}
div:where(.swal2-icon).swal2-warning.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark 0.5s;
}
div:where(.swal2-icon).swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}
div:where(.swal2-icon).swal2-info.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark 0.8s;
}
div:where(.swal2-icon).swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}
div:where(.swal2-icon).swal2-question.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-question-mark 0.8s;
}
div:where(.swal2-icon).swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  border-radius: 50%;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}
div:where(.swal2-icon).swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}
div:where(.swal2-icon).swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-animate-success-line-tip 0.75s;
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-animate-success-line-long 0.75s;
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  animation: swal2-show 0.3s;
}

.swal2-hide {
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}
.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes swal2-animate-i-mark {
  0% {
    transform: rotateZ(45deg);
    opacity: 0;
  }
  25% {
    transform: rotateZ(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotateZ(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotateZ(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}
body.swal2-height-auto {
  height: auto !important;
}
body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}
body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}
body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
  pointer-events: none;
}
body.swal2-toast-shown .swal2-container.swal2-top {
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  inset: 0 0 auto auto;
}
body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  inset: 0 auto auto 0;
}
body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  inset: 50% auto auto 0;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  inset: 50% 0 auto auto;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  inset: auto auto 0 0;
}
body.swal2-toast-shown .swal2-container.swal2-bottom {
  inset: auto auto 0 50%;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  inset: auto 0 0 auto;
}

.swal2-modal.swal2-popup .swal2-title {
  margin: 1.875rem 0 1rem 0;
  max-width: 16em;
  line-height: 1.375;
}
.swal2-modal.swal2-popup .swal2-content {
  margin: 0 0 1rem 0;
}
.swal2-modal.swal2-popup .swal2-actions {
  margin-top: 1rem;
}
.swal2-modal.swal2-popup .swal2-actions .btn {
  align-items: center;
}
.swal2-modal.swal2-popup .swal2-actions button + button {
  margin-left: 0.375rem;
}
[dir=rtl] .swal2-modal.swal2-popup .swal2-actions button + button {
  margin-left: 0;
  margin-right: 0.375rem;
}
.swal2-modal.swal2-popup .swal2-input,
.swal2-modal.swal2-popup .swal2-file,
.swal2-modal.swal2-popup .swal2-textarea {
  box-shadow: none !important;
}
.swal2-modal.swal2-popup .swal2-icon {
  margin-bottom: 0;
}
.swal2-modal.swal2-popup .swal2-checkbox input,
.swal2-modal.swal2-popup .swal2-radio input {
  margin-right: 0.375rem;
}
[dir=rtl] .swal2-modal.swal2-popup .swal2-checkbox input,
[dir=rtl] .swal2-modal.swal2-popup .swal2-radio input {
  margin-right: 0;
  margin-left: 0.375rem;
}
.swal2-modal.swal2-popup .swal2-close:focus {
  box-shadow: none;
}

[dir=rtl] .swal2-close {
  right: auto;
  left: 0.5rem;
}
[dir=rtl] .swal2-range input {
  float: right;
}
[dir=rtl] .swal2-range output {
  float: left;
}
[dir=rtl] .swal2-radio label:not(:first-child) {
  margin-left: 0;
  margin-right: 1.25rem;
}
[dir=rtl] .swal2-validationerror::before {
  margin-left: 0.625rem;
  margin-right: 0;
}
[dir=rtl] .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  margin-left: 0;
  margin-right: 0.3125rem;
}

.light-style .swal2-container {
  z-index: 1090;
}
.light-style .swal2-container .tooltip {
  z-index: 1092;
}
.light-style .swal2-container .popover {
  z-index: 1091;
}
.light-style .swal2-modal.swal2-popup {
  font-family: var(--bs-font-sans-serif);
  box-shadow: 0 0.25rem 1.125rem 0 rgba(47, 43, 61, 0.16);
  border-radius: 0.375rem;
}
.light-style .swal2-container.swal2-shown {
  background: rgba(151, 149, 158, 0.5);
}
.light-style .swal2-popup .swal2-title {
  font-size: 2.375rem;
  font-weight: 500;
  color: #6d6b77;
}
.light-style .swal2-popup .swal2-content {
  color: #acaab1;
  line-height: 1.375;
  font-size: 1.125rem;
  font-weight: 300;
}
.light-style .swal2-popup .swal2-input,
.light-style .swal2-popup .swal2-file,
.light-style .swal2-popup .swal2-textarea {
  border: var(--bs-border-width) solid #d1d0d4 !important;
  font-size: 1rem;
  color: #6d6b77;
  border-radius: 0.5rem;
}
.light-style .swal2-popup .swal2-validationerror {
  color: #6d6b77;
  background: rgba(47, 43, 61, 0.1);
}
.light-style .swal2-popup .swal2-icon.swal2-success {
  border-color: #28c76f;
}
.light-style .swal2-popup .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(40, 199, 111, 0.2);
}
.light-style .swal2-popup .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #28c76f;
}
.light-style .swal2-popup .swal2-icon.swal2-question {
  border-color: rgba(128, 131, 144, 0.4);
  color: #808390;
}
.light-style .swal2-popup .swal2-icon.swal2-info {
  border-color: rgba(0, 186, 209, 0.4);
  color: #00bad1;
}
.light-style .swal2-popup .swal2-icon.swal2-warning {
  border-color: rgba(255, 159, 67, 0.8);
  color: #ff9f43;
}
.light-style .swal2-popup .swal2-icon.swal2-error {
  border-color: rgba(255, 76, 81, 0.6);
}
.light-style .swal2-popup .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  border-color: #ff4c51;
}

.dark-style .swal2-container {
  z-index: 1090;
}
.dark-style .swal2-container .tooltip {
  z-index: 1092;
}
.dark-style .swal2-container .popover {
  z-index: 1091;
}
.dark-style .swal2-modal.swal2-popup {
  background: #2f3349;
  font-family: var(--bs-font-sans-serif);
  box-shadow: 0 0.25rem 1.125rem 0 rgba(19, 17, 32, 0.22);
  border-radius: 0.375rem;
}
.dark-style .swal2-container.swal2-shown {
  background: rgba(23, 25, 37, 0.6);
}
.dark-style .swal2-popup .swal2-title {
  font-size: 2.375rem;
  font-weight: 500;
  color: #acabc1;
}
.dark-style .swal2-popup .swal2-content {
  font-weight: 300;
  color: #76778e;
  line-height: 1.375;
  font-size: 1.125rem;
}
.dark-style .swal2-popup .swal2-content pre {
  color: #acabc1;
}
.dark-style .swal2-popup .swal2-footer {
  border-top: 1px solid #44485e;
}
.dark-style .swal2-popup .swal2-html-container {
  color: #acabc1;
}
.dark-style .swal2-popup .swal2-input,
.dark-style .swal2-popup .swal2-file,
.dark-style .swal2-popup .swal2-textarea {
  color: #acabc1;
  border: var(--bs-border-width) solid #56596f !important;
  font-size: 1rem;
  border-radius: 0.5rem;
}
.dark-style .swal2-popup .swal2-validationerror {
  color: #acabc1;
  background: rgba(225, 222, 245, 0.1);
}
.dark-style .swal2-popup .swal2-icon.swal2-success {
  border-color: #28c76f;
}
.dark-style .swal2-popup .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(40, 199, 111, 0.2);
}
.dark-style .swal2-popup .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #28c76f;
}
.dark-style .swal2-popup .swal2-icon.swal2-question {
  border-color: rgba(128, 131, 144, 0.4);
  color: #808390;
}
.dark-style .swal2-popup .swal2-icon.swal2-info {
  border-color: rgba(0, 186, 209, 0.4);
  color: #00bad1;
}
.dark-style .swal2-popup .swal2-icon.swal2-warning {
  border-color: rgba(255, 159, 67, 0.8);
  color: #ff9f43;
}
.dark-style .swal2-popup .swal2-icon.swal2-error {
  border-color: rgba(255, 76, 81, 0.6);
}
.dark-style .swal2-popup .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  border-color: #ff4c51;
}

.swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  display: block;
  width: 1em;
  height: 1em;
  margin-left: 0.2rem;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  box-shadow: none;
}
[dir=rtl] .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  margin-left: 0;
  margin-right: 0.5em;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-modal:not([style="display: none;"]),
  .swal2-icon:not([style="display: none;"]),
  .swal2-actions:not([style="display: none;"]),
  .swal2-image:not([style="display: none;"]),
  .swal2-input:not([style="display: none;"]),
  .swal2-file:not([style="display: none;"]),
  .swal2-range:not([style="display: none;"]),
  .swal2-select:not([style="display: none;"]),
  .swal2-radio:not([style="display: none;"]),
  .swal2-checkbox:not([style="display: none;"]),
  .swal2-textarea:not([style="display: none;"]),
  .swal2-footer:not([style="display: none;"]) {
    display: flex;
  }
}
