
/* --- file: 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);
    }

}
/* --- file: 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 shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}





.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 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 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% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}





/*** 
=============================================
    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 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);
  }

  50% {
      transform: scale(1);
  }

  100% {
      transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
      transform: scale(0.9);
  }

  50% {
      transform: scale(1);
  }

  100% {
      transform: scale(0.9);
  }
}


/* custom animations */

@keyframes btnIconMove {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
    }

    50% {
        transform: rotate(20deg) translate(10px, 0px);
    }

    100% {
        transform: rotate(0deg) translate(0px, 0px);
    }
}

@keyframes ImgBounce {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(10px);
    }

    75% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}






  /** squares **/

  @-moz-keyframessquares{0%{-webkit-transform:scale(1);transform:scale(1);opacity:0}20%{-webkit-transform:scale(1.24);transform:scale(1.24);opacity:1}100%{-webkit-transform:scale(2.1);transform:scale(2.1);opacity:0}}
  @-moz-keyframes squares{0%{-moz-transform:scale(1);transform:scale(1);opacity:0}20%{-moz-transform:scale(1.24);transform:scale(1.24);opacity:1}100%{-moz-transform:scale(2.1);transform:scale(2.1);opacity:0}}
  @-o-keyframes squares{0%{-o-transform:scale(1);transform:scale(1);opacity:0}20%{-o-transform:scale(1.24);transform:scale(1.24);opacity:1}100%{-o-transform:scale(2.1);transform:scale(2.1);opacity:0}}
  @keyframes squares{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}20%{-webkit-transform:scale(1.24);-moz-transform:scale(1.24);-o-transform:scale(1.24);transform:scale(1.24);opacity:1}100%{-webkit-transform:scale(2.1);-moz-transform:scale(2.1);-o-transform:scale(2.1);transform:scale(2.1);opacity:0}} 

/***
=============================================
    Float Bob X Animation Css
=============================================
***/
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}



/* --- file: all.min.css --- */
/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400d41d.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400d41d.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900d41d.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
/* --- file: nouislider.min.css --- */
/*! nouislider - 14.1.1 - 12/15/2019 */
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-connect{height:100%;width:100%}.noUi-origin{height:10%;width:10%}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;top:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}
/* --- file: nouislider.pips.css --- */

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-pips {
	position: absolute;
	font: 400 12px Arial;
	color: #999;
}

/* Values;
 *
 */
.noUi-value {
	width: 40px;
	position: absolute;
	text-align: center;
}
.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
	position: absolute;
	background: #CCC;
}
.noUi-marker-sub {
	background: #AAA;
}
.noUi-marker-large {
	background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
	padding: 10px 0;
	height: 50px;
	top: 100%;
	left: 0;
	width: 100%;
}
.noUi-value-horizontal {
	margin-left: -20px;
	padding-top: 20px;
}
.noUi-value-horizontal.noUi-value-sub {
	padding-top: 15px;
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}
.noUi-value-vertical {
	width: 15px;
	margin-left: 20px;
	margin-top: -5px;
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}

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

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}








.icon-email:before {
  content: "\e900";
}
.icon-phone-ringing:before {
  content: "\e901";
}
.icon-right-arrow:before {
  content: "\e902";
}
.icon-calendar:before {
  content: "\e903";
}
.icon-budget:before {
  content: "\e904";
}
.icon-garbage:before {
  content: "\e905";
}
.icon-garbage-truck:before {
  content: "\e906";
}
.icon-shop:before {
  content: "\e907";
}
.icon-stethoscope:before {
  content: "\e908";
}
.icon-grocery:before {
  content: "\e909";
}
.icon-recycling-symbol:before {
  content: "\e90a";
}
.icon-garbage-1:before {
  content: "\e90b";
}
.icon-dumpster:before {
  content: "\e90c";
}
.icon-portable-toilets:before {
  content: "\e90d";
}
.icon-triangular-arrows-sign-for-recycle:before {
  content: "\e90e";
}
.icon-quote:before {
  content: "\e90f";
}
.icon-contact:before {
  content: "\e910";
}
.icon-phone-call:before {
  content: "\e911";
}
.icon-message:before {
  content: "\e912";
}
.icon-magnifying-glass:before {
  content: "\e913";
}
.icon-placeholder:before {
  content: "\e914";
}
.icon-waste:before {
  content: "\e915";
}
.icon-affection:before {
  content: "\e916";
}
.icon-success:before {
  content: "\e917";
}
.icon-work-station:before {
  content: "\e918";
}
.icon-construction:before {
  content: "\e919";
}
.icon-education:before {
  content: "\e91a";
}
.icon-processing:before {
  content: "\e91b";
}
.icon-growth:before {
  content: "\e91c";
}
.icon-handshake:before {
  content: "\e91d";
}
.icon-plus-symbol:before {
  content: "\e91e";
}
.icon-clock:before {
  content: "\e91f";
}

#loading-overlay {
    position: absolute;
    width: 100%;
    height:100%;
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    background-color: #000;
    z-index: 999;
    opacity: 0.5;
}
.loading-icon{ position:absolute;border-top:2px solid #fff;border-right:2px solid #fff;border-bottom:2px solid #fff;border-left:2px solid #767676;border-radius:25px;width:25px;height:25px;margin:0 auto;position:absolute;left:50%;margin-left:-20px;top:50%;margin-top:-20px;z-index:4;-webkit-animation:spin 1s linear infinite;-moz-animation:spin 1s linear infinite;animation:spin 1s linear infinite;}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }  
/* --- file: tiny-slider.min.css --- */
.tns-outer{padding:0!important}.tns-outer [hidden]{display:none!important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s,opacity 0s;-moz-transition:transform 0s,opacity 0s;transition:transform 0s,opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto!important}.tns-gallery>.tns-moving{-webkit-transition:all .25s;-moz-transition:all .25s;transition:all .25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity .6s;-moz-transition:opacity .6s;transition:opacity .6s;opacity:.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;z-index:0}.tns-fadeOut,.tns-normal{opacity:0;z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}
/* --- file: owl.carousel.min.css --- */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.html) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* --- file: owl.theme.default.min.css --- */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/* --- file: jquery.bxslider.css --- */
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


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

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

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

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

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

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

/* LOADER */

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

/* PAGER */

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

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

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

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

/* DIRECTION CONTROLS (NEXT / PREV) */

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

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

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

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

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

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

/* AUTO CONTROLS (START / STOP) */

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

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

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

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

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

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

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

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

/* IMAGE CAPTIONS */

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

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

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

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

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


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


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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/* --- file: wostin.css --- */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --wostin-font: 'DM Sans', sans-serif;
  --wostin-font-two: 'Poppins', sans-serif;
  --wostin-reey-font: "reeyregular";
  --wostin-gray: #3e3e3e;
  --wostin-gray-rgb: 135, 137, 134;
  --wostin-white: #ffffff;
  --wostin-white-rgb: 255, 255, 255;
  --wostin-black: #000;
  --wostin-black-rgb: 64, 74, 61;
  --wostin-base: #B5322F;
  --wostin-base-rgb: 85, 142, 76;
  --wostin-primary: #F8EB76;
  --wostin-primary-rgb: 236, 221, 94;
  --wostin-extra: #f5f0e9;
  --wostin-extra-rgb: 245, 240, 233;
  --wostin-bdr-color: #ebe5dd;
  --wostin-bdr-color-rgb: 235, 229, 221;
}

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

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

body {
  font-family: var(--wostin-font);
  color: var(--wostin-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--wostin-gray);
}

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--wostin-black);
  margin: 0;
  font-family: var(--wostin-font-two);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.section-separator {
  border-color: var(--wostin-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.thm-btn-2 {
  position: relative;
  display: inline-block;
    border-radius: 2rem;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--wostin-white);
  color: var(--wostin-base);
  font-size: 16px;
  font-weight: 600;
  padding: 17px 50px 16px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}
.thm-btn-2:hover{
  color: var(--wostin-white);
  background-color: var(--wostin-base);
}
.thm-btn {
  position: relative;
  border-radius: 2rem;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--wostin-primary);
  color: var(--wostin-black);
  font-size: 16px;
  font-weight: 600;
  padding: 17px 50px 16px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--wostin-white);
  background-color: transparent;
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wostin-base);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 1;
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-title {
  margin-top: -11px;
  margin-bottom: 46px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  color: var(--wostin-base);
  font-size: 16px;
  margin-top: 2px;
}

.section-title__tagline::before {
  position: absolute;
  top: 15px;
  right: -29px;
  background-color: var(--wostin-primary);
  width: 20px;
  height: 2px;
  content: "";
}

.section-title__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 51px;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99991;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--wostin-base);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--wostin-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/* owl dots default style */
.owl-dots__style-1 .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.owl-dots__style-1 .owl-dots .owl-dot {
  margin: 0;
}

.owl-dots__style-1 .owl-dots .owl-dot span {
  margin: 0 2.5px;
  width: 8px;
  height: 8px;
  background-color: var(--wostin-black);
  opacity: 0.2;
}

.owl-dots__style-1 .owl-dots .owl-dot.active span {
  background-color: var(--wostin-black);
  opacity: 1;
}

.owl-with-shadow .owl-stage-outer {
  overflow: visible;
}

.owl-with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.owl-with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  background-color: var(--wostin-white);
  width: 100%;
  z-index: 999;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__inner {
  position: relative;
  display: block;
  padding: 0 60px;
}

.main-header__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  padding: 52px 0;
}

.main-menu__menu-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 74%;
}

.main-menu__menu-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid var(--wostin-bdr-color);
  padding: 9px 0;
}

.main-menu__menu-top-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu__menu-top-text {
  font-size: 13px;
}

.main-menu__menu-top-btn-box {
  margin-left: 20px;
}

.main-menu__menu-top-btn {
  font-size: 12px;
  padding: 8px 30px 9px;
  line-height: 12px;
  background-color: var(--wostin-extra);
}

.main-menu__menu-top-right {
  position: relative;
  display: block;
  margin-left: 265px;
}

.main-menu__menu-top-address {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu__menu-top-address li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu__menu-top-address li + li {
  margin-left: 30px;
}

.main-menu__menu-top-address li .icon span {
  font-size: 12px;
  color: var(--wostin-base);
}

.main-menu__menu-top-address li .text {
  margin-left: 10px;
}

.main-menu__menu-top-address li .text p {
  font-size: 13px;
}

.main-menu__menu-top-address li .text p a {
  color: var(--wostin-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__menu-top-address li .text p a:hover {
  color: var(--wostin-base);
}

.main-menu__menu-bottom {
  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;
}

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

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

.main-header__right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: right;
  padding: 42.5px 0;
}

.main-header__right__call-icon {
  height: 60px;
  width: 60px;
  background-color: var(--wostin-primary);
  border-radius: 50%;
  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;
  color: var(--wostin-black);
  font-size: 26px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__right__call-icon:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.main-header__right-call-number {
  margin-left: 20px;
}

.main-header__right-call-number p {
  font-size: 14px;
}

.main-header__right-call-number h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--wostin-font);
}

.main-header__right-call-number a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__right-call-number a:hover {
  color: var(--wostin-base);
}

.stricky-header.main-menu {
  padding: 0 0;
  background-color: var(--wostin-white);
}

.stricky-header .main-menu__main-menu-box {
  position: relative;
  display: block;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .stricky-header .main-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .stricky-header .main-menu__list ul,
  .main-menu .main-menu__list ul {
    display: block;
  }
}

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

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

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--wostin-base);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--wostin-primary);
  position: absolute;
  bottom: -2px;
  left: 0px;
  right: 0px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--wostin-black);
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.main-menu .main-menu__list > li.current > a::before {
  background-color: var(--wostin-primary);
}

.main-menu .main-menu__list > li:hover > a::before {
  background-color: var(--wostin-primary);
}

.main-menu .main-menu__list li > ul,
.main-menu .main-menu__list li > ul > li > ul,
.stricky-header .main-menu__list li > ul > li > ul,
.stricky-header .main-menu__list li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
}

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

.main-menu .main-menu__list li ul > li + li,
.stricky-header .main-menu__list li ul > li + li {
  border-top: 1px solid RGBA(var(--wostin-black), 0.1);
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a {
  font-size: 16px;
  line-height: 30px;
  color: var(--wostin-black);
  letter-spacing: 0;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

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

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

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

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

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

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

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

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

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--wostin-black);
  cursor: pointer;
}

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

.mobile-nav__buttons a:hover {
  color: var(--wostin-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--wostin-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

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

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

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

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

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

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

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

.mobile-nav__content .wostin-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

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

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

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

.mobile-nav__content .main-menu__list ul {
  height: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: visibility 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, transform 500ms ease, opacity 500ms ease;
  transition: visibility 500ms ease, transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.mobile-nav__content .main-menu__list ul.expanded {
  height: auto;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

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

.mobile-nav__content .main-menu__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--wostin-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--wostin-base);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--wostin-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-color: #fff;
  color: var(--wostin-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--wostin-text-dark);
}

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

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

.mobile-nav__social a {
  font-size: 16px;
  color: var(--wostin-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

.mobile-nav__social a:hover {
  color: var(--wostin-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--wostin-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

.mobile-nav__contact li a:hover {
  color: var(--wostin-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--wostin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: var(--wostin-white);
}

.main-header-two__top-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 0;
}

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

.main-header-two__top-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header-two__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header-two__social a {
  position: relative;
  height: 43px;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  color: var(--wostin-black);
  font-size: 15px;
  background-color: var(--wostin-extra);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-header-two__social a:hover {
  color: var(--wostin-white);
}

.main-header-two__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wostin-base);
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 1;
  z-index: -1;
}

.main-header-two__social a:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.main-header-two__social a + a {
  margin-left: 10px;
}

.main-header-two__contact-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-header-two__contact-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header-two__contact-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header-two__contact-list li:before {
  position: absolute;
  top: 3px;
  left: -30px;
  bottom: 3px;
  content: "";
  width: 1px;
  background-color: var(--wostin-bdr-color);
}

.main-header-two__contact-list li:first-child:before {
  display: none;
}

.main-header-two__contact-list li + li {
  margin-left: 60px;
}

.main-header-two__contact-list li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header-two__contact-list li .icon span {
  font-size: 30px;
  color: var(--wostin-base);
}

.main-header-two__contact-list li .text {
  margin-left: 20px;
}

.main-header-two__contact-list li .text p {
  font-size: 14px;
}

.main-header-two__contact-list li .text h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--wostin-font);
}

.main-header-two__contact-list li .text a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__contact-list li .text a:hover {
  color: var(--wostin-base);
}

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

.main-menu-two__main-menu-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--wostin-primary);
}

.main-menu-two__main-menu-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 40px;
}

.main-menu-two__search-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 150px;
}

.main-menu-two__search-box:before {
  position: absolute;
  top: -7px;
  bottom: -9px;
  left: -30px;
  content: "";
  background-color: rgba(var(--wostin-black-rgb), 0.2);
  width: 1px;
  z-index: 2;
}

.main-menu-two__search {
  font-size: 24px;
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--wostin-base);
}

.main-menu-two__btn {
  font-size: 14px;
  color: var(--wostin-white);
  background-color: var(--wostin-black);
  padding: 21px 50px 21px;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--wostin-black);
}

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

.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
  padding-top: 21px;
  padding-bottom: 21px;
}

.main-menu-two .main-menu__list > li > a::before,
.stricky-header.main-menu-two .main-menu__list > li > a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--wostin-black);
  position: absolute;
  bottom: inherit;
  top: -21px;
}

.main-menu-two .main-menu__list > li.current > a::before {
  background-color: var(--wostin-black);
}

.main-menu-two .main-menu__list > li:hover > a::before {
  background-color: var(--wostin-black);
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: rgba(var(--wostin-white-rgb), 0.1);
}

.main-menu-three {
  padding: 0 60px;
}

.main-menu-three__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.main-menu-wrapper__logo {
  position: relative;
  display: block;
  padding: 38.5px 0;
}

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

.main-menu-three__right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: right;
  padding: 29px 0;
}

.main-menu-three__search-box {
  position: relative;
  margin-right: 38px;
}

.main-menu-three__search-box:before {
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -30px;
  content: "";
  background-color: rgba(var(--wostin-white-rgb), 0.1);
  width: 1px;
}

.main-menu-three__search {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--wostin-primary);
}

.main-menu-three__call {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu-three__call-icon {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  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;
  color: var(--wostin-primary);
  font-size: 26px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu-three__call-icon:hover {
  color: var(--wostin-base);
}

.main-menu-three__call-icon:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(var(--wostin-black-rgb), 0.1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.main-menu-three__call-icon:hover:before {
  background-color: var(--wostin-white);
}

.main-menu-three__call-number {
  margin-left: 20px;
}

.main-menu-three__call-number p {
  font-size: 14px;
  color: #c8e8c3;
}

.main-menu-three__call-number h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--wostin-font);
}

.main-menu-three__call-number a {
  color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__call-number a:hover {
  color: var(--wostin-primary);
}

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

.main-menu-three .main-menu__list > li,
.stricky-header.main-menu-three .main-menu__list > li {
  padding-top: 44px;
  padding-bottom: 44px;
}

.main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three .main-menu__list > li > a {
  color: #c8e8c3;
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li.current > a,
.stricky-header.main-menu-three .main-menu__list > li:hover > a {
  color: var(--wostin-white);
}

.main-menu-three .main-menu__list > li.current > a::before {
  background-color: var(--wostin-primary);
}

.main-menu-three .main-menu__list > li:hover > a::before {
  background-color: var(--wostin-primary);
}

.stricky-header.main-menu-three {
  padding: 0 60px;
  background-color: var(--wostin-base);
}

.stricky-header.main-menu-two {
  background-color: var(--wostin-primary);
}

.stricky-header.main-menu-two .main-menu-two__btn-box {
  position: relative;
}

.stricky-header.main-menu-two .main-menu-two__btn-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 1000000px;
  background-color: var(--wostin-black);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

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

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

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

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

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

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--wostin-base);
  border: 0;
}

.search-popup__content .thm-btn:hover:before {
  height: 480%;
  width: 200px;
}

.search-popup__content .thm-btn i {
  margin: 0;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  overflow: hidden;
  position: relative;
  height: 445px;
}

.main-slider .swiper-slide {
  position: relative;
}

.main-slider .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 260px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain !important;
  background-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .image-layer:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(38, 46, 36, 0.35);
  z-index: -1;
}

/*.main-slider .swiper-slide-active .image-layer {*/
/*  -webkit-transform: scale(1.15);*/
/*          transform: scale(1.15);*/
/*}*/

.main-slider__content {
  position: relative;
  display: block;
  /* text-align: center; */
}
.main-slider p{
  color: var(--wostin-white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  /* font-family: var(--wostin-white); */
}
.main-slider h2 {
  font-size: 3rem;
  color: var(--wostin-white);
  font-weight: 600;
  line-height:60px;
  /* margin-bottom: 43px; */
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider h2 span {
  position: relative;
  display: inline-block;
  color: var(--wostin-primary);
}

.main-slider .thm-btn {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
  -webkit-transition: opacity 2000ms ease,
 color 500ms ease,
 background 500ms ease,
 -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease,
 color 500ms ease,
 background 500ms ease,
 -webkit-transform 2000ms ease;
  transition: transform 2000ms ease,
 opacity 2000ms ease,
 color 500ms ease,
 background 500ms ease;
  transition: transform 2000ms ease,
 opacity 2000ms ease,
 color 500ms ease,
 background 500ms ease,
 -webkit-transform 2000ms ease;
}

.main-slider .thm-btn:hover {
  background-color: var(--wostin-primary);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active h2 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
}

.main-slider__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--wostin-black);
  font-size: 20px;
  background-color: var(--wostin-white);
  border-radius: 50%;
  opacity: .3;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  left: -60px;
}

.main-slider__nav .swiper-button-next {
  right: -60px;
}

.main-slider__nav .swiper-button-prev .arrow-left {
  position: relative;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
}

.main-slider-two .image-layer:before {
  display: none;
}

.main-slider-two .container {
  padding-top: 343px;
  padding-bottom: 160px;
}

.main-slider-two__content-box {
  position: relative;
  display: block;
}

.main-slider-two .main-slider__content {
  text-align: left;
}

.main-slider-two h2 {
  font-size: 110px;
  line-height: 103px;
  margin-bottom: 42px;
}

.main-slider-two .thm-btn {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.main-slider-two__video-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -40px;
  margin-left: -10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__video-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
}

.main-slider-two__video-link {
  position: relative;
}

.main-slider-two__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: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  font-size: 20px;
  color: var(--wostin-black);
  background-color: var(--wostin-white);
  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;
}

.main-slider-two__video-icon:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.main-slider-two__video-icon:before {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  z-index: 1;
  border: 1px solid var(--wostin-white);
  opacity: 0.09;
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--wostin-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--wostin-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--wostin-base-rgb), 0.6);
          box-shadow: 0 0 0 0 rgba(var(--wostin-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-two__video-text {
  opacity: .7;
  color: var(--wostin-white);
  line-height: 18px;
  margin-left: 45px;
}

.main-slider-two__big-text {
  position: absolute;
  bottom: -5px;
  left: 51%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  font-size: 250px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(var(--wostin-white-rgb), 0.1);
  color: transparent;
  letter-spacing: 0.2em;
}

.main-slider__nav-two {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 61%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-slider__nav-two .swiper-button-next,
.main-slider__nav-two .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: var(--wostin-black);
  background-color: var(--wostin-white);
  border-radius: 50%;
  opacity: .3;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider__nav-two .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider__nav-two .swiper-button-next:hover,
.main-slider__nav-two .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider__nav-two .swiper-button-next::after,
.main-slider__nav-two .swiper-button-prev::after {
  display: none;
}

.main-slider__nav-two .swiper-button-prev .arrow-left {
  position: relative;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--wostin-base);
}

.main-slider-three-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--wostin-base);
  z-index: 3;
}

.main-slider-three-bg-two {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 84px;
  background-color: var(--wostin-primary);
  z-index: 3;
}

.main-slider-three-building {
  position: absolute;
  bottom: 84px;
  right: 0;
  z-index: 9;
}

.main-slider-three-building img {
  width: auto;
}

.main-slider-three-car {
  position: absolute;
  bottom: 60px;
  right: 95px;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  z-index: 10;
}

.main-slider-three .swiper-slide-active .main-slider-three-car {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 3000ms;
          transition-delay: 3000ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three-car img {
  width: auto;
}

.main-slider-three .container {
  padding-top: 286px;
  padding-bottom: 260px;
}

.main-slider-three .main-slider__content {
  position: relative;
  display: block;
  text-align: left;
}

.main-slider-three h2 {
  font-size: 90px;
  color: var(--wostin-white);
  line-height: 90px;
  margin-bottom: 35px;
  font-family: var(--wostin-font);
}

.main-slider-three .thm-btn:hover {
  color: var(--wostin-base);
}

.main-slider-three .thm-btn:after {
  background-color: var(--wostin-white);
}

/*--------------------------------------------------------------
# Feature One Start
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  z-index: 3;
}

.feature-one__inner {
  position: relative;
  display: block;
  background-color: var(--wostin-black);
  padding: 88px 0 74px;
  margin-top: -80px;
}

.feature-one__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.feature-one__single {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
}

.feature-one__single:before {
  position: absolute;
  top: 7px;
  bottom: 6px;
  right: 0;
  content: "";
  width: 1px;
  background-color: rgba(var(--wostin-white-rgb), 0.1);
}

.feature-one__single:last-child:before {
  display: none;
}

.feature-one__icon {
  position: absolute;
  height: 130px;
  width: 130px;
  background-color: var(--wostin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  top: -153px;
  left: 0;
  right: 0;
  z-index: 1;
}

.feature-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--wostin-primary);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.feature-one__single:hover .feature-one__icon:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  color: var(--wostin-white);
  font-size: 65px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  color: var(--wostin-black);
}

.feature-one__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 40px;
  margin-top: 3px;
}

.feature-one__title a {
  color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__title a:hover {
  color: var(--wostin-primary);
}

/*--------------------------------------------------------------
# Leading Waste
--------------------------------------------------------------*/
.leading-waste {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.leading-waste__left {
  position: relative;
  display: block;
  margin-left: 40px;
  margin-right: 30px;
}

.leading-waste__img-box {
  position: relative;
  display: block;
}

.leading-waste__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.leading-waste__img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.leading-waste__img:hover:before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.leading-waste__img img {
  width: 100%;
}

.leading-waste__experience {
  position: absolute;
  top: -40px;
  left: -40px;
  height: 162px;
  width: 165px;
  background-color: var(--wostin-base);
  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;
}

.leading-waste__experience::after {
  position: absolute;
  bottom: 0;
  right: -20px;
  content: "";
  width: 0;
  border-right: 20px solid transparent;
  border-bottom: 20px solid var(--wostin-base);
}

.leading-waste__experience p {
  color: var(--wostin-white);
  line-height: 24px;
}

.leading-waste__experience p span {
  font-size: 60px;
  color: var(--wostin-primary);
  line-height: 58px;
  font-weight: 600;
  font-family: var(--wostin-font-two);
}

.leading-waste__img-shape-1 {
  position: absolute;
  bottom: -55px;
  right: -135px;
  z-index: 1;
}

.leading-waste__img-shape-1 img {
  width: auto;
}

.leading-waste__big-text {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: -561px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.leading-waste__big-text p {
  font-size: 100px;
  color: var(--wostin-extra);
  text-transform: uppercase;
  line-height: 100px;
  letter-spacing: 0.26em;
  font-weight: 400;
  opacity: 0.3;
}

.leading-waste__right {
  position: relative;
  display: block;
  /* margin-left: 100px; */
}

.leading-waste-dots {
  position: absolute;
  top: -121px;
  right: -183px;
  opacity: .10;
}

.leading-waste-dots img {
  width: auto;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.leading-waste__right .section-title {
  margin-bottom: 26px;
}

.leading-waste__text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}

.leading-waste__text span {
  font-size: 24px;
  color: var(--wostin-base);
  font-family: var(--wostin-font-two);
  font-weight: 600;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.leading-waste__text span:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 101px;
  height: 11px;
  background-image: url(../images/shapes/leading-waste-text-shape-1.png);
  background-repeat: no-repeat;
  content: "";
  z-index: -1;
}

.leading-waste__points {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 43px;
}

.leading-waste__points li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  width:50%;
  float:left;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.leading-waste__points li + li {
  margin-top: 10px;
}

.leading-waste__points li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.leading-waste__points li .icon span {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-base);
  border-radius: 50%;
  color: var(--wostin-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7px;
}

.leading-waste__points li .text {
  margin-left: 20px;
}

.leading-waste__points li .text p {
  font-size: 16px;
  color: var(--wostin-black);
}

/*--------------------------------------------------------------
# Industries One
--------------------------------------------------------------*/
.industries-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 112px 0 113px;
  background-color: var(--wostin-extra);
  z-index: 1;
}

.industries-one:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--wostin-white);
  height: 490px;
  z-index: -1;
}

.industries-one-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--wostin-extra);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  opacity: .3;
  z-index: -1;
}

.industries-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.industries-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.industries-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  content: "";
  background-color: rgba(var(--wostin-black-rgb), 0.5);
  z-index: 1;
}

.industries-one__single:hover .industries-one__img:before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.industries-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.industries-one__single:hover .industries-one__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.industries-one__content {
  position: relative;
  display: block;
  border: 1px solid var(--wostin-bdr-color);
  border-top: 0;
  text-align: center;
  padding: 86px 50px 50px;
  background-color: white;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.industries-one__single:hover .industries-one__content {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.industries-one__content::after {
  position: absolute;
  bottom: -1px;
  right: -1px;
  content: "";
  width: 0;
  border-left: 30px solid transparent;
  border-bottom: 30px solid var(--wostin-bdr-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.industries-one__single:hover .industries-one__content::after {
  border-bottom: 30px solid var(--wostin-primary);
}

.industries-one__icon {
  height: 125px;
  width: 125px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  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;
  margin: 0 auto;
  position: absolute;
  top: -62px;
  left: 0;
  right: 0;
  z-index: 1;
}

.industries-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--wostin-primary);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.industries-one__single:hover .industries-one__icon:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.industries-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 63px;
  color: var(--wostin-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.industries-one__single:hover .industries-one__icon span {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  color: var(--wostin-black);
}

.industries-one__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 24px;
}

.industries-one__title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.industries-one__title a:hover {
  color: var(--wostin-base);
}

.industries-one__text {
  padding-top: 19px;
  padding-bottom: 22px;
}

.industries-one__arrow {
  position: relative;
  display: block;
}

.industries-one__arrow a {
  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;
  height: 45px;
  width: 45px;
  margin: 0 auto;
  background-color: var(--wostin-extra);
  border-radius: 50%;
  color: var(--wostin-black);
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.industries-one__single:hover .industries-one__arrow a {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
# We Dedicated
--------------------------------------------------------------*/
.we-dedicated {
  position: relative;
  display: block;
  padding: 0 0 143px;
}

.we-dedicated__left {
  position: relative;
  display: block;
  margin-right: 100px;
}

.we-dedicated__left .section-title {
  margin-top: -11px;
  margin-bottom: 28px;
}

.we-dedicated__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 32px;
}

.we-dedicated__progress-single {
  position: relative;
  display: block;
}

.we-dedicated__progress-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--wostin-black);
  margin-bottom: 6px;
  font-family: var(--wostin-font);
}

.we-dedicated__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  background-color: var(--wostin-extra);
  border-radius: 7px;
  margin-bottom: 26px;
}

.we-dedicated__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  border-radius: 7px;
  background-color: var(--wostin-primary);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.we-dedicated__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 21px;
  color: var(--wostin-gray);
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.we-dedicated__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.we-dedicated__progress .bar.marb-0 {
  margin-bottom: 0;
}

.we-dedicated__right {
  position: relative;
  display: block;
}

.we-dedicated__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.we-dedicated__img-box:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--wostin-primary);
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  z-index: -1;
}

.we-dedicated__img-box img {
  width: 100%;
}

.we-dedicated__video-link {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 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;
}

.we-dedicated__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: 97px;
  height: 97px;
  line-height: 97px;
  text-align: center;
  font-size: 23px;
  color: var(--wostin-white);
  background-color: var(--wostin-base);
  border-radius: 50%;
  margin: 0 auto;
  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;
}

.we-dedicated__video-icon:hover {
  background-color: var(--wostin-primary);
  color: var(--wostin-black);
}

.we-dedicated__video-icon:before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  content: "";
  border-radius: 50%;
  z-index: 1;
  border: 1px solid var(--wostin-white);
  opacity: 0.1;
}

.we-dedicated__video-link .ripple,
.we-dedicated__video-icon .ripple:before,
.we-dedicated__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 127px;
  height: 127px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--wostin-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--wostin-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--wostin-primary-rgb), 0.6);
          box-shadow: 0 0 0 0 rgba(var(--wostin-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.we-dedicated__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.we-dedicated__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background-color: var(--wostin-base);
  padding: 120px 0 90px;
}

.counter-one-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wostin-base);
  z-index: 1;
}

.counter-one-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  mix-blend-mode: luminosity;
  opacity: 0.05;
}

.counter-one__single {
  position: relative;
  display: block;
  padding-top: 40px;
  padding-bottom: 33px;
  padding-left: 60px;
  padding-right: 40px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 1;
}

.counter-one__single:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.counter-one__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(var(--wostin-black-rgb), 0.5);
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.counter-one__single:hover:before {
  background-color: rgba(var(--wostin-black-rgb), 1);
}

.counter-one__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.counter-one__count {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -11px;
}

.counter-one__count h2 {
  font-size: 60px;
  color: var(--wostin-white);
  line-height: 60px !important;
  font-family: var(--wostin-font-two) !important;
}

.counter-one__plus {
  font-size: 60px;
  color: var(--wostin-white);
  line-height: 60px !important;
  font-family: var(--wostin-font-two) !important;
}

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

.counter-one__icon span {
  font-size: 62px;
  color: var(--wostin-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__icon span {
  color: var(--wostin-white);
}

.counter-one__title {
  font-size: 18px;
  color: var(--wostin-primary);
  font-weight: 500;
  line-height: 22px;
  font-family: var(--wostin-font);
  padding-bottom: 16px;
}

.counter-one__text {
  color: #c8e8c3;
}

.counter-one .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

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

.services-one__top-left {
  position: relative;
  display: block;
}

.services-one__top-right {
  position: relative;
  display: block;
}

.services-one__top-text {
  margin-top: 32px;
}

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

/*.services-one__bottom .row {*/
/*  --bs-gutter-x: 57px;*/
/*}*/

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  /*-webkit-transition: -webkit-transform 500ms ease;*/
  /*transition: -webkit-transform 500ms ease;*/
  /*transition: transform 500ms ease;*/
  /*transition: transform 500ms ease, -webkit-transform 500ms ease;*/
}

@media (max-width: 767px) {
  /*.services-one__single:hover {*/
  /*  -webkit-transform: translateY(-65px);*/
  /*          transform: translateY(-65px);*/
  /*}*/
}

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

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

.services-one__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: rgba(var(--wostin-black-rgb), 0.5);
  visibility: hidden;
  /*opacity: 0;*/
  /*-webkit-transform-style: preserve-3d;*/
  /*        transform-style: preserve-3d;*/
  /*-webkit-transform: perspective(370px) rotateY(90deg) translate(0px, 50px);*/
  /*        transform: perspective(370px) rotateY(90deg) translate(0px, 50px);*/
  /*transition: all 700ms ease;*/
  /*-moz-transition: all 700ms ease;*/
  /*-webkit-transition: all 700ms ease;*/
  /*-ms-transition: all 700ms ease;*/
  /*-o-transition: all 700ms ease;*/
  z-index: 1;
}

/*.services-one__single:hover .services-one__img:before {*/
/*  visibility: visible;*/
/*  opacity: 1;*/
  /*-webkit-transform: perspective(370px) rotateY(0deg) translate(0px, 0px);*/
  /*        transform: perspective(370px) rotateY(0deg) translate(0px, 0px);*/
/*  height: 100%;*/
/*}*/

.services-one__img img {
  width: 100%;
}

.services-one__icon {
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  height: 90px;
  width: 90px;
  background-color: var(--wostin-base);
  border-radius: 50%;
  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;
  margin: 0 auto;
  z-index: 2;
}

.services-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--wostin-primary);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  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 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--wostin-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  /*-webkit-transform: scale(0.9);*/
  /*        transform: scale(0.9);*/
  color: var(--wostin-black);
}

.services-one__content-box {
  position: relative;
  display: block;
}

.services-one__content {
  position: relative;
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  text-align: center;
  padding: 61px 0 26px;
}

.services-one__single:hover .services-one__content {
  /*-webkit-transform: translateY(0px);*/
  /*        transform: translateY(0px);*/
  /*-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;
}

.services-one__title {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 600;
}

.services-one__title a {
  color: var(--wostin-black);
}

.services-one__hover {
    height:220px;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  text-align: center;
  padding: 61px 30px 24px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /*-webkit-transform: translateY(0px);*/
  /*        transform: translateY(0px);*/
  /*-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;*/
}

.services-one__single:hover .services-one__hover {
  /*-webkit-transform: translateY(0px);*/
  /*        transform: translateY(0px);*/
  opacity: 1;
  visibility: visible;
}

.services-one__hover-title {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 7px;
}

.services-one__hover-title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__hover-title a:hover {
  color: var(--wostin-base);
}

/*--------------------------------------------------------------
# Have Waste
--------------------------------------------------------------*/
.have-waste {
  position: relative;
  display: block;
  padding: 0 0 0;
  z-index: 2;
}

.have-waste__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--wostin-primary);
  padding-left: 80px;
  padding-right: 125px;
  padding-top: 59px;
  padding-bottom: 58px;
}

.have-waste__left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.have-waste__content {
  font-size: 50px;
  color: var(--wostin-black);
  font-weight: 600;
  line-height: 60px;
}

.have-waste__icon {
  position: relative;
  height: 93px;
  width: 93px;
  background-color: var(--wostin-black);
  border-radius: 50%;
  font-size: 35px;
  color: var(--wostin-primary);
  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;
  margin-left: 190px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.have-waste__icon:hover {
  color: var(--wostin-base);
  background-color: var(--wostin-white);
}

.have-waste__icon:before {
  position: absolute;
  top: 50%;
  left: -65px;
  width: 55px;
  height: 2px;
  content: "";
  background-color: rgba(var(--wostin-black-rgb), 0.15);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.have-waste__icon:after {
  position: absolute;
  top: 50%;
  right: -65px;
  width: 55px;
  height: 2px;
  content: "";
  background-color: rgba(var(--wostin-black-rgb), 0.15);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.have-waste__right {
  position: relative;
  display: block;
}

.have-waste__contact-info {
  position: relative;
  display: block;
  line-height: 26px;
}

.have-waste__contact-text {
  font-weight: 400;
  color: var(--wostin-black);
  font-family: var(--wostin-font);
  font-size: 16px;
  line-height: 30px;
}

.have-waste__contact-number {
  font-size: 20px;
  color: var(--wostin-black);
  font-weight: 600;
  display: block;
  font-family: var(--wostin-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.have-waste__contact-number:hover {
  color: var(--wostin-base);
}

.have-waste__contact-email {
  font-size: 20px;
  color: var(--wostin-base);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.have-waste__contact-email:hover {
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 220px 0 90px;
  margin-top: -105px;
  z-index: 1;
}

.project-one-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--wostin-black);
  height: 692px;
  z-index: 1;
}

.project-one-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 692px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: var(--wostin-black);
  background-blend-mode: color-burn;
  opacity: .25;
  z-index: 1;
}

.project-one__container {
  position: relative;
  display: block;
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 5;
}

.project-one .section-title {
  position: relative;
  display: block;
  z-index: 5;
}

.project-one .section-title__tagline {
  color: #a5b9ad;
}

.project-one .section-title__title {
  color: var(--wostin-white);
}

.project-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--wostin-black);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  opacity: .50;
  z-index: 1;
}

.project-one__single:hover .project-one__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.project-one__img img {
  width: 100%;
  -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;
}

.project-one__single:hover .project-one__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.project-one__content {
  position: relative;
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 19px 30px 27px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -55px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 3;
}

.project-one__single:hover .project-one__content {
  -webkit-transform: translateY(-84px);
          transform: translateY(-84px);
}

.project-one__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.project-one__title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__single:hover .project-one__title a {
  color: var(--wostin-base);
}

.project-one__arrow {
  position: absolute;
  top: -23px;
  right: 20px;
}

.project-one__arrow a {
  height: 45px;
  width: 45px;
  background-color: var(--wostin-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;
  color: var(--wostin-white);
  border-radius: 50%;
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__single:hover .project-one__arrow a {
  background-color: var(--wostin-primary);
  color: var(--wostin-black);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  border-top: 1px solid var(--wostin-bdr-color);
  padding: 78px 0 79px;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.3;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 120px 0 120px;
}

.testimonial-one-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 812px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  background-color: var(--wostin-extra);
  background-blend-mode: luminosity;
  opacity: .10;
}

.testimonial-one__left {
  position: relative;
  display: block;
  margin-right: 118px;
  z-index: 5;
}

.testimonial-one__left .section-title {
  margin-bottom: 28px;
}

.testimonial-one__text-1 {
  padding-bottom: 40px;
}

.testimonial-one__right {
  position: relative;
  display: block;
}

.testimonial-one__people {
  position: absolute;
  top: -38px;
  left: -88px;
}

.testimonial-one__people img {
  width: auto;
  border-radius: 50%;
}

.testimonial-one__people-2 {
  bottom: 120px;
  left: -112px;
  top: inherit;
}

.testimonial-one__people-3 {
  left: 255px;
  bottom: -36px;
  top: inherit;
}

.testimonial-one__people-4 {
  right: -185px;
  bottom: 100px;
  top: inherit;
  left: inherit;
}

.testimonial-one__people-5 {
  left: inherit;
  top: 67px;
  right: -215px;
}

.testimonial-one__people-6 {
  top: -42px;
  right: 145px;
  left: inherit;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 44px 50px 60px;
}

.testimonial-one__feedback-box {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--wostin-bdr-color);
  padding-bottom: 22px;
}

.testimonial-one__feedback {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-one__feedback a {
  font-size: 15px;
  color: var(--wostin-primary);
}

.testimonial-one__feedback a + a {
  margin-left: 4px;
}

.testimonial-one__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 44px;
}

.testimonial-one__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 38px;
  padding-top: 18px;
  padding-bottom: 31px;
}

.testimonial-one__client-info-box {
  position: relative;
  top:20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonial-one__client-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 13px;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  border-radius: 50%;
}

.testimonial-one__client-img:before {
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  content: "";
  border: 2px solid var(--wostin-base);
  border-radius: 50%;
}

.testimonial-one__client-img img {
  width: auto !important;
  border-radius: 50%;
}

.testimonial-one__client-content {
  margin-left: 35px;
}

.testimonial-one__client-name {
  font-size: 18px;
  color: var(--wostin-base);
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 22px;
}

.testimonial-one__client-title {
  font-weight: 400;
}

.testimonial-one__quote span {
  font-size: 42px;
  color: var(--wostin-primary);
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.news-one--carousel {
  padding-bottom: 120px;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

.news-one__img img {
  width: 100%;
  object-fit:cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-one__date {
  position: absolute;
  bottom: 0;
  left: 50px;
  background-color: var(--wostin-primary);
  padding: 4px 20px 4px;
  z-index: 2;
}

.news-one__date p {
  font-size: 12px;
  color: var(--wostin-black);
  margin: 0;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-one__img > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--wostin-black-rgb), 0.5);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  color: var(--wostin-base);
  -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(-30%);
          transform: translateY(-30%);
}

.news-one__img > a > span {
  position: relative;
}

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

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

.news-one__img > a:hover > span::before,
.news-one__img > a:hover > span::after {
  background-color: var(--wostin-white);
}

.news-one__single:hover .news-one__img > a {
  visibility: visible;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}

.news-one__content {
  position: relative;
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 32px 20px 40px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__content:before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  height: 3px;
  background-color: var(--wostin-base);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.news-one__single:hover .news-one__content:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.news-one__meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-one__meta li + li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--wostin-base);
}

.news-one__meta li a i {
  color: var(--wostin-base);
}

.news-one__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 5px;
  font-family: var(--wostin-font);
}

.news-one__title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__title a {
  color: var(--wostin-base);
}

.news-one__read-more {
  position: relative;
  display: block;
  margin-top: 13px;
}

.news-one__read-more a {
  font-size: 14px;
  color: var(--wostin-black);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__read-more a {
  color: var(--wostin-base);
}

.news-one__read-more a i {
  font-size: 12px;
  color: var(--wostin-base);
  padding-right: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__read-more a i {
  color: var(--wostin-primary);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--wostin-black);
  z-index: 1;
}

.site-footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: var(--wostin-black);
  opacity: 0.05;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--wostin-white-rgb), 0.1);
  background-color: var(--wostin-base);
}

.site-footer__top-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 42px 0;
}

.site-footer__top-logo {
  position: relative;
  display: inline-block;
}

.site-footer__top-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer__top-right-text {
  font-size: 18px;
  color: var(--wostin-white);
}

.site-footer__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  /*margin-left: 100px;*/
}

.site-footer__social:before {
  position: absolute;
  top: -25px;
  bottom: -24px;
  left: -50px;
  content: "";
  background-color: rgba(var(--wostin-white-rgb), 0.1);
  width: 1px;
}

.site-footer__social a {
  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;
  text-align: center;
  color: var(--wostin-white);
  font-size: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--wostin-primary);
}

.site-footer__social a + a {
  margin-left: 35px;
}

.site-footer__middle {
  position: relative;
  display: block;
  padding: 96px 0 108px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 70px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
  margin-top: -3px;
}
.footer-widget__about-text-box p{
    color:#fff !important;
}

.footer-widget__about-text {
  color: #a5b9ad;
  line-height: 24px;
  margin: 0;
}

.footer-widget__newsletter-form {
  position: relative;
  display: block;
  margin-top: 21px;
}

.footer-widget__newsletter-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-input-box input[type="email"] {
  height: 64px;
  width: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 80px;
  font-size: 15px;
  color: var(--wostin-gray);
  font-weight: 500;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  color: var(--wostin-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 0;
  font-size: 16px;
}

.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__title {
  font-size: 24px;
  color: var(--wostin-white);
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
  margin-top: -1px;
}

.footer-widget__links-list li + li {
  margin-top: 3px;
}

.footer-widget__links-list li a {
  position: relative;
  font-size: 16px;
  color: #a5b9ad;
  font-weight: 500;
  padding-left: 21px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--wostin-white);
}

.footer-widget__links-list li a:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  color: var(--wostin-primary);
  position: absolute;
  top: -4px;
  left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover:before {
  color: var(--wostin-white);
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-right: 60px;
}

.footer-widget__services-list {
  position: relative;
  display: block;
}

.footer-widget__services-list li + li {
  margin-top: 3px;
}

.footer-widget__services-list li a {
  position: relative;
  font-size: 16px;
  color: #a5b9ad;
  font-weight: 500;
  padding-left: 21px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__services-list li a:hover {
  color: var(--wostin-white);
}

.footer-widget__services-list li a:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  color: var(--wostin-primary);
  position: absolute;
  top: -4px;
  left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__services-list li a:hover:before {
  color: var(--wostin-white);
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-text {
  color: #b0baae;
  line-height: 28px;
}

.footer-widget__contact-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.footer-widget__contact-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-widget__contact-icon span {
  font-size: 24px;
  color: var(--wostin-primary);
  margin-right: 10px;
}

.footer-widget__contact-content {
  margin-left: 13px;
}

.footer-widget__contact-mail-phone {
  font-size: 16px;
  font-weight: 600;
}

.footer-widget__contact-mail {
  color: var(--wostin-white);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-mail:hover {
  color: var(--wostin-primary);
}

.footer-widget__contact-phone {
  color: var(--wostin-white);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-phone:hover {
  color: var(--wostin-primary);
}

.site-footer__bottom {
  position: relative;
  display: block;
  background-color: #353e32;
}

.site-footer-bottom-shape {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 16px;
  z-index: 5;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 35px 0;
}

.site-footer__bottom-text {
  font-size: 16px;
  color: #b0baae;
  font-weight: 500;
  margin: 0;
}

.site-footer__bottom-text a {
  color: #b0baae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
.introduction {
  position: relative;
  display: block;
  padding: 120px 0 113px;
}

.introducton__left {
  position: relative;
  display: block;
  margin-right: 78px;
}

.introducton__left .section-title {
  margin-bottom: 26px;
}

.introducton__text {
  font-size: 18px;
  line-height: 24px;
}

.introduction__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 48px;
}

.introduction__bottom li + li {
  margin-left: 67px;
}

.introduction__bottom-icon {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.introduction__bottom-icon img {
  width: auto;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.introduction__bottom li:hover .introduction__bottom-icon img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.introduction__bottom-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 6px;
}
.introduction__bottom-title a{
    color:#b42f2c;
}
.introducton__right {
  position: relative;
  display: block;
  margin-right: 100px;
  margin-left: -30px;
}

.introducton__img-box {
  position: relative;
  display: block;
}

.introducton__img-1 {
  position: relative;
  display: block;
  z-index: 2;
}

.introducton__img-1 img {
  width: auto;
}

.introducton__img-2 {
  position: absolute;
  top: 190px;
  right: -90px;
  z-index: 1;
}

.introducton__img-2 img {
  width: auto;
}

.introducton__trusted {
  height: 170px;
  width: 170px;
  background-color: var(--wostin-base);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -52px;
  left: 124px;
}

.introducton__trusted:before {
  position: absolute;
  bottom: 2px;
  right: 27px;
  content: "";
  background-image: url(../images/shapes/introducton-trusted-shape.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 11px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.introducton__trusted-text {
  color: var(--wostin-white);
  line-height: 24px;
}

.introducton__trusted h3 {
  font-size: 60px;
  font-weight: 600;
  color: var(--wostin-primary);
  font-family: var(--wostin-font-two) !important;
  line-height: 60px !important;
}

.introducton__trusted .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Waste Materials
--------------------------------------------------------------*/
.waste-materials {
  position: relative;
  display: block;
  z-index: 2;
}

.waste-materials__inner {
  position: relative;
  background-color: var(--wostin-base);
  padding: 32px 20px;
  overflow: hidden;
  z-index: 1;
  border-radius: .5em;
  margin-bottom: 1rem;
}

.waste-materials-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--wostin-base);
  background-blend-mode: color-burn;
  opacity: .15;
  z-index: -1;
}

.waste-materials-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.waste-materials-shape-1 img {
  width: auto;
}

.waste-materials__title-box {
  position: relative;
  display: block;
  margin-bottom: 2em;
  text-align: center;
}

.waste-materials__title {
  font-size: 2rem;
  font-family: var(--wostin-font-two);
  color: var(--wostin-white);
  font-weight: 500;
  line-height: 40px;
}

.waste-materials__points {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: space-around;
}

.waste-materials__point-1 {
  position: relative;
  display: block;
}

.waste-materials__point-1 li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.waste-materials__point-1 li + li {
  margin-top: 5px;
}

.waste-materials__point-1 li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.waste-materials__point-1 li .icon span {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-primary);
  border-radius: 50%;
  color: var(--wostin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7px;
}

.waste-materials__point-1 li .text {
  margin-left: 20px;
}

.waste-materials__point-1 li .text p {
  font-size: 18px;
  color: var(--wostin-white);
}

.waste-materials__point-2 {
  margin-left: 100px;
}

/*--------------------------------------------------------------
# Manage Waste
--------------------------------------------------------------*/
.manage-waste {
  position: relative;
  display: block;
  padding: 213px 0 120px;
  margin-top: -100px;
  z-index: 1;
}

.manage-waste-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #353e32;
  z-index: 1;
}

.manage-waste-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  mix-blend-mode: luminosity;
  opacity: .40;
}

.manage-waste__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}

.manage-waste__title {
  font-size: 3rem;
  color: var(--wostin-white);
  font-weight: 600;
  line-height: 70px;
}

.manage-waste__btn-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 53px;
}

.manage-waste__btn-1 {
  margin-right: 5px;
}

.manage-waste__btn-2 {
  margin-left: 5px;
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.manage-waste__btn-2:hover {
  color: var(--wostin-black);
}

.manage-waste__btn-2:after {
  background-color: var(--wostin-primary);
}

/*--------------------------------------------------------------
# Industries Two
--------------------------------------------------------------*/
.industries-two {
  padding-bottom: 89px;
}

.industries-two:before {
  height: 467px;
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  padding: 110px 0 120px;
}

.why-choose-one__left {
  position: relative;
  display: block;
  margin-right: -172px;
}

.why-choose-one__img {
  position: relative;
  display: block;
}

.why-choose-one__img img {
  width: 100%;
}

.why-choose-one__right {
  position: relative;
  display: block;
}

.why-choose-one__content {
  position: relative;
  display: block;
  background-color: var(--wostin-base);
  padding: 60px 100px 65px;
  margin-top: 50px;
}

.why-choose-one__title {
  font-size: 30px;
  color: var(--wostin-white);
  font-weight: 600;
  line-height: 0px;
}

.why-choose-one__text {
  color: #c8e8c3;
  padding-top: 37px;
  padding-bottom: 44px;
}
.why-choose-one__content p{
    color: #fff;
      padding-top: 16px;
      font-weight:400;
      /*padding-bottom: 44px;*/
}
.why-choose-one__points {
  position: relative;
  display: block;
}

.why-choose-one__points li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why-choose-one__points li + li {
  margin-top: 6px;
}

.why-choose-one__points li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why-choose-one__points li .icon span {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-primary);
  border-radius: 50%;
  color: var(--wostin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7px;
}

.why-choose-one__points li .text {
  margin-left: 10px;
}

.why-choose-one__points li .text p {
  font-size: 16px;
  color: var(--wostin-white);
}

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

.benefit-one__container {
  position: relative;
  display: block;
  z-index: 1;
}

.benefit-one__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1px;
  margin-right: -1px;
  z-index: 1;
}

.benefit-one__single {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  text-align: center;
  padding-left: 1px;
  padding-right: 1px;
  z-index: 1;
}

.benefit-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.benefit-one__img img {
  width: 100%;
}

.benefit-one__title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.benefit-one__title {
  font-size: 47px;
  color: var(--wostin-white);
  font-weight: 600;
  line-height: 63px;
}

.benefit-one__shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 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;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 0;
}

.benefit-one__single:hover .benefit-one__shape-1 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.benefit-one__shape-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  border-top: 0;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 120px 0 167px;
}

.testimonial-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 902px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  background-color: var(--wostin-extra);
  background-blend-mode: luminosity;
  opacity: .10;
}

.testimonial-two__left {
  position: relative;
  display: block;
  z-index: 5;
}

.testimonial-two__left .section-title {
  margin-bottom: 28px;
}

.testimonial-two__text-1 {
  padding-bottom: 40px;
}

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

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 43px 25px 67px;
  border: 2px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover {
  border: 2px solid var(--wostin-base);
}

.testimonial-two__feedback-box {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--wostin-bdr-color);
  padding-bottom: 25px;
}

.testimonial-two__feedback {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-two__feedback a {
  font-size: 15px;
  color: var(--wostin-primary);
}

.testimonial-two__feedback a + a {
  margin-left: 4px;
}

.testimonial-two__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.testimonial-two__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 19px;
  padding-bottom: 20px;
}

.testimonial-two__client-info-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonial-two__client-info {
  display: block;
  position: relative;
}

.testimonial-two__client-name {
  font-size: 18px;
  color: var(--wostin-base);
  font-family: var(--wostin-font);
  font-weight: 600;
  line-height: 21px;
}

.testimonial-two__quote {
  position: relative;
  display: block;
}

.testimonial-two__quote span {
  font-size: 40px;
  color: var(--wostin-bdr-color);
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__quote span {
  color: var(--wostin-primary);
}

.testimonial-two__client-img {
  position: absolute;
  border-radius: 50%;
  bottom: -30px;
  left: 60px;
  z-index: 2;
}

.testimonial-two__client-img:before {
  position: absolute;
  top: -11px;
  left: -11px;
  right: -11px;
  bottom: -11px;
  content: "";
  border: 2px solid var(--wostin-bdr-color);
  border-radius: 50%;
  background-color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__client-img:before {
  border: 2px solid var(--wostin-base);
}

.testimonial-two__client-img img {
  width: auto !important;
  border-radius: 50%;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 120px 0 167px;
  z-index: 1;
}

.project-two-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--wostin-black);
  height: 500px;
  z-index: 1;
}

.project-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: var(--wostin-black);
  background-blend-mode: color-burn;
  opacity: .25;
  z-index: 1;
}

.project-two .section-title {
  position: relative;
  display: block;
  z-index: 2;
}

.project-two .section-title__tagline {
  color: #a5b9ad;
}

.project-two .section-title__title {
  color: var(--wostin-white);
}

.project-two__single {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-two__single:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.project-two__img {
  position: relative;
  display: block;
  z-index: 1;
}

.project-two__img:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(25, 24, 37, 0.96)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(25, 24, 37, 0.96)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(25, 24, 37, 0.96) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#191825', GradientType=0);
}

.project-two__img:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--wostin-black);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
          transform: translateY(-102%);
  opacity: .50;
  z-index: 1;
}

.project-two__single:hover .project-two__img:after {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.project-two__img img {
  width: 100%;
}

.project-two__content {
  position: absolute;
  bottom: 27px;
  left: 30px;
  z-index: 3;
}

.project-two__subtitle {
  color: var(--wostin-primary);
}

.project-two__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.project-two__title a {
  color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__title a:hover {
  color: var(--wostin-primary);
}

.project-two__arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: scale(0) translateY(0);
          transform: scale(0) translateY(0);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 3;
}

.project-two__single:hover .project-two__arrow {
  -webkit-transform: scale(1) translateY(10px);
          transform: scale(1) translateY(10px);
}

.project-two__arrow a {
  height: 45px;
  width: 45px;
  background-color: var(--wostin-primary);
  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;
  color: var(--wostin-black);
  border-radius: 50%;
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__arrow a:hover {
  background-color: var(--wostin-white);
  color: var(--wostin-black);
}

.project-two__carousel {
  position: relative;
  display: block;
}

.project-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.project-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.project-two__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -57px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--wostin-black);
  opacity: 0.5;
  margin: 0px 2.5px;
  padding: 0px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active {
  background-color: var(--wostin-base);
  opacity: 1;
}

.project-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

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

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.contact-one__left {
  position: relative;
  display: block;
  margin-right: 127px;
}

.contact-one__left .section-title {
  margin-bottom: 26px;
}

.contact-one__info {
  position: relative;
  display: block;
  margin-top: 40px;
}

.contact-one__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-one__info li + li {
  margin-top: 10px;
}
.contact-one__info li:nth-child(3) .icon
{
    width:90px !important;
}
.contact-one__info li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--wostin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__info li:hover .icon {
  background-color: var(--wostin-primary);
}

.contact-one__info li .icon span {
  color: var(--wostin-primary);
  font-size: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__info li:hover .icon span {
  color: var(--wostin-black);
}

.contact-one__info li .text {
  margin-left: 30px;
}

.contact-one__info li .text p {
  line-height: 25px;
}

.contact-one__info li .text a {
  font-size: 18px;
  color: var(--wostin-black);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__info li:hover .text a {
  color: var(--wostin-base);
}

.contact-one__info li .text span {
  font-size: 18px;
  color: var(--wostin-black);
  font-weight: 500;
}

.contact-one__right {
  position: relative;
  display: block;
  margin-left: -20px;
}

.contact-one__form {
  position: relative;
  display: block;
  padding: 59px;
  border: 1px solid var(--wostin-bdr-color);
}

.contact-one__form .row {
  --bs-gutter-x: 20px;
}

.contact-one__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__form-input-box input[type="text"],
.contact-one__form-input-box input[type="email"] {
  height: 63px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--wostin-extra);
  font-size: 14px;
  color: var(--wostin-gray);
  font-weight: 500;
  padding: 0 30px 0;
}

.contact-one__form-input-box textarea {
  height: 184px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--wostin-extra);
  font-size: 14px;
  color: var(--wostin-gray);
  font-weight: 500;
  padding: 20px 40px 30px;
}

.contact-one__form-input-box.text-message-box {
  height: 184px;
}

.contact-one__btn {
  border: 0;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 395px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.news-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-two__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-two__img:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(25, 24, 37, 0.96)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(25, 24, 37, 0.96)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(25, 24, 37, 0.96) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#191825', GradientType=0);
}

.news-two__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--wostin-black-rgb), 0.3);
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.news-two__single:hover .news-two__img:after {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.news-two__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__single:hover .news-two__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-two__date {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--wostin-primary);
  text-align: center;
  padding: 15px 16px;
  z-index: 3;
}

.news-two__date p {
  font-size: 12px;
  color: var(--wostin-black);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 13px;
  letter-spacing: 0.1em;
}

.news-two__content {
  position: absolute;
  bottom: 35px;
  padding: 0 40px;
  z-index: 3;
}

.news-two__meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-two__meta li a {
  font-size: 14px;
  color: var(--wostin-white);
}

.news-two__title {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 32px;
  margin-top: 5px;
}

.news-two__title a {
  color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__title a:hover {
  color: var(--wostin-primary);
}

.news-two__list {
  position: relative;
  display: block;
}

.news-two__list-single {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-two__list-single + .news-two__list-single {
  margin-top: 30px;
}

.news-two__list-img {
  position: relative;
  display: inline-block;
  max-width: 120px;
  width: 100%;
}

.news-two__list-img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--wostin-black-rgb), 0.3);
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.news-two__list-single:hover .news-two__list-img:after {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.news-two__list-img img {
  width: 100%;
}

.news-two__list-content {
  margin-left: 30px;
  margin-top: -7px;
}

.news-two__list-meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-two__list-meta li + li {
  margin-left: 10px;
}

.news-two__list-meta li a {
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__list-meta li a:hover {
  color: var(--wostin-base);
}

.news-two__list-meta li a i {
  font-size: 14px;
  color: var(--wostin-base);
}

.news-two__list-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 30px;
  margin-top: 4px;
}

.news-two__list-title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__list-title a:hover {
  color: var(--wostin-base);
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: var(--wostin-primary);
}

.cta-one__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 0;
}

.cta-one__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
}

.cta-one__btn {
  background-color: var(--wostin-black);
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 0px 0 40px;
  z-index: 1;
}

.services-two .row {
  --bs-gutter-x: 56px;
}

.services-two__single {
  position: relative;
  display: block;
  height:100%;
  /*overflow: hidden;*/
  margin-bottom: 30px;
  z-index: 1;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

@media (max-width: 767px) {
  .services-two__single {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .services-two__single:hover {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

.services-two__single.mart-30 {
  margin-top: 30px;
}

.services-two__content-box {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 20px 20px 60px;
    height:100%;  
  z-index: 1;
}

.services-two__content-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wostin-black);
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -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;
}

.services-two__single:hover .services-two__content-bg-box {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.services-two__single:hover .services-two__content-bg-box p{
    color:#fff !important;
}

.services-two__content-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--wostin-base);
  background-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.services-two__icon {
  position: relative;
  display: block;
  z-index: 2;
}

.services-two__icon img {
  width: auto;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.services-two__single:hover .services-two__icon img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.services-two__content {
  position: relative;
  display: block;
  z-index: 2;
}

.services-two__title {
  position: relative;
  font-size: 20px;
  font-family: var(--wostin-font);
  font-weight: 600;
  line-height: 30px;
  margin-top: 22px;
  margin-bottom: 23px;
  z-index: 3;
}

.services-two__title:before {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 24px;
  height: 2px;
  content: "";
  background-color: var(--wostin-primary);
}

.services-two__title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__title a {
  color: var(--wostin-white);
}

.services-two__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__text,.services-two__single:hover p {
  color: #a5b9ad;
}

.services-two__read-more {
  position: relative;
  display: block;
  -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;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
}

.services-two__single:hover .services-two__read-more {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.services-two__read-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--wostin-primary);
  color: var(--wostin-black);
  font-size: 13px;
  padding: 17px 40px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__read-more a:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.services-two__read-more span {
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
.welcome {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.welcome__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.welcome__img-box {
  position: relative;
  display: block;
}

.welcome__img-box:before {
  position: absolute;
  top: 50%;
  left: -177px;
  border-radius: 50%;
  background-color: #f5f0e9;
  width: 356px;
  height: 356px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  animation-name: zoom-fade2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: zoom-fade2;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: zoom-fade2;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: zoom-fade2;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: zoom-fade2;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.welcome__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.welcome__img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.welcome__img:hover:before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.welcome__img img {
  width: 100%;
}

.welcome__icon {
  height: 130px;
  width: 130px;
  background-color: var(--wostin-base);
  font-size: 64px;
  color: var(--wostin-white);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: -65px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 3;
}

.welcome__img-box:hover .welcome__icon {
  background-color: var(--wostin-white);
  color: var(--wostin-black);
}

.welcome__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.welcome__right .section-title {
  margin-bottom: 26px;
}

.welcome__text-1 {
  font-size: 20px;
  color: var(--wostin-base);
  line-height: 36px;
}

.welcome__text-2 {
  padding-top: 28px;
  padding-bottom: 32px;
}

.welcome__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-reset: count;
}

.welcome__bottom li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.welcome__bottom li + li {
  margin-left: 86px;
}

.welcome__count {
  height: 58px;
  width: 58px;
  background-color: var(--wostin-primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome__bottom li:hover .welcome__count {
  background-color: var(--wostin-base);
}

.welcome__count:before {
  position: absolute;
  height: 58px;
  width: 58px;
  text-align: center;
  color: var(--wostin-black);
  font-size: 18px;
  line-height: 58px;
  border-radius: 50%;
  font-weight: 600;
  counter-increment: count;
  content: "0" counter(count);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome__bottom li:hover .welcome__count:before {
  color: var(--wostin-white);
}

.welcome__content {
  margin-left: 20px;
}

.welcome__content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 120px 0 120px;
  z-index: 1;
}

.why-choose-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--wostin-extra);
  background-blend-mode: luminosity;
  opacity: .3;
  z-index: -1;
}

.why-choose-two__left {
  position: relative;
  display: block;
  margin-right: 60px;
}

.why-choose-two__left .section-title {
  margin-bottom: 26px;
}

.why-choose-two__text {
  padding-bottom: 50px;
}

.why-choose-two__founder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 7px;
}

.why-choose-two__founder-img {
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.why-choose-two__founder-img:before {
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  content: "";
  border: 2px solid var(--wostin-base);
  border-radius: 50%;
}

.why-choose-two__founder-img img {
  width: auto;
  border-radius: 50%;
}

.why-choose-two__founder-content {
  margin-left: 35px;
  position: relative;
  top: 14px;
}

.why-choose-two__founder-name {
  font-size: 30px;
  line-height: 40px;
  font-family: var(--wostin-reey-font);
  font-weight: 400;
}

.why-choose-two__founder-title {
  color: var(--wostin-base);
  margin-left: 135px;
}

.why-choose-two__right {
  position: relative;
  display: block;
  /* margin-left: 70px; */
}

.why-choose-two__counter {
  position: relative;
  display: block;
}

.why-choose-two__counter-single {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--wostin-white);
  padding: 20px 20px 20px;
}

.why-choose-two__counter-single + .why-choose-two__counter-single {
  margin-top: 2rem;
}

.why-choose-two__counter-icon {
  height: 105px;
  width: 130px;
  background-color: var(--wostin-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.why-choose-two__counter-single:hover .why-choose-two__counter-icon {
  background-color: var(--wostin-base);
}

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

.why-choose-two__counter-single:hover .why-choose-two__counter-icon span {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  color: var(--wostin-white);
}

.why-choose-two__counter-content {
  margin-left: 40px;
  position: relative;
  top: -5px;
}
.why-choose-two__counter-content .waste_pick{
  font-size: 1.5rem;
}

.why-choose-two__counter-content h2 ,.waste-burn h3 {
  font-size: 2rem;
  color: var(--wostin-base);
  line-height: 60px !important;
  font-family: var(--wostin-font-two) !important;
}

.counter-two__plus {
  font-size: 60px;
  color: var(--wostin-base);
  line-height: 60px !important;
  font-family: var(--wostin-font-two) !important;
  position: relative;
  top: 15px;
}

.why-choose-two__counter-text {
  font-size: 18px;
  line-height: 19px;
}

/*--------------------------------------------------------------
# Manage Waste Two
--------------------------------------------------------------*/
.manage-waste-two {
  padding-top: 113px;
  margin-top: 0;
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-three__top {
  position: relative;
  display: block;
}

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

.project-three__right {
  position: relative;
  display: block;
}

.project-three__bottom {
  position: relative;
  display: block;
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-three__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--wostin-base-rgb), 0.9);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
}

.project-three__single:hover .project-three__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

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

.project-three__content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-three__single:hover .project-three__content {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.project-three__arrow a {
  height: 45px;
  width: 45px;
  background-color: var(--wostin-primary);
  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;
  color: var(--wostin-black);
  border-radius: 50%;
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-three__arrow a:hover {
  background-color: var(--wostin-white);
}

.project-three__subtitle {
  color: var(--wostin-primary);
  padding-top: 21px;
}

.project-three__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.project-three__title a {
  color: var(--wostin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-three__title a:hover {
  color: var(--wostin-primary);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

.pricing__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.pricing__tab-box .tab-buttons {
  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;
  margin-bottom: 70px;
}

.pricing__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pricing__tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 10px;
}

.pricing__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  font-size: 16px;
  color: var(--wostin-black);
  background-color: var(--wostin-extra);
  padding: 13px 60px 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}

.pricing__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--wostin-white);
  background-color: var(--wostin-base);
}

.pricing__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--wostin-base);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.pricing__tab-box .tab-buttons .tab-btn span:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  right: 0;
  content: "";
  width: 0;
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-top: 10px solid var(--wostin-extra);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pricing__tab-box .tab-buttons .tab-btn.active-btn span:after {
  border-top: 10px solid var(--wostin-base);
}

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

.pricing__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

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

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

.pricing__tab-content-box {
  position: relative;
  display: block;
}

.pricing__tab-content-single {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-right: 1px solid var(--wostin-bdr-color);
  padding-right: 59px;
  margin-bottom: 30px;
  z-index: 1;
}

.pricing__tab-content-single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: var(--wostin-bdr-color);
  z-index: -1;
}

.pricing__tab-content-single:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 1px;
  background-color: var(--wostin-bdr-color);
  z-index: -1;
}

.pricing__tab-content-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pricing__tab-content-img {
  position: relative;
  display: block;
}

.pricing__tab-content-img img {
  width: auto;
}

.pricing__tab-content {
  margin-left: 60px;
}

.pricing__tab-content-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 37px;
}

.pricing__tab-content-list {
  position: relative;
  display: block;
}

.pricing__tab-content-list li {
  font-size: 18px;
  color: var(--wostin-black);
}

.pricing__tab-content-list li + li {
  margin-top: 3px;
}

.pricing__tab-content-list li span {
  color: var(--wostin-base);
}

.pricing__tab-content-right {
  position: relative;
  display: block;
}

.pricing__tab-content-order {
  position: relative;
  display: block;
  text-align: center;
}

.pricing__tab-content-order:before {
  position: absolute;
  top: -17px;
  left: -60px;
  bottom: -23px;
  content: "";
  width: 1px;
  background-color: var(--wostin-bdr-color);
}

.pricing__tab-content-rate {
  font-size: 30px;
  color: var(--wostin-black);
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 17px;
}

.pricing__tab-content-rate span {
  font-size: 20px;
  position: relative;
  top: -7px;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-three-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--wostin-extra);
  background-blend-mode: luminosity;
  opacity: .3;
  z-index: -1;
}

.testimonial-three-bg-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1368px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}

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

.testimonial-three__left .section-title {
  margin-bottom: 30px;
}

.testimonial-three__carousel {
  position: relative;
  display: block;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
  padding-bottom: 15px;
}

.testimonial-three__single {
  position: relative;
  display: block;
}

.testimonial-three__feedback-box {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--wostin-white);
  padding-bottom: 26px;
}

.testimonial-three__feedback {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-three__feedback a {
  font-size: 15px;
  color: var(--wostin-primary);
}

.testimonial-three__feedback a + a {
  margin-left: 4px;
}

.testimonial-three__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.testimonial-three__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 38px;
  padding-top: 18px;
  padding-bottom: 31px;
}

.testimonial-three__client-info-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.testimonial-three__client-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 13px;
}

.testimonial-three__client-img {
  position: relative;
  display: block;
  border-radius: 50%;
}

.testimonial-three__client-img:before {
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  content: "";
  border: 2px solid var(--wostin-base);
  border-radius: 50%;
}

.testimonial-three__client-img img {
  width: auto !important;
  border-radius: 50%;
}

.testimonial-three__client-content {
  margin-left: 35px;
}

.testimonial-three__client-name {
  font-size: 18px;
  color: var(--wostin-base);
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 22px;
}

.testimonial-three__client-title {
  font-weight: 400;
}

.testimonial-three__quote span {
  font-size: 55px;
  color: var(--wostin-base);
}

/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 90px 0 90px;
}

.team-one--carousel {
  padding-bottom: 120px;
}

.team-one__sngle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* height: auto; */
  margin-bottom: 30px;
}

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

.team-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  /*background-color: rgba(var(--wostin-black-rgb), 0.5);*/
  width: 0%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.team-one__img img{
  height: 200px;
  object-fit: cover;
}

.team-one__sngle:hover .team-one__img:before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 100%;
}

.team-one__img > img {
  width: 100%;
  /*-webkit-transition-delay: .1s;*/
  /*        transition-delay: .1s;*/
  /*-webkit-transition-timing-function: ease-in-out;*/
  /*        transition-timing-function: ease-in-out;*/
  /*-webkit-transition-duration: .7s;*/
  /*        transition-duration: .7s;*/
  /*-webkit-transition-property: all;*/
  transition-property: all;
}

/*.team-one__sngle:hover .team-one__img > img {*/
/*  -webkit-transform: scale(1.1) rotate(2deg);*/
/*          transform: scale(1.1) rotate(2deg);*/
/*}*/

.team-one__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  /*-webkit-transform: translateX(100%);*/
  /*        transform: translateX(100%);*/
  /*-webkit-transition: all 500ms ease;*/
  transition: all 500ms ease;
  z-index: 2;
}

.team-one__sngle:hover .team-one__shape {
  /*-webkit-transform: translateX(0);*/
  /*        transform: translateX(0);*/
}

.team-one__shape > img {
  width: auto;
}

.team-one__content {
  position: relative;
  display: block;
  height: 300px;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 20px 12px 30px;
}
.team-one__content p, .team-one__content p a{
   color:#000 !important; 
   font-size: .85rem;
}
.team-one__title {
  font-size: 14px;
}

.team-one__name {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 40px;
    color: #b5322f;
    margin-bottom: 5px;
}

.team-one__social-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--wostin-bdr-color);
  padding-top: 12px;
  margin-top: 24px;
}

.team-one__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team-one__social a {
  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;
  text-align: center;
  color: var(--wostin-black);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social a:hover {
  color: var(--wostin-primary);
}

.team-one__social a + a {
  margin-left: 25px;
}

.team-one__arrow {
  position: relative;
  display: block;
}

.team-one__arrow a {
  height: 45px;
  width: 45px;
  background-color: var(--wostin-extra);
  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: 12px;
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__sngle:hover .team-one__arrow a {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
# Working Process
--------------------------------------------------------------*/
.working-process {
  position: relative;
  display: block;
  padding: 0 0 210px;
  margin-bottom:65px;
  margin-top:65px;
}

.working-process__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  counter-reset: count;
}

.working-process__single {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  padding: 0 45px;
  margin-bottom: 23px;
}

.working-process__single:before {
  position: absolute;
  top: 86px;
  right: -27px;
  background-image: url(../images/shapes/working-process-arrow.png);
  background-repeat: no-repeat;
  width: 55px;
  height: 18px;
  content: "";
}

.working-process__single:last-child:before {
  display: none;
}

.working-process__icon {
  position: relative;
  width: 182px;
  height: 182px;
  background-color: var(--wostin-black);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 65px;
  color: var(--wostin-white);
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.working-process__single:hover .working-process__icon {
  background-color: var(--wostin-base);
}

.working-process__icon span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 3;
}

.working-process__single:hover .working-process__icon span {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.working-process__count {
  height: 50px;
  width: 50px;
  background-color: var(--wostin-base);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 3;
}

.working-process__single:hover .working-process__count {
  background-color: var(--wostin-primary);
}

.working-process__count:before {
  position: absolute;
  height: 50px;
  width: 50px;
  text-align: center;
  color: var(--wostin-white);
  font-size: 16px;
  line-height: 50px;
  border-radius: 50%;
  font-weight: 600;
  counter-increment: count;
  content: "0" counter(count);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.working-process__single:hover .working-process__count:before {
  color: var(--wostin-black);
}

.working-process__shape {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: -6px;
  right: -5px;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.working-process__single:hover .working-process__shape {
  opacity: 0;
}

.working-process__shape img {
  width: auto;
  display:none;
}

.working-process__-hover-shape {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: -6px;
  right: -5px;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.working-process__-hover-shape img {
  width: auto;
}

.working-process__single:hover .working-process__-hover-shape {
  opacity: 1;
}

.working-process__bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 50%;
  z-index: 1;
}

.working-process__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: luminosity;
  background-color: var(--wostin-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: perspective(400px) scale(0);
  transform: perspective(400px) scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: .10;
}

.working-process__single:hover .working-process__bg {
  -webkit-transform: perspective(400px) scale(1);
  transform: perspective(400px) scale(1);
}

.working-process__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 44px;
  margin-top: 21px;
  margin-bottom: 9px;
}

.working-process__title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.working-process__title a:hover {
  color: var(--wostin-base);
}

/*--------------------------------------------------------------
# News Three
--------------------------------------------------------------*/
.news-three {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.news-three__left {
  position: relative;
  display: block;
  margin-right: 69px;
}

.news-three__bg-box {
  position: absolute;
  top: -120px;
  left: -375px;
  bottom: -315px;
  right: -270px;
  background-color: var(--wostin-base);
  z-index: -1;
}

.news-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: var(--wostin-base);
  background-blend-mode: color-burn;
  opacity: .15;
  z-index: -1;
}

.news-three__left .section-title__tagline {
  color: #c8e8c3;
}

.news-three__left .section-title__title {
  color: var(--wostin-white);
}

.news-three__left .section-title {
  margin-bottom: 26px;
}

.news-three__text {
  color: #c8e8c3;
}

.news-three__right {
  position: relative;
  display: block;
}

.news-three__carousel {
  position: relative;
  display: block;
}

.news-three .news-one__single {
  margin-bottom: 0;
}

.news-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.news-three__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.news-three__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.news-three__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 73px;
  left: -405px;
  margin-top: 0 !important;
}

.news-three__carousel.owl-theme .owl-nav .owl-next {
  height: 65px;
  width: 65px;
  background: var(--wostin-white);
  border-radius: 50%;
  color: var(--wostin-black);
  font-size: 20px;
  text-align: center;
  line-height: 65px;
  margin: 0;
  opacity: .3;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-three__carousel.owl-theme .owl-nav .owl-prev {
  height: 65px;
  width: 65px;
  background: var(--wostin-white);
  border-radius: 50%;
  color: var(--wostin-black);
  font-size: 20px;
  text-align: center;
  line-height: 65px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0;
  opacity: .3;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-three__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.news-three__carousel.owl-theme .owl-nav .owl-next span,
.news-three__carousel.owl-theme .owl-nav .owl-prev span {
  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;
}

.news-three__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.news-three__carousel.owl-theme .owl-nav .owl-next:hover,
.news-three__carousel.owl-theme .owl-nav .owl-prev:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  background-color: var(--wostin-primary);
  border-top: 0;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 35px 0;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-header-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(53, 62, 50, 0.8);
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}
.abt-text p{
    text-align:justify;
} 
.word-collecion h3{
    margin: 3rem 0 1rem;
    color:var(--wostin-base);
}
.page-header__inner h2 {
  font-size: 45px;
  color: var(--wostin-white);
  line-height: 60px;
  margin-bottom: 13px;
  font-weight: 600;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--wostin-primary);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:before {
  position: absolute;
  top: 16px;
  left: -21px;
  content: "";
  background-color: var(--wostin-primary);
  height: 2px;
  width: 8px;
}

.thm-breadcrumb li:first-child:before {
  display: none;
}

.thm-breadcrumb li + li {
  margin-left: 30px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--wostin-primary);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--wostin-white);
}

.thm-breadcrumb li.active {
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
# News Sidebar
--------------------------------------------------------------*/
.news-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-sidebar__left {
  position: relative;
  display: block;
}

.news-sidebar__content {
  position: relative;
  display: block;
}

.news-sidebar__single {
  position: relative;
  display: block;
}

.news-sidebar__single + .news-sidebar__single {
  margin-top: 20px;
}

.news-sidebar__img {
  position: relative;
  display: block;
}

.news-sidebar__img img {
  width: 100%;
}

.news-sidebar__date {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--wostin-primary);
  padding: 4px 20px 4px;
  z-index: 2;
}

.news-sidebar__date p {
  font-size: 12px;
  color: var(--wostin-black);
  margin: 0;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-sidebar__content-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.news-sidebar__title {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 38px;
  margin-top: 3px;
  margin-bottom: 9px;
}

.news-sidebar__title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__title a:hover {
  color: var(--wostin-base);
}

.news-sidebar__text {
  padding-bottom: 10px;
}

.news-sidebar__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-sidebar__arrow {
  font-size: 12px;
  color: var(--wostin-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__arrow:hover {
  color: var(--wostin-black);
}

.news-sidebar__read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--wostin-black);
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__read-more:hover {
  color: var(--wostin-base);
}

.news-sidebar__bottom-box {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 50px 60px 40px;
  margin-top: 20px;
}

.news-sidebar__bottom-box-icon {
  margin-bottom: 20px;
}

.news-sidebar__delivering-services {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 50px 60px 39px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.news-sidebar__delivering-services-icon {
  margin-bottom: 19px;
}

.news-sidebar__delivering-services-title {
  font-size: 50px;
  text-transform: uppercase;
  line-height: 60px;
  font-weight: 600;
}

.news-sidebar__delivering-services-title a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__delivering-services-title a:hover {
  color: var(--wostin-base);
}

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

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

.sidebar__title {
  margin: 0;
  font-size: 30px;
  margin-bottom: 3px;
  font-weight: 600;
}

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

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--wostin-base);
  color: var(--wostin-white);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 84px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--wostin-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--wostin-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--wostin-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--wostin-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--wostin-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--wostin-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--wostin-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 44px 30px 30px;
  background-color: var(--wostin-extra);
}

.sidebar__post .sidebar__title {
  margin-left: 30px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 17px 20px 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: white;
}

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

.sidebar__post-image {
  margin-right: 16px;
}

.sidebar__post-image > img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -5px;
}

.sidebar__post-content h3 {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
  font-family: var(--wostin-font);
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--wostin-gray) !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--wostin-base);
  font-size: 12px;
  padding-right: 3px;
}

.sidebar__post-content h3 a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 44px 30px 33px;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 6px;
}

.sidebar__category-list {
  margin: 0;
}

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

.sidebar__category-list li a {
  color: var(--wostin-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px;
  font-weight: 500;
}

.sidebar__category-list li a:hover {
  background-color: white;
  color: var(--wostin-black);
}

.sidebar__category-list li.active a {
  background-color: white;
  color: var(--wostin-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--wostin-gray);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
}

.sidebar__category-list li a:hover span {
  color: var(--wostin-base);
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  color: var(--wostin-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--wostin-extra);
  padding: 44px 45px 50px;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 23px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;
  color: var(--wostin-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--wostin-white);
  display: inline-block;
  padding: 7px 20px;
  margin-left: 5px;
  font-weight: 600;
}

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

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

.sidebar__comments {
  position: relative;
  display: block;
  background: var(--wostin-extra);
  padding: 41px 49px 43px;
}

.sidebar__comments .sidebar__title {
  margin-bottom: 24px;
}

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

.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}

.sidebar__comments-list li + li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--wostin-white);
  border-radius: 50%;
  font-size: 15px;
  color: var(--wostin-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;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.sidebar__comments-text-box p {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}

.sidebar__comments-text-box h5 {
  font-size: 16px;
  color: var(--wostin-black);
  line-height: 26px;
  font-weight: 500;
  font-family: var(--wostin-font);
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

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

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

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--wostin-primary);
  padding: 4px 20px 4px;
  z-index: 2;
}

.news-details__date p {
  font-size: 12px;
  color: var(--wostin-black);
  margin: 0;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 22px;
}

.news-details__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 11px;
  margin-top: 3px;
  font-family: var(--wostin-font);
}

.news-details__text-1 {
  margin: 0;
}

.news-details__text-2 {
  margin: 0;
  padding-top: 31px;
}

.news-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 53px;
  border-top: 1px solid var(--wostin-bdr-color);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--wostin-black);
  font-size: 30px;
  margin-right: 13px;
  font-weight: 600;
  font-family: var(--wostin-font-two);
  position: relative;
  top: 5px;
}

.news-details__tags a {
  position: relative;
  color: var(--wostin-black);
  font-size: 14px;
  background-color: var(--wostin-extra);
  display: inline-block;
  padding: 7px 20px;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.news-details__tags a + a {
  margin-left: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.news-details__social-list a {
  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;
  text-align: center;
  color: var(--wostin-black);
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--wostin-base);
}

.news-details__social-list a + a {
  margin-left: 30px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 51px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 24px;
  color: var(--wostin-black);
  font-weight: 600;
  background-color: var(--wostin-extra);
  line-height: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 52px;
  padding-bottom: 56px;
}

.news-details__pagenation li + li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--wostin-black);
  font-size: 40px;
  margin-bottom: 54px;
  font-weight: 600;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--wostin-bdr-color);
  padding-bottom: 60px;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 30px;
  color: var(--wostin-black);
  margin-bottom: 25px;
  font-weight: 600;
}

.comment-one__btn {
  font-size: 14px;
  padding: 7px 20px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--wostin-primary);
  color: var(--wostin-black);
}

.comment-one__btn::before {
  background-color: var(--wostin-base);
  -webkit-transform: translate(-50%, -50%) rotate(50deg);
          transform: translate(-50%, -50%) rotate(50deg);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

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

.comment-form .comment-form__title {
  margin-top: -8px;
}

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

.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: 63px;
  width: 100%;
  border: none;
  background-color: var(--wostin-extra);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: var(--wostin-gray);
  display: block;
  font-weight: 500;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--wostin-gray);
  font-weight: 500;
  height: 170px;
  width: 100%;
  background-color: var(--wostin-extra);
  padding: 18px 30px 30px;
  border: none;
  border-radius: 0px;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0;
}

.comment-form__btn {
  border: none;
}

.comment-form__input-box.text-message-box {
  height: 170px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

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

.service-details__category {
  position: relative;
  display: block;
  background-color: var(--wostin-extra);
  padding: 42px 30px 33px;
}

.service-details__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  padding-left: 20px;
  margin-bottom: 5px;
}

.service-details__cagegory-list {
  margin: 0;
}

.service-details__cagegory-list li + li {
  margin-top: 3px;
}

.service-details__cagegory-list li a {
  color: var(--wostin-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px;
  font-weight: 500;
}

.service-details__cagegory-list li a:hover {
  background-color: white;
  color: var(--wostin-black);
}

.service-details__cagegory-list li.active a {
  background-color: white;
  color: var(--wostin-black);
}

.service-details__cagegory-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--wostin-gray);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
}

.service-details__cagegory-list li a:hover span {
  color: var(--wostin-base);
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.service-details__cagegory-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  color: var(--wostin-base);
}

.service-details__need-help {
  position: relative;
  display: block;
  padding: 50px 25px ;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--wostin-black);
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--wostin-black);
  mix-blend-mode: luminosity;
  opacity: 0.10;
  z-index: -1;
}

.service-details__need-help-icon {
  height: 85px;
  width: 85px;
  background-color: var(--wostin-primary);
  color: var(--wostin-black);
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0 auto 19px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.service-details__need-help-title {
  font-size: 24px;
  color: var(--wostin-white);
  line-height: 40px;
  font-weight: 600;
}

.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 37px;
}

.service-details__need-help-contact p {
  font-size: 14px;
  color: var(--wostin-white);
  margin: 0;
  line-height: 20px;
}

.service-details__need-help-contact a {
  font-size: 28px;
  color: var(--wostin-white);
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: var(--wostin-primary);
}

.service-details__banner {
  position: relative;
  display: block;
  z-index: 1;
}

.service-details__banner-content {
  position: relative;
  display: block;
  background-color: var(--wostin-base);
  padding: 50px 25px ;
  overflow: hidden;
  z-index: 1;
}

.service-details__banner-title {
  font-size: 24px;
  color: var(--wostin-white);
  font-weight: 600;
  line-height: 40px;
}

.service-details__banner-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-details__banner-shape-1 img {
  width: auto;
}

.services-details__banner-car {
  position: absolute;
  bottom: 13px;
  left: -100px;
  z-index: 2;
}

.services-details__banner-car img {
  width: auto;
}

.service-details__download {
  position: relative;
  display: block;
  margin-top: 30px;
}

.service-details__download-btn {
  width: 100%;
  text-align: center;
}

.service-details__right {
  position: relative;
  display: block;
}

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

.service-details__img img {
  width: 100%;
}

.service-details__content {
  position: relative;
  display: block;
  margin-top: 24px;
}

.service-details__content-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 23px;
}

.service-details__text-1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.service-details__text-2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: var(--wostin-base);
  padding-top: 30px;
  padding-bottom: 35px;
}

.service-details__text-3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.service-details__points {
  position: relative;
  display: block;
  margin-top: 49px;
  margin-bottom: 30px;
}

.service-details__points-single {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--wostin-extra);
  padding: 40px 40px 30px;
  margin-bottom: 30px;
}

.service-details__points-icon {
  position: relative;
  display: block;
}

.service-details__points-icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wostin-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1) rotateY(0deg);
          transform: scale(1) rotateY(0deg);
}

.service-details__points-single:hover .service-details__points-icon span {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.service-details__points-content {
  margin-left: 20px;
  margin-top: -7px;
}

.service-details__points-content h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 30px;
  margin-bottom: 11px;
}

.service-details__benefits {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.service-details__benefits-img {
  position: relative;
  display: block;
}

.service-details__benefits-img img {
  width: 100%;
}

.service-details__benefits-right {
  position: relative;
  display: block;
  margin-top: -5px;
}

.service-details__benefits-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.service-betails__benefits-text-1 {
  font-size: 20px;
  color: var(--wostin-base);
  font-weight: 500;
  line-height: 33px;
  margin: 0;
  padding-top: 38px;
  padding-bottom: 38px;
}

.service-details__benefits-points {
  position: relative;
  display: block;
}

.service-details__benefits-points li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-details__benefits-points li + li {
  margin-top: 3px;
}

.service-details__benefits-points li .icon {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-primary);
  color: var(--wostin-white);
  font-size: 10px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.service-details__benefits-points li .text {
  margin-left: 15px;
}

.service-details__faq {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--wostin-white);
}

.faq-one-accrodion .accrodion.active {
  background-color: var(--wostin-extra);
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 22px 40px 22px;
  padding-right: 27px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  border: 1px solid var(--wostin-bdr-color);
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--wostin-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--wostin-font);
}

.faq-one-accrodion .accrodion + .accrodion {
  margin-top: 12px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  border: 1px solid transparent;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--wostin-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--wostin-base);
  position: absolute;
  top: 50%;
  right: 0;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--wostin-base);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 0px 40px 30px;
  border: 1px solid var(--wostin-bdr-color);
  border-top: 0;
  margin-top: -1px;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
  border: 1px solid transparent;
}

.faq-one-accrodion .accrodion-content p {
  font-size: 16px;
  margin: 0;
}

/*--------------------------------------------------------------
# Industries Page
--------------------------------------------------------------*/
.industries-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.industries-page--carousel {
  padding-bottom: 120px;
}

/*--------------------------------------------------------------
# Industy Page Header
--------------------------------------------------------------*/
.industy-page-header {
  position: relative;
  display: block;
  padding: 0 0 108px;
}

.industy-page-header-container {
  position: relative;
  display: block;
}

.industy-page-header__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  background-color: var(--wostin-base);
}

.industy-page-header__shape {
  position: absolute;
  bottom: 0;
  right: -30px;
}

.industy-page-header__shape img {
  width: auto;
}

.industy-page-header__icon {
  position: absolute;
  bottom: -60px;
  right: -64px;
  height: 123px;
  width: 123px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  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;
}

.industy-page-header__icon span {
  position: relative;
  display: block;
  font-size: 63px;
  color: var(--wostin-base);
}

.industy-page-header__content-box {
  position: relative;
  display: block;
  max-width: 450px;
  width: 100%;
  margin-left: 370px;
  padding-top: 115px;
  padding-bottom: 114px;
  background-color: var(--wostin-base);
}

.industy-page-header__title {
  font-size: 60px;
  color: var(--wostin-white);
  font-weight: 600;
  line-height: 70px;
  margin-top: 6px;
  margin-bottom: 30px;
}

.industy-page-header__text {
  color: #c8e8c3;
}

.industy-page-header__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
}

.industy-page-header__img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 525px;
}

/*--------------------------------------------------------------
# Industy Details
--------------------------------------------------------------*/
.industy-details {
  position: relative;
  display: block;
}

.industy-details__top {
  position: relative;
  display: block;
}

.industy-details__top-inner {
  position: relative;
  display: block;
}

.industy-details__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  text-align: center;
}

.industy-details__top-text-1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 30px;
  padding-bottom: 33px;
}

.industy-details__top-text-2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.industy-details__the-best {
  position: relative;
  display: block;
  padding: 109px 0 120px;
}

.industy-details__the-best-content {
  position: relative;
  display: block;
  margin-right: 125px;
  margin-top: -19px;
}

.industy-details__the-best-content .industy-details__title {
  text-align: left;
  line-height: 72px;
}

.industy-details__the-best-text {
  padding-top: 29px;
  padding-bottom: 33px;
}

.industy-details__the-best-points {
  position: relative;
  display: block;
}

.industy-details__the-best-points li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.industy-details__the-best-points li + li {
  margin-top: 6px;
}

.industy-details__the-best-points li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.industy-details__the-best-points li .icon span {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-primary);
  border-radius: 50%;
  color: var(--wostin-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7px;
}

.industy-details__the-best-points li .text {
  margin-left: 15px;
}

.industy-details__the-best-points li .text p {
  font-size: 16px;
  color: var(--wostin-black);
}

.industy-details__the-best-img {
  position: relative;
  display: block;
}

.industy-details__the-best-img img {
  width: 100%;
}

.industy-details__commitment {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.industy-details__commitment-img {
  position: relative;
  display: block;
}

.industy-details__commitment-img img {
  width: 100%;
}

.industy-details__commitment-content {
  position: relative;
  display: block;
  margin-top: -12px;
  margin-left: 100px;
}

.industy-details__commitment-content .industy-details__title {
  text-align: left;
  line-height: 72px;
}

.industy-details__commitment-text-1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wostin-base);
  line-height: 24px;
  padding-top: 27px;
  padding-bottom: 28px;
}

/*--------------------------------------------------------------
# Wostin For Job
--------------------------------------------------------------*/
.wostin-for-job {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background-color: var(--wostin-extra);
  z-index: 1;
}

.wostin-for-job:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--wostin-white);
  height: 323px;
  z-index: -1;
}

.wostin-for-job-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--wostin-extra);
  height: 373px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  opacity: .3;
  z-index: -1;
}

.wostin-for-job__top {
  position: relative;
  display: block;
}

.wostin-for-bob__left {
  position: relative;
  display: block;
}

.wostin-for-bob__content {
  position: relative;
  display: block;
}

.wostin-for-job__bottom {
  position: relative;
  display: block;
}

.wostin-for-job__single {
  position: relative;
  display: block;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 50px 50px 42px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.wostin-for-job__single:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wostin-for-job__single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  height: 4px;
  background-color: var(--wostin-primary);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: 3;
}

.wostin-for-job__single:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.wostin-for-job__top-icon {
  position: relative;
  display: block;
}

.wostin-for-job__top-icon span {
  font-size: 66px;
  color: var(--wostin-base);
  position: relative;
  display: inline-block;
}

.wostin-for-job__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin-top: 56px;
}

.wostin-for-job__hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 42px 50px 0;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -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;
}

.wostin-for-job__single:hover .wostin-for-job__hover {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.wostin-for-job__hover-bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--wostin-black);
  z-index: -1;
}

.wostin-for-job__hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--wostin-black);
  background-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.wostin-for-job__hover-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: var(--wostin-white);
  margin-bottom: 33px;
}

.wostin-for-job__hover-text {
  color: #a5b9ad;
}

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

.contact-two .container {
  max-width: 770px;
  width: 100%;
}

.contact-two .contact-one__form {
  padding: 0;
  border: 0;
}

.contact-two .contact-one__form-input-box.text-message-box {
  height: 188px;
}

.contact-two .contact-one__btn {
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Projects Page
--------------------------------------------------------------*/
.projects-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.projects-page--carousel {
  padding-bottom: 120px;
}

.projects-page .project-one__content {
  padding: 19px 30px 27px;
  margin-left: 30px;
  margin-right: 30px;
}

.projects-page .project-one__title {
  font-size: 24px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 111px 0 0px;
}

.project-details__top {
  position: relative;
  display: block;
}

.project-details__title-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.project-details__title-left {
  position: relative;
  display: block;
}

.project-details__title-left h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
  margin-top: 10px;
}

.project-details__social-box {
  position: relative;
  display: block;
}

.project-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.project-details__social a {
  position: relative;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  color: var(--wostin-black);
  background-color: var(--wostin-extra);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.project-details__social a:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.project-details__social a + a {
  margin-left: 10px;
}

.project-details__img-box {
  position: relative;
  display: block;
  padding-top: 33px;
  padding-bottom: 114px;
}

.project-details__img-box img {
  width: 100%;
}

.project-details__details-box {
  position: absolute;
  bottom: 51px;
  left: 40px;
  right: 40px;
}

.project-details__details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--wostin-white);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 31px 60px 37px;
}

.project-details__details li {
  position: relative;
  display: block;
}

.project-details__details li:before {
  position: absolute;
  top: 9px;
  bottom: 3px;
  right: -67px;
  content: "";
  width: 1px;
  background-color: var(--wostin-bdr-color);
}

.project-details__details li:last-child:before {
  display: none;
}

.project-details__details li + li {
  margin-left: 135px;
}

.project-details__details-content {
  position: relative;
  display: block;
}

.project-details__details-title {
  font-weight: 400;
  line-height: 26px;
}

.project-details__details-name {
  font-weight: 600;
  color: var(--wostin-black);
  line-height: 26px;
}

.project-details__content {
  position: relative;
  display: block;
}

.project-details__content-left {
  position: relative;
  display: block;
}

.project-details__content-text-1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.project-details__content-text-2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--wostin-base);
  padding-top: 33px;
  padding-bottom: 33px;
}

.project-details__content-text-3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.project-details__content-right {
  position: relative;
  display: block;
}

.project-details__content-text-4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 37px;
}

.project-details__content-points {
  position: relative;
  display: block;
}

.project-details__content-points li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.project-details__content-points li + li {
  margin-top: 9px;
}

.project-details__content-points li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.project-details__content-points li .icon span {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-base);
  border-radius: 50%;
  color: var(--wostin-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7px;
}

.project-details__content-points li .text {
  margin-left: 10px;
}

.project-details__content-points li .text p {
  font-size: 18px;
  color: var(--wostin-black);
}

.projectc-details__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid var(--wostin-bdr-color);
  border-bottom: 1px solid var(--wostin-bdr-color);
  padding: 30px 0;
  margin-top: 113px;
}

.projectc-details__pagination {
  position: relative;
  display: block;
}

.projectc-details__pagination li {
  display: inline-block;
}

.projectc-details__pagination li.next {
  float: left;
  position: relative;
}

.projectc-details__pagination li a {
  font-size: 30px;
  color: var(--wostin-black);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--wostin-font-two);
}

.projectc-details__pagination li a:hover {
  color: var(--wostin-base);
}

.projectc-details__pagination li.next i {
  position: relative;
  height: 45px;
  width: 45px;
  background-color: var(--wostin-extra);
  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%;
  color: var(--wostin-black);
  font-size: 12px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
  z-index: 1;
}

.projectc-details__pagination li.previous {
  position: relative;
  float: right;
}

.projectc-details__pagination li.previous i {
  position: relative;
  height: 45px;
  width: 45px;
  background-color: var(--wostin-extra);
  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%;
  color: var(--wostin-black);
  font-size: 12px;
  margin-left: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.projectc-details__pagination li a:hover i {
  color: var(--wostin-white);
  background-color: var(--wostin-base);
}

/*--------------------------------------------------------------
# Similar Projects
--------------------------------------------------------------*/
.similar-projects {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.similar-projects .project-one__content {
  padding: 19px 30px 27px;
  margin-left: 30px;
  margin-right: 30px;
}

.similar-projects .project-one__title {
  font-size: 24px;
}

/*--------------------------------------------------------------
# Pricing Page
--------------------------------------------------------------*/
.pricing-page {
  position: relative;
  display: block;
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Request A Pickup Top
--------------------------------------------------------------*/
.request-a-pickup-top {
  position: relative;
  display: block;
  padding: 112px 0 49px;
}

.request-a-pickup-top__inner {
  position: relative;
  display: block;
}

.request-a-pickup-top__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 32px;
}

.request-a-pickup-top__text {
  font-size: 18px;
  line-height: 24px;
}

.request-a-pickup-top__text a {
  color: var(--wostin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.request-a-pickup-top__text a:hover {
  color: var(--wostin-base);
}
.request-a-pickup-top__inner h4{
  font-family: var(--wostin-font);
}
/*--------------------------------------------------------------
# Request A Pickup
--------------------------------------------------------------*/
.request-a-pickup {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.request-a-pickup__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.request-a-pickup__tab-box .tab-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.request-a-pickup__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.request-a-pickup__tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 10px;
}

.request-a-pickup__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  font-size: 16px;
  color: var(--wostin-black);
  background-color: var(--wostin-extra);
  padding: 13px 60px 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}

.request-a-pickup__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--wostin-white);
  background-color: var(--wostin-base);
}

.request-a-pickup__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--wostin-base);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.request-a-pickup__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.request-a-pickup__tab-box .tabs-content {
  position: relative;
  display: block;
}

.request-a-pickup__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.request-a-pickup__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.request-a-pickup__tab-content {
  position: relative;
  display: block;
  border: 1px solid var(--wostin-bdr-color);
  padding: 50px;
}

.request-a-pickup__tab-content-size-box {
  position: relative;
  display: block;
}
.request-a-pickup__tab-content-size-box h3{
  color: var(--wostin-base);
}
.request-a-pickup__tab-content-size-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.request-a-pickup__tab-content-size-list li + li {
  margin-left: 30px;
}

.request-a-pickup__tab-content-size-list li input[type="checkbox"] {
  display: none;
}

.request-a-pickup__tab-content-size-list li label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--wostin-black);
  font-weight: 500;
  cursor: pointer;
  padding-left: 35px;
}

.request-a-pickup__tab-content-size-list li input[type="checkbox"] + label span {
  height: 24px;
  width: 24px;
  border: 1px solid var(--wostin-bdr-color);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
}

.request-a-pickup__tab-content-size-list li label span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 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;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--wostin-base);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.request-a-pickup__tab-content-size-list li input[type="checkbox"]:checked + label span:before {
  opacity: 1;
  color: var(--wostin-white);
}

.request-a-pickup__tab-content-size-list li input[type="checkbox"]:checked + label span {
  border: 1px solid var(--wostin-base);
  background-color: var(--wostin-base);
}

.request-a-pickup__tab-content-img {
  position: relative;
  display: block;
  max-width: 410px;
  width: 100%;
  margin-top: 27px;
}

.request-a-pickup__tab-content-img img {
  width: 100%;
}

.request-a-pickup__tab-content-form-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.request-a-pickup__tab-content-form-left {
  position: relative;
  display: block;
}

.request-a-pickup__tab-content-form {
  position: relative;
  display: block;
}

.request-a-pickup__tab-content-input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.request-a-pickup__tab-content-input-box input[type="text"],
.request-a-pickup__tab-content-input-box input[type="email"],
.request-a-pickup__tab-content-input-box input[type="url"] {
  height: 63px;
  width: 100%;
  border: none;
  background-color: var(--wostin-extra);
  font-size: 14px;
  font-weight: 500;
  color: var(--wostin-gray);
  padding: 0 30px;
  outline: none;
}

.request-a-pickup__tab-content-form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
}

.request-a-pickup__tab-content-form .bootstrap-select > .dropdown-toggle::after {
  display: none;
}

.request-a-pickup__tab-content-form .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 63px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--wostin-extra) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--wostin-gray) !important;
  font-size: 14px;
  line-height: 63px;
  font-weight: 500;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.request-a-pickup__tab-content-form .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--wostin-gray);
}

.request-a-pickup__tab-content-text-box {
  line-height: 26px;
  margin-top: -7px;
}

.request-a-pickup__tab-content-extra {
  position: relative;
  display: block;
  margin-top: 24px;
  margin-bottom: 27px;
}

.request-a-pickup__tab-content-extra-list {
  position: relative;
  display: block;
}

.request-a-pickup__tab-content-extra-list li + li {
  margin-top: 13px;
}

.request-a-pickup__tab-content-extra-list li input[type="checkbox"] {
  display: none;
}

.request-a-pickup__tab-content-extra-list li label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--wostin-black);
  font-weight: 500;
  cursor: pointer;
  padding-left: 35px;
}

.request-a-pickup__tab-content-extra-list li input[type="checkbox"] + label span {
  height: 24px;
  width: 24px;
  border: 1px solid var(--wostin-bdr-color);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
}

.request-a-pickup__tab-content-extra-list li label span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 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;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--wostin-base);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.request-a-pickup__tab-content-extra-list li input[type="checkbox"]:checked + label span:before {
  opacity: 1;
  color: var(--wostin-white);
}

.request-a-pickup__tab-content-extra-list li input[type="checkbox"]:checked + label span {
  border: 1px solid var(--wostin-base);
  background-color: var(--wostin-base);
}

.request-a-pickup__tab-content-input-box textarea {
  height: 164px;
  width: 100%;
  border: none;
  background-color: var(--wostin-extra);
  font-size: 14px;
  font-weight: 500;
  color: var(--wostin-gray);
  padding: 25px 30px 30px;
  outline: none;
}

.request-a-pickup__tab-content-input-box.request-a-pickup__tab-content-message-box {
  height: 164px;
}

.request-a-pickup__tab-content-btn {
  border: none;
}

.request-a-pickup__tab-content-form-right {
  position: relative;
  display: block;
}

.request-a-pickup__tab-content-form-two .request-a-pickup__tab-content-input-box textarea {
  height: 249px;
}

.request-a-pickup__tab-content-input-box.request-a-pickup__tab-content-brief-box {
  height: 249px;
}

/* Date Picker Css */
#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--wostin-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--wostin-base) none repeat scroll 0 0;
  border: 2px solid var(--wostin-base);
  border-radius: 0;
  color: var(--wostin-white);
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: var(--wostin-black) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--wostin-black) !important;
  background: var(--wostin-black) !important;
  color: var(--wostin-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--wostin-white);
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--wostin-black);
  color: var(--wostin-white);
  border-color: var(--wostin-black);
}

#ui-datepicker-div.ui-widget {
  font-family: var(--wostin-font);
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
}

.team-details__top {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.team-details__top-left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.team-details__top-img {
  position: relative;
  display: block;
}

.team-details__top-img img {
  width: 100%;
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.team-details__top-content {
  position: relative;
  display: block;
  margin-top: -9px;
}

.team-details__top-title {
  padding-bottom: 4px;
}

.team-details__top-name {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 28px;
  margin-bottom: 28px;
}

.team-details__social a {
  position: relative;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  background-color: var(--wostin-extra);
  color: var(--wostin-black);
  font-size: 16px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__social a:hover {
  background-color: var(--wostin-base);
  color: var(--wostin-white);
}

.team-details__social a + a {
  margin-left: 10px;
}

.team-details__top-text-1 {
  font-size: 30px;
  color: var(--wostin-base);
  font-weight: 600;
  line-height: 46px;
}

.team-details__top-text-2 {
  font-size: 18px;
  line-height: 24px;
  padding-top: 31px;
  padding-bottom: 33px;
}

.team-details__top-text-3 {
  font-size: 18px;
  line-height: 24px;
}

.team-details__bottom {
  position: relative;
  display: block;
  border-top: 1px solid var(--wostin-bdr-color);
  padding-top: 120px;
  padding-bottom: 120px;
}

.team-details__bottom-left {
  position: relative;
  display: block;
}

.team-details__bottom-left .section-title {
  margin-bottom: 0;
}

.team-details__bottom-right {
  position: relative;
  display: block;
  margin-top: -8px;
  margin-left: 70px;
}

.team-details__bottom-right .we-dedicated__progress {
  margin-top: 0;
}

.team-details__bottom-right .we-dedicated__progress .bar {
  margin-bottom: 22px;
}

.team-details__bottom-right .we-dedicated__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Brand Four
--------------------------------------------------------------*/
.brand-four {
  border-top: 0;
  background-color: var(--wostin-base);
  padding: 100px 0 99px;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 120px 0 80px;
}

.testimonials-page--carousel {
  padding-bottom: 120px;
}

.testimonials-page .testimonial-two__single {
  margin-bottom: 80px;
}

.testimonials-page--carousel .testimonial-two__single {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-page__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(var(--wostin-base-rgb), 0.9);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  z-index: 1;
}

.gallery-page__single:hover .gallery-page__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.gallery-page__img img {
  width: 100%;
  -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;
}

.gallery-page__single:hover .gallery-page__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

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

.gallery-page__icon a {
  height: 80px;
  width: 80px;
  background-color: var(--wostin-primary);
  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(--wostin-black);
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 2;
}

.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.gallery-page__icon a:hover {
  background-color: var(--wostin-white);
}

/*--------------------------------------------------------------
# FAQ Search
--------------------------------------------------------------*/
.faq-search {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.faq-search__inner {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--wostin-extra);
  padding: 109px 15px 120px;
}

.faq-search__title-box {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.faq-search__sub-title {
  color: var(--wostin-base);
}

.faq-search__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  margin-top: 4px;
}

.faq-search__search-form {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}

.faq-search__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--wostin-white);
  color: var(--wostin-gray);
  font-size: 18px;
  font-weight: 400;
  padding-left: 50px;
  height: 84px;
  width: 100%;
  padding-right: 80px;
}

.faq-search__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--wostin-black);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.faq-icon-box {
  position: relative;
  display: block;
  margin-top: 60px;
  margin-bottom: 19px;
}

.faq-icon__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq-icon__list li {
  position: relative;
  display: block;
  max-width: 162px;
  width: 100%;
  text-align: center;
  background-color: white;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 27px 0 22px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.faq-icon__list li:hover {
  background-color: var(--wostin-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq-icon__list li + li {
  margin-left: 40px;
}

.faq-icon__list li .icon {
  position: relative;
  display: block;
}

.faq-icon__list li .icon span {
  font-size: 69px;
  color: var(--wostin-base);
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.faq-icon__list li:hover .icon span {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  color: var(--wostin-black);
}

.faq-icon__list li h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--wostin-font);
  line-height: 28px;
  margin-top: 11px;
}

.faq-waste-pickup {
  position: relative;
  display: block;
}

.faq-waste-pickup__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 49px;
}

.faq-waste-pickup__left {
  position: relative;
  display: block;
}

.faq-waste-pickup__left .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 22px;
}

.faq-waste-pickup__banner {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-waste-pickup__banner-content {
  position: relative;
  display: block;
  background-color: var(--wostin-base);
  padding: 64px 70px 220px;
  overflow: hidden;
  z-index: 1;
}

.faq-waste-pickup__banner-title {
  font-size: 50px;
  color: var(--wostin-white);
  font-weight: 600;
  line-height: 50px;
}

.faq-waste-pickup__banner-shape-1 {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: -1;
}

.faq-waste-pickup__banner-shape-1 img {
  width: auto;
}

.faq-waste-pickup__banner-car {
  position: absolute;
  bottom: 13px;
  right: -97px;
  z-index: 2;
}

.faq-waste-pickup__banner-car img {
  width: auto;
}

/*--------------------------------------------------------------
# Brand Five
--------------------------------------------------------------*/
.brand-five {
  border-top: 0;
  background-color: var(--wostin-primary);
  padding: 98px 0 99px;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 71px 0 120px;
}

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

.error-page-shape {
  position: absolute;
  top: 128px;
  left: 52.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.error-page-shape img {
  width: auto;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 600;
  margin-bottom: 96px;
  font-family: var(--wostin-font);
}

.error-page__tagline {
  font-size: 40px;
  line-height: 49px;
  margin-bottom: 19px;
  font-weight: 400;
  font-family: var(--wostin-font);
  color: var(--wostin-base);
}

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

.error-page__form {
  position: relative;
  display: block;
  margin: 36px 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: 63px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--wostin-extra);
  font-size: 16px;
  color: var(--wostin-gray);
  font-weight: 400;
  padding-left: 50px;
  padding-right: 75px;
}

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

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Brand Six
--------------------------------------------------------------*/
.brand-six {
  border-top: 0;
  border-bottom: 1px solid var(--wostin-bdr-color);
}

/*--------------------------------------------------------------
# Benefit Two
--------------------------------------------------------------*/
.benefit-two {
  padding-bottom: 2px;
}

/*--------------------------------------------------------------
# Always Working
--------------------------------------------------------------*/
.always-working {
  position: relative;
  display: block;
  padding: 143px 0 143px;
}

.always-working__left {
  position: relative;
  display: block;
  margin-right: 100px;
}

.always-working__left .section-title {
  margin-bottom: 27px;
}

.always-working__points {
  position: relative;
  display: block;
  margin-top: 24px;
  margin-bottom: 36px;
}

.always-working__points li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.always-working__points li + li {
  margin-top: 3px;
}

.always-working__points li .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.always-working__points li .icon span {
  height: 16px;
  width: 16px;
  background-color: var(--wostin-base);
  border-radius: 50%;
  color: var(--wostin-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7px;
}

.always-working__points li .text {
  margin-left: 15px;
}

.always-working__points li .text p {
  font-size: 18px;
  color: var(--wostin-black);
}

.always-working__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-reset: count;
}

.always-working__bottom li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.always-working__bottom li + li {
  margin-left: 56px;
}

.always-working__count {
  height: 58px;
  width: 58px;
  background-color: var(--wostin-primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.always-working__bottom li:hover .always-working__count {
  background-color: var(--wostin-base);
}

.always-working__count:before {
  position: absolute;
  height: 58px;
  width: 58px;
  text-align: center;
  color: var(--wostin-black);
  font-size: 18px;
  line-height: 58px;
  border-radius: 50%;
  font-weight: 600;
  counter-increment: count;
  content: "0" counter(count);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.always-working__bottom li:hover .always-working__count:before {
  color: var(--wostin-white);
}

.always-working__content {
  margin-left: 20px;
}

.always-working__content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.always-working__right {
  position: relative;
  display: block;
}

.always-working__img {
  position: relative;
  display: block;
  z-index: 1;
}

.always-working__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--wostin-primary);
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  z-index: -1;
}

.always-working__img img {
  width: 100%;
}

/*--------------------------------------------------------------
# Custom Animated Css
--------------------------------------------------------------*/
@-webkit-keyframes zoom-fade2 {
  0% {
    -webkit-transform: scale(0.9) translateY(-50%);
    transform: scale(0.9) translateY(-50%);
  }
  50% {
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
  }
  100% {
    -webkit-transform: scale(0.9) translateY(-50%);
    transform: scale(0.9) translateY(-50%);
  }
}
@keyframes zoom-fade2 {
  0% {
    -webkit-transform: scale(0.9) translateY(-50%);
    transform: scale(0.9) translateY(-50%);
  }
  50% {
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
  }
  100% {
    -webkit-transform: scale(0.9) translateY(-50%);
    transform: scale(0.9) translateY(-50%);
  }
}

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

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9) translateY(-50%);
    transform: scale(0.9) translateY(-50%);
  }
  50% {
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
  }
  100% {
    -webkit-transform: scale(0.9) translateY(-50%);
    transform: scale(0.9) translateY(-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;
}

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

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

/* MegaMenu */
.main-menu .main-menu__list .megamenu {
  position: static;
}

.main-menu .main-menu__list .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 1200px) {
  .main-menu:not(.stricky-header),
  .main-menu__menu-bottom,
  .main-menu__menu-box,
  .main-menu-three__main-menu,
  .main-menu-three__wrapper,
  .main-menu-two__main-menu-box,
  .main-menu-two__main-menu-inner,
  .main-menu__main-menu-box {
    position: static;
  }
}

/* service tabs */
@media (max-width: 1199px) {
  .service-tabs [class*=col-] {
    width: 100%;
  }
}

.service-tabs__inner {
  text-align: left;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1199px) {
  .service-tabs__inner {
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.service-tabs__links {
  max-width: 310px;
}

@media (max-width: 1199px) {
  .service-tabs__links {
    height: auto !important;
    visibility: visible !important;
    -webkit-transform: scaleY(1) !important;
            transform: scaleY(1) !important;
    opacity: 1 !important;
  }
}

.service-tabs__links li span,
.service-tabs__links li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--wostin-gray);
  display: block;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  cursor: pointer;
}

.service-tabs__links li span::after,
.service-tabs__links li a::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  font-size: 10px;
  color: var(--wostin-base);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-tabs__links li span:hover,
.service-tabs__links li a:hover {
  background-color: var(--wostin-extra);
  color: var(--wostin-black);
}

.service-tabs__links li span:hover::after,
.service-tabs__links li a:hover::after {
  opacity: 1;
}

.service-tabs__links li.active-btn span,
.service-tabs__links li.active span {
  background-color: var(--wostin-extra);
  color: var(--wostin-black);
}

.service-tabs__links li.active-btn span::after,
.service-tabs__links li.active span::after {
  opacity: 1;
}

.service-tabs__title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--wostin-font-two);
  color: var(--wostin-black);
  font-size: 2rem;
  line-height: 1.17em;
  margin-bottom: 45px;
}

.service-tabs__title a {
  color: inherit;
}

.service-tabs__btn {
  font-size: 14px;
  color: var(--wostin-black);
  font-weight: bold;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-tabs__btn i {
  font-size: 10px;
  color: var(--wostin-base);
  margin-right: 7px;
}

.service-tabs__btn:hover {
  color: var(--wostin-base);
}

.service-tabs__btn:hover i {
  color: var(--wostin-black);
}

.service-tabs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid var(--wostin-bdr-color);
  padding-left: 60px;
}

@media (max-width: 1199px) {
  .service-tabs__content {
    display: block;
    border: none;
    padding: 0;
  }
}

.service-tabs__text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 151px;
}

.service-tabs__image {
  padding-left: 50px;
}

.service-tabs__image img {
  max-width: 100%;
}

.service-tabs .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.service-tabs .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@media (max-width: 1199px) {
  .mobile-nav__container .service-tabs [class*=col-] {
    width: 100%;
  }
}

.mobile-nav__container .service-tabs__inner {
  background-color: transparent;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mobile-nav__container .service-tabs__links li span,
.mobile-nav__container .service-tabs__links li a {
  color: #fff;
  font-size: 14px;
  font-family: var(--wostin-font);
  font-weight: 500;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-nav__container .service-tabs__links li.active-btn span,
.mobile-nav__container .service-tabs__links li.active-btn a {
  color: var(--wostin-black);
}

.mobile-nav__container .service-tabs__title {
  margin-bottom: 10px;
}

.mobile-nav__container .service-tabs__title a {
  font-family: var(--wostin-font-two) !important;
  font-size: 30px !important;
  height: auto !important;
  display: block !important;
}

.mobile-nav__container .service-tabs__text {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
}

.mobile-nav__container .service-tabs__btn {
  display: block !important;
  height: auto !important;
}

.mobile-nav__container .service-tabs__image {
  padding-left: 0;
}
/*# sourceMappingURL=wostin.css.map */



/*****New Css*****/
.mobile-nav__contact li a{
    font-size: 12px;
}
.mobile-nav__container .main-menu__list li a button{
    display:none;
}
.mobile-nav__content{
    padding:0px !important;
}
.mobile-nav__close{
    color:#000;
}
.logo-box{
    background-color: #fff;
    padding: 21px;
}
.mobile-nav__container{
    padding: 0 20px;
}
.mobile-nav__contact{
    padding: 0 20px;
}
.modal-body .picture{
     width: 100%;
}
.modal{
    padding-top:0px !important;
}
@media only screen and (max-width: 992px){
    .swiper-slide .image-layer{
     background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 57% 82% !important;
    }
    .modal-dialog{
        padding-top: 6rem;
    }
    .contact-one__info li:nth-child(3) .icon{
        width: 80px !important;
    }
    .introduction thead, tbody, tfoot, tr, td, th{
        display:block;
    }
    .contact-one__form {
        padding: 29px 10px !important;
    }
    .contact-one__info li .text span {
        font-size: 12px;
    }
    .contact-one__info li .text a{
        font-size: 14px;
    }
    .contact-one__info li .text span{
            font-size: 15px;
    }
    .contact-one__info li .text{
    margin-top: 0 !important;
    width: 69%;
    margin-left: 10px !important;
    }
    .contact-one__left .contact-one__info li {
       flex-direction: row;
       align-items: center;
    }
    .section-title__title{
        font-size: 27px !important;
        line-height: 40px !important;
    }
    .contact-page {
        padding-top: 50px;
    }
    /*#recaptcha iframe{*/
    /*    width: 259px;*/
    /*}*/
    #recaptcha iframe .rc-anchor-content {
        width: 163px;
    }
    .request-a-pickup__tab-content{
        padding: 50px 15px;
    }
    .why-choose-two{
        padding: 120px 0 82px;
    margin-bottom: 2rem;
    }
    .why-choose-two__counter-content .waste_pick {
    font-size: 1.2rem;
    }
    .why-choose-two__counter-content{
        text-align: center;
        margin-left: 0px;
    }
    .why-choose-two__counter-single a{
        justify-content: center;
    display: flex;
    margin-bottom: 2rem;
    }
    .why-choose-two__counter-single{
        display:block;
    }
    .request-a-pickup-top__title {
    font-size: 1.6rem;
    line-height: 38px;
    margin-bottom: 20px;
}
    .request-a-pickup-top{
       padding: 49px 0 49px;
    }
    .team-one{
       padding: 60px 0 50px;
    }
    .page-header__inner h2{
        font-size: 29px !important;
    }
    .why-choose-one__content p{
       padding-bottom: 0;
       padding-top: 0;
    }
    .why-choose-one__content{
       padding: 40px 30px 50px !important;
    }
    .why-choose-one__title{
        font-size: 31px;
        line-height: 37px;
        margin-bottom: 1rem;
    }
    .why-choose-one{
       padding: 50px 0 65px;
    }
    .introduction {
    padding: 40px 0 40px !important;
}
.main-slider .container {
    padding-top: 29px !important;
}
.main-slider__content h2{
    font-size: 34px !important;
    line-height: 38px !important;
}
.main-slider p{
    margin-bottom: 1.3rem;
    line-height: 1.5rem;
}
.main-slider__content .thm-btn{
    margin-bottom: 1.4rem;
}
.leading-waste{
    padding: 0px 0 50px;
}
.leading-waste__right .section-title__title{
    font-size: 34px;
    line-height: 45px;
}
.leading-waste__right .leading-waste__points li{
    width: 100%;
}
.services-one__top .services-one__top-left .section-title {
    margin-bottom: 0px;
}
.testimonial-two__carousel.owl-carousel .owl-item.active{
    width: 293px !important;
}
.services-one__bottom .animated{
   height: 18rem;
}
.services-one__hover{
    height:auto !important;
}
.industries-one .industries-one__single{
    margin-top: 3.2rem;
}
.industries-one__content {
    height: auto !important;
}
.industries-one{
    padding: 36px 0 60px;
}
.industries-one-bg{
    height: 100%;
}
.manage-waste__title{
    line-height: 48px;
    font-size: 2rem;
}
.manage-waste{
    padding: 50px 0 50px !important;
}
.manage-waste__btn-box{
    margin-top: 12px;
}
.site-footer__top-inner{
    padding: 42px 25px;
}
.site-footer__social{
    width: 100%;
}
.site-footer__top-logo{
    margin-bottom: 2rem;
}
.site-footer__social .text-white a{
   font-size: 15px;
}
.footer-widget__contact-content {
    margin-left: 0px;
}
.footer-widget__contact-mail{
    font-size: 13px;
}
.footer-widget__contact{
    margin-top: 2rem;
}
}
@media only screen and (max-width: 300px){
.main-slider__content h2 {
    font-size: 29px !important;
    line-height: 35px !important;
}
}


/*****New Css End*****/
/* --- file: wostin-responsive.css --- */
/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .leading-waste__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .leading-waste__right {
        max-width: 600px;
        margin: 50px auto 0;
    }

    .industries-one__content {
        padding: 86px 30px 50px;
    }

    .we-dedicated__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .we-dedicated__right {
        max-width: 600px;
        margin: 100px auto 0;
    }

    .counter-one__text br {
        display: none;
    }

    .counter-one__single {
        padding-left: 40px;
    }

    .services-one__hover {
        padding: 61px 120px 24px;
    }

    .have-waste__icon {
        margin-left: 90px;
    }

    .have-waste__inner {
        padding-left: 60px;
        padding-right: 60px;
    }

    .testimonial-one__left {
        margin-right: 0;
    }

    .news-one__content {
        padding: 32px 20px 40px;
    }

    .footer-widget__services {
        margin-top: 35px;
    }

    .footer-widget__contact {
        margin-top: 35px;
    }

    .introducton__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .introducton__right {
        max-width: 600px;
        margin: 40px auto 0;
    }

    .introduction {
        padding: 120px 0 220px;
    }

    .waste-materials__points {
        margin-left: 30px;
    }

    .waste-materials__point-2 {
        margin-left: 30px;
    }

    .waste-materials__inner {
        padding: 76px 60px;
    }

    .why-choose-one__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-choose-one__right {
        max-width: 600px;
        margin: 0 auto 0;
    }

    .why-choose-one__content {
        padding: 94px 90px 95px;
        margin-top: 50px;
    }

    .benefit-one__title {
        font-size: 24px;
        line-height: 34px;
    }

    .benefit-one__shape-1 img {
        width: 90%;
    }

    .testimonial-two {
        padding: 120px 0 120px;
    }

    .project-two__title {
        font-size: 30px;
    }

    .contact-one__left {
        margin-right: 0;
    }

    .contact-one__right {
        margin-left: 0;
    }

    .welcome__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .welcome__right {
        max-width: 600px;
        margin: 50px auto 0;
    }

    .welcome {
        padding: 0 0 113px;
    }

    .why-choose-two__left {
        margin-right: 0;
    }

    .why-choose-two__right {
        margin-left: 0;
    }

    .pricing__tab-content-single {
        padding-right: 30px;
    }

    .pricing__tab-content {
        margin-left: 30px;
    }

    .pricing__tab-content-order:before {
        left: -30px;
    }

    .testimonial-three-bg-2 {
        display: none;
    }

    .working-process__single {
        padding: 0px 27px;
    }

    .news-three__left {
        margin-right: 0;
    }

    .news-three__carousel.owl-theme .owl-nav {
        bottom: 24px;
        left: -320px;
    }

    .always-working__left {
        max-width: 600px;
        margin: 0 auto 0;
    }

    .always-working__right {
        max-width: 600px;
        margin: 68px auto 0;
    }

    .service-details__benefits-right {
        margin-top: 25px;
    }

    .industy-page-header__content-box {
        margin-left: 30px;
    }

    .industy-details__the-best-content {
        margin-right: 0;
    }

    .industy-details__commitment-content {
        position: relative;
        margin-left: 0;
    }

    .wostin-for-job__single {
        padding: 50px 30px 42px;
    }

    .wostin-for-job__title {
        font-size: 36px;
    }

    .wostin-for-job__hover {
        padding: 42px 30px 0;
    }

    .wostin-for-job__hover-title {
        font-size: 36px;
    }

    .project-details__details li+li {
        margin-left: 40px;
    }

    .project-details__details li:before {
        right: -27px;
    }

    .similar-projects .project-one__content {
        padding: 19px 20px 27px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .cta-one__title {
        font-size: 55px;
    }

    .team-details__top-left {
        margin-right: 0;
    }

    .team-details__top-right {
        margin-left: 0;
    }

    .team-details__top {
        padding: 120px 0 109px;
    }

    .team-details__bottom-right {
        margin-left: 0;
    }

    .news-details__pagenation li+li {
        margin-left: 0;
        margin-top: 30px;
    }













}






/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-one__single {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 24px;
    }

    .feature-one__icon {
        position: relative;
        top: 0;
    }

    .feature-one__inner {
        padding: 88px 0 50px;
    }

    .leading-waste__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .leading-waste__right {
        max-width: 600px;
        margin: 50px auto 0;
    }

    .we-dedicated__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .we-dedicated__right {
        max-width: 600px;
        margin: 100px auto 0;
    }

    .services-one__top-left .section-title {
        margin-bottom: 37px;
    }

    .services-one__top-text {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .have-waste__inner {
        padding-left: 80px;
        padding-right: 80px;
        flex-direction: column;
    }

    .have-waste__icon {
        margin-left: 0;
    }

    .have-waste__left {
        flex-direction: column;
    }

    .project-one__title {
        font-size: 32px;
    }

    .testimonial-one__left {
        margin-bottom: 50px;
    }

    .site-footer__top-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .site-footer__top-right {
        flex-direction: column;
    }

    .site-footer__social {
        margin-left: 0;
    }

    .site-footer__social:before {
        display: none;
    }

    .site-footer__top-right-text {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .footer-widget__about {
        margin-right: 0;
    }

    .footer-widget__services {
        margin-right: 0;
        margin-top: 35px;
    }

    .footer-widget__contact {
        margin-top: 35px;
    }

    .introducton__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .introducton__right {
        max-width: 600px;
        margin: 40px auto 0;
    }

    .introduction {
        padding: 120px 0 220px;
    }

    .waste-materials__inner {
        flex-direction: column;
        align-items: baseline;
    }

    .waste-materials__points {
        margin-left: 0;
        margin-top: 33px;
    }

    .industries-two__top-left .section-title {
        margin-bottom: 37px;
    }

    .industries-two__top-right {
        margin-bottom: 50px;
    }

    .why-choose-one__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-choose-one__right {
        max-width: 600px;
        margin: 0 auto 0;
    }

    .why-choose-one__content {
        padding: 94px 90px 95px;
        margin-top: 50px;
    }

    .benefit-one__single {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .benefit-one__single:last-child {
        margin-bottom: 0;
    }

    .testimonial-two__left {
        margin-bottom: 50px;
    }

    .contact-one__left {
        margin-right: 0;
    }

    .contact-one__right {
        margin-left: 0;
        margin-top: 50px;
    }

    .cta-one__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-one__btn-box {
        margin-top: 20px;
    }

    .welcome__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .welcome__right {
        max-width: 600px;
        margin: 50px auto 0;
    }

    .welcome {
        padding: 0 0 113px;
    }

    .why-choose-two__left {
        margin-right: 0;
    }

    .why-choose-two__right {
        margin-left: 0;
        margin-top: 70px;
    }

    .project-three__left .section-title {
        margin-bottom: 37px;
    }

    .project-three__right {
        margin-bottom: 50px;
    }

    .pricing__tab-content-single {
        padding-right: 29px;
        padding-bottom: 30px;
        flex-direction: column;
        align-items: baseline;
    }

    .pricing__tab-content-order {
        padding-top: 23px;
        margin-left: 30px;
    }

    .pricing__tab-content-order:before {
        top: 0px;
        left: -30px;
        bottom: -30px;
    }

    .testimonial-three-bg-2 {
        display: none;
    }

    .working-process__single {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .working-process__single:nth-child(2):before {
        display: none;
    }

    .news-three__text {
        margin-bottom: 155px;
    }

    .news-three__carousel.owl-theme .owl-nav {
        bottom: inherit;
        left: 0;
        top: -115px;
    }

    .always-working__left {
        max-width: 600px;
        margin: 0 auto 0;
    }

    .always-working__right {
        max-width: 600px;
        margin: 68px auto 0;
    }

    .service-details__benefits-right {
        margin-top: 25px;
    }

    .service-details__left {
        margin-bottom: 50px;
    }

    .industries-one__content {
        padding: 86px 35px 50px;
    }

    .industy-page-header__content-box {
        margin-left: 15px;
    }

    .industy-details__the-best-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .industy-details__commitment-content {
        margin-left: 0;
        margin-top: 30px;
    }

    .wostin-for-bob__left .section-title {
        margin-bottom: 38px;
    }

    .wostin-for-bob__content {
        margin-bottom: 50px;
    }

    .projects-page .project-one__content {
        padding: 19px 20px 27px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .project-details__details {
        padding: 31px 20px 37px;
    }

    .project-details__details li+li {
        margin-left: 20px;
    }

    .project-details__details li:before {
        display: none;
    }

    .team-details__top {
        padding: 120px 0 109px;
    }

    .team-details__top-right {
        margin-left: 0;
    }

    .team-details__top-content {
        margin-top: 41px;
    }

    .team-details__bottom-right {
        margin-left: 0;
        margin-top: 28px;
    }

    .testimonials-page .testimonial-two__single {
        padding: 43px 30px 67px;
    }

    .faq-icon__list li+li {
        margin-left: 10px;
    }

    .faq-waste-pickup__banner {
        margin-top: 50px;
    }

    .faq-waste-pickup__banner-car {
        right: 0;
    }

    .error-page-shape {
        left: 54.5%;
    }

    .news-details__pagenation li+li {
        margin-left: 0;
        margin-top: 30px;
    }





























}




/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .section-title__title {
        font-size: 40px;
        line-height: 50px;
    }

    .feature-one__single {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .feature-one__icon {
        position: relative;
        top: 0;
    }

    .feature-one__inner {
        padding: 88px 0 50px;
    }

    .feature-one__single:before {
        display: none;
    }

    .leading-waste__left {
        margin-left: 0;
        margin-right: 0;
    }

    .leading-waste__img-shape-1 {
        display: none;
    }

    .leading-waste__experience {
        top: 0;
        left: 0;
    }

    .leading-waste__right {
        margin-left: 0;
        margin-top: 50px;
    }

    .industries-one__content {
        padding: 86px 30px 50px;
    }

    .we-dedicated__left {
        margin-right: 0;
    }

    .we-dedicated__right {
        margin-top: 50px;
    }

    .counter-one__text br {
        display: none;
    }

    .counter-one__single {
        padding-left: 40px;
    }

    .services-one__top-left .section-title {
        margin-bottom: 37px;
    }

    .services-one__top-text {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .have-waste__inner {
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .have-waste__icon {
        margin-left: 0;
    }

    .have-waste__left {
        flex-direction: column;
    }

    .project-one__content {
        padding: 19px 15px 27px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .project-one__title {
        font-size: 28px;
    }

    .testimonial-one__left {
        margin-right: 0;
        margin-bottom: 50px;
    }

    .testimonial-one__single {
        padding: 44px 20px 60px;
    }

    .news-one__content {
        padding: 32px 20px 40px;
    }

    .site-footer__top-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .site-footer__top-right {
        flex-direction: column;
    }

    .site-footer__social {
        margin-left: 0;
    }

    .site-footer__social:before {
        display: none;
    }

    .site-footer__top-right-text {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .footer-widget__about {
        margin-right: 0;
        margin-bottom: 46px;
    }

    .footer-widget__services {
        margin-right: 0;
        margin-top: 36px;
        margin-bottom: 36px;
    }

    .introducton__left {
        margin-right: 0;
    }

    .introduction__bottom li+li {
        margin-left: 50px;
    }

    .introducton__right {
        margin-right: 0;
        margin-left: 0;
        margin-top: 40px;
    }

    .introducton__img-2 {
        display: none;
    }

    .introducton__img-1 img {
        width: 100%;
    }

    .introduction {
        padding: 120px 0 120px;
    }

    .waste-materials__inner {
        flex-direction: column;
        align-items: baseline;
        padding: 76px 30px;
    }

    .waste-materials__points {
        margin-left: 0;
        margin-top: 33px;
        flex-direction: column;
        align-items: baseline;
    }

    .waste-materials__title br {
        display: none;
    }

    .waste-materials__point-2 {
        margin-left: 0;
        margin-top: 5px;
    }

    .manage-waste__title br {
        display: none;
    }

    .manage-waste__btn-box {
        flex-direction: column;
    }

    .manage-waste__btn-1 {
        margin-right: 0px;
    }

    .manage-waste__btn-2 {
        margin-left: 0px;
        margin-top: 10px;
    }

    .industries-two__top-left .section-title {
        margin-bottom: 37px;
    }

    .industries-two__top-right {
        margin-bottom: 50px;
    }

    .why-choose-one__left {
        margin-right: 0;
    }

    .why-choose-one__content {
        padding: 94px 30px 95px;
        margin-top: 50px;
    }

    .benefit-one__single {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .benefit-one__single:last-child {
        margin-bottom: 0;
    }

    .benefit-one__title {
        font-size: 24px;
        line-height: 34px;
    }

    .benefit-one__shape-1 img {
        width: 90%;
    }

    .testimonial-two__left {
        margin-bottom: 50px;
    }

    .testimonial-two__single {
        padding: 43px 30px 67px;
    }

    .project-two .section-title__title br {
        display: none;
    }

    .contact-one__left {
        margin-right: 0;
    }

    .contact-one__right {
        margin-left: 0;
        margin-top: 50px;
    }

    .contact-one__info li {
        flex-direction: column;
        align-items: baseline;
    }

    .contact-one__info li .text {
        margin-left: 0;
        margin-top: 20px;
    }

    .contact-one__info li+li {
        margin-top: 20px;
    }

    .contact-one__form {
        padding: 29px;
    }

    .news-two__list-single {
        flex-direction: column;
    }

    .news-two__list-content {
        margin-left: 0;
        margin-top: 13px;
    }

    .cta-one__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-one__btn-box {
        margin-top: 20px;
    }

    .cta-one__title {
        font-size: 55px;
    }

    .services-two__single.mart-30 {
        margin-top: 0;
    }

    .welcome__left {
        margin-right: 0;
    }

    .welcome__icon {
        left: 0;
    }

    .welcome__right {
        margin-left: 0;
        margin-top: 50px;
    }

    .welcome__bottom {
        flex-direction: column;
        align-items: baseline;
    }

    .welcome__bottom li+li {
        margin-left: 0;
        margin-top: 20px;
    }

    .welcome {
        padding: 0 0 113px;
    }

    .why-choose-two__left {
        margin-right: 0;
    }

    .why-choose-two__right {
        margin-left: 0;
        margin-top: 70px;
    }

    .why-choose-two__founder-title {
        margin-left: 0;
    }

    .why-choose-two__founder-name {
        font-size: 28px;
    }

    .project-three__left .section-title {
        margin-bottom: 37px;
    }

    .project-three__right {
        margin-bottom: 50px;
    }

    .pricing__tab-content-single {
        padding-right: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: 0;
    }

    .pricing__tab-content-single:before {
        display: none;
    }

    .pricing__tab-content-single:after {
        display: none;
    }

    .pricing__tab-content-order {
        padding-top: 23px;
    }

    .pricing__tab-content-order:before {
        display: none;
    }

    .pricing__tab-content-left {
        flex-direction: column;
        align-items: baseline;
    }

    .pricing__tab-content {
        margin-left: 30px;
        margin-top: 25px;
    }

    .pricing__tab-content-img img {
        width: 100%;
    }

    .pricing__tab-box .tab-buttons {
        flex-direction: column;
    }

    .pricing__tab-box .tab-buttons .tab-btn+.tab-btn {
        margin-left: 0;
        margin-top: 30px;
    }

    .testimonial-three-bg-2 {
        display: none;
    }

    .team-one__content {
        padding: 20px 30px 30px;
    }

    .working-process__single {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .working-process__single:before {
        display: none;
    }

    .news-three__text {
        margin-bottom: 40px;
    }

    .news-three__carousel.owl-theme .owl-nav {
        display: none;
    }

    .news-three__left {
        margin-right: 0;
    }

    .always-working__left {
        margin-right: 0;
    }

    .always-working__bottom {
        flex-direction: column;
        align-items: baseline;
    }

    .always-working__bottom li+li {
        margin-left: 0;
        margin-top: 30px;
    }

    .always-working__right {
        margin-top: 68px;
    }

    .service-details__benefits-right {
        margin-top: 25px;
    }

    .service-details__left {
        margin-bottom: 50px;
    }

    .service-details__need-help {
        padding: 50px 40px 43px;
    }

    .service-details__banner-content {
        padding: 64px 38px 221px;
    }

    .services-details__banner-car {
        left: 15px;
    }

    .services-details__banner-car img {
        width: 90%;
    }

    .faq-one-accrodion .accrodion-title h4::before {
        right: -15px;
    }

    .industy-page-header__left {
        float: none;
        width: 100%;
    }

    .industy-page-header__right {
        float: none;
        width: 100%;
        min-height: 525px;
    }

    .industy-page-header {
        overflow: hidden;
    }

    .industy-page-header__content-box {
        margin-left: 0;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .industy-page-header__icon {
        display: none;
    }

    .industy-page-header__shape {
        display: none;
    }

    .industy-details__the-best-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .industy-details__commitment-content {
        margin-left: 0;
        margin-top: 30px;
    }

    .industy-details__title {
        font-size: 50px;
        line-height: 60px;
    }

    .industy-details__commitment-content .industy-details__title {
        line-height: 60px;
    }

    .wostin-for-job__single {
        padding: 50px 30px 42px;
    }

    .wostin-for-job__title {
        font-size: 36px;
    }

    .wostin-for-job__hover {
        padding: 42px 30px 0;
    }

    .wostin-for-job__hover-title {
        font-size: 36px;
    }

    .wostin-for-bob__left .section-title {
        margin-bottom: 38px;
    }

    .wostin-for-bob__content {
        margin-bottom: 50px;
    }

    .projects-page .project-one__content {
        padding: 19px 20px 27px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .projects-page .project-one__title {
        font-size: 28px;
    }

    .project-details__title-box {
        flex-direction: column;
        align-items: baseline;
    }

    .project-details__social-box {
        margin-top: 26px;
    }

    .project-details__details {
        padding: 31px 40px 37px;
        flex-direction: column;
        align-items: baseline;
    }

    .project-details__details li+li {
        margin-left: 0;
        margin-top: 18px;
    }

    .project-details__details-box {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .project-details__details li:before {
        display: none;
    }

    .similar-projects .project-one__content {
        padding: 19px 20px 27px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .team-details__top {
        padding: 120px 0 109px;
    }

    .team-details__top-right {
        margin-left: 0;
    }

    .team-details__top-content {
        margin-top: 41px;
    }

    .team-details__top-right {
        margin-left: 0;
    }

    .team-details__top-content {
        margin-top: 41px;
    }

    .team-details__bottom-right {
        margin-left: 0;
        margin-top: 28px;
    }

    .faq-icon__list {
        flex-direction: column;
    }

    .faq-icon__list li+li {
        margin-left: 0;
    }

    .faq-waste-pickup__banner {
        margin-top: 50px;
    }

    .faq-waste-pickup__banner-content {
        padding: 64px 35px 220px;
    }

    .faq-waste-pickup__banner-car {
        right: 0;
    }

    .faq-waste-pickup__banner-car img {
        width: 90%;
    }

    .error-page__title {
        font-size: 140px;
        line-height: 140px;
        margin-bottom: 13px;
    }

    .error-page-shape {
        display: none;
    }

    .error-page {
        padding: 100px 0 120px;
    }

    .news-sidebar__bottom-box {
        padding: 50px 20px 40px;
    }

    .news-sidebar__delivering-services {
        padding: 50px 20px 39px;
    }

    .sidebar__post {
        padding: 44px 20px 30px;
    }

    .sidebar__category {
        padding: 44px 20px 33px;
    }

    .sidebar__tags {
        padding: 44px 15px 50px;
    }

    .sidebar__comments {
        padding: 41px 20px 43px;
    }

    .news-details__pagenation li+li {
        margin-left: 0;
        margin-top: 30px;
    }

    .news-details__bottom {
        flex-direction: column;
    }

    .news-details__tags a {
        padding: 7px 19px;
    }

    .news-details__social-list {
        margin-top: 20px;
    }

    .news-details__pagenation li {
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
    }

    .comment-one__single {
        flex-direction: column;
        align-items: baseline;
    }

    .comment-one__content {
        margin-left: 0;
        margin-top: 20px;
    }

    .page-header__inner h2 {
        font-size: 50px;
        line-height: 50px;
    }













}





















@media only screen and (min-width: 1200px) and (max-width: 1586px) {
    .project-one__content {
        padding: 19px 15px 27px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .project-one__title {
        font-size: 28px;
    }



}

@media only screen and (min-width: 1200px) and (max-width: 1655px) {
    .industy-page-header__content-box {
        margin-left: 100px;
    }



}





/*--------------------------------------------------------------
# Slider All Responsice Css
--------------------------------------------------------------*/

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .main-slider__nav .swiper-button-prev {
        left: 0px;
    }

    .main-slider__nav .swiper-button-next {
        right: 0px;
    }







}


@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .main-slider__nav .swiper-button-prev {
        left: 0px;
    }

    .main-slider__nav .swiper-button-next {
        right: 0px;
    }

    .main-slider-two__video-box {
        margin-top: -74px;
        margin-left: 300px;
    }

    .main-slider-three-car {
        right: 0;
    }

    .main-slider-three-car img {
        width: 90%;
    }


}






@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-slider__nav .swiper-button-prev {
        left: 0px;
    }

    .main-slider__nav .swiper-button-next {
        right: 0px;
    }

    .main-slider h2 {
        font-size: 110px;
    }

    .main-slider-two__video-box {
        margin-top: -74px;
        margin-left: 300px;
    }

    .main-slider-three h2 {
        font-size: 90px;
        line-height: 90px;
    }

    .main-slider-three-car {
        right: 0;
    }

    .main-slider-three-car img {
        width: 70%;
    }















}



@media only screen and (max-width: 767px) {
    .main-slider__nav {
        display: none;
    }

    .main-slider h2 br {
        display: none;
    }

    .main-slider h2 {
        font-size: 54px;
        line-height: 54px;
    }

    .main-slider .container {
        padding-top: 143px;
    }

    .main-slider-two .container {
        padding-top: 343px;
        padding-bottom: 160px;
    }

    .main-slider__nav-two {
        display: none;
    }

    .main-slider-two__video-box {
        margin-top: 60px;
        margin-left: 22px;
    }

    .main-slider-two h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .main-slider-two h2 br {
        display: block;
    }

    .main-slider-three h2 {
        font-size: 39px;
        line-height: 49px;
    }

    .main-slider-three h2 br {
        display: none;
    }

    .main-slider-three .container {
        padding-top: 258px;
        padding-bottom: 260px;
    }

    .main-slider-three-building {
        display: none;
    }

    .main-slider-three-car {
        display: none;
    }

}




/*--------------------------------------------------------------
# Main Menu All Responsice Css
--------------------------------------------------------------*/
@media only screen and (min-width: 1400px) and (max-width: 1730px) {
    .main-menu__menu-box {
        width: 67%;
    }

    .main-menu__menu-top {
        display: none;
    }

    .main-header__logo {
        padding: 27.5px 0;
        width: 200px;
    }

    .main-header__right {
        padding: 18px 0;
    }



}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .main-menu__menu-box {
        width: 60%;
    }

    .main-menu__menu-top {
        display: none;
    }

    .main-header__logo {
        padding: 27.5px 0;
        width: 200px;
    }

    .main-header__right {
        padding: 18px 0;
    }

    .main-menu .main-menu__list>li+li {
        margin-left: 30px;
    }

    .stricky-header .main-menu__list>li+li {
        margin-left: 70px;
    }

    .main-menu-three {
        padding: 0 30px;
    }

    .main-menu-three .main-menu__list>li+li,
    .stricky-header.main-menu-three .main-menu__list>li+li {
        margin-left: 30px;
    }

    .main-menu-three__search-box {
        margin-right: 20px;
    }

    .main-menu-three__search-box:before {
        left: -20px;
    }



}


@media only screen and (min-width: 1400px) and (max-width: 1900px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {}




@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu__menu-box {
        width: auto;
        margin-left: 30px;
    }

    .main-menu__menu-top {
        display: none;
    }

    .main-header__logo {
        padding: 27.5px 0;
        width: 200px;
    }

    .main-header__right {
        padding: 18px 0;
    }

    .main-menu .mobile-nav__toggler {
        padding: 33px 0;
        display: inline-block;
    }

    .main-menu-two .mobile-nav__toggler {
        padding: 21px 0;
    }

    .main-menu-three .mobile-nav__toggler {
        padding: 44px 0;
        display: inline-block;
        color: var(--wostin-white);
    }

    .main-menu-three .mobile-nav__toggler:hover {
        color: var(--wostin-primary);
    }





}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu__menu-box {
        width: 34%;
    }

    .main-menu__menu-top {
        display: none;
    }

    .main-header__logo {
        padding: 27.5px 0;
        width: 200px;
    }

    .main-header__right {
        padding: 18px 0;
    }

    .main-menu .mobile-nav__toggler {
        padding: 33px 0;
        display: inline-block;
    }

    .main-menu-two .mobile-nav__toggler {
        padding: 21px 0;
    }

    .main-header-two__top-right {
        display: none;
    }

    .main-header-two__logo {
        text-align: center;
        margin: 0 auto;
    }

    .main-menu-three .mobile-nav__toggler {
        padding: 44px 0;
        display: inline-block;
        color: var(--wostin-white);
    }

    .main-menu-three .mobile-nav__toggler:hover {
        color: var(--wostin-primary);
    }







}




@media (max-width: 767px) {
    .main-menu__menu-box {
        width: auto;
        float: right;
    }

    .main-menu__menu-top {
        display: none;
    }

    .main-header__logo {
        padding: 27.5px 0;
        width: 200px;
    }

    .main-header__right {
        display: none;
    }

    .main-menu .mobile-nav__toggler {
        padding: 33px 0;
        display: inline-block;
    }

    .main-header__inner {
        padding: 0 30px;
    }

    .main-menu-two .mobile-nav__toggler {
        padding: 21px 0;
    }

    .main-header-two__top-right {
        display: none;
    }

    .main-header-two__logo {
        text-align: center;
        margin: 0 auto;
    }

    .main-menu-two__btn-box {
        display: none;
    }

    .main-menu-two__main-menu-box {
        display: block;
        padding-left: 0;
        overflow: hidden;
        width: 100%;
        padding: 0 30px;
    }

    .main-menu-two__main-menu-box-inner {
        position: relative;
        display: block;
        float: left;
    }

    .main-menu-two__search-box {
        display: flex;
        margin-left: 0;
        float: right;
        padding: 24px 0;
    }

    .main-menu-two__search-box:before {
        top: 15px;
        bottom: 16px;
    }

    .main-menu-three .mobile-nav__toggler {
        padding: 44px 0;
        display: inline-block;
        color: var(--wostin-white);
    }

    .main-menu-three .mobile-nav__toggler:hover {
        color: var(--wostin-primary);
    }

    .main-menu-three__main-menu {
        width: auto;
        float: right;
        margin-left: auto;
    }

    .main-menu-three__right {
        display: none;
    }

    .main-menu-three {
        padding: 0 30px;
    }


}


@media (max-width: 1199px) {
    .main-menu-two__search-box {
        margin-left: 60px;
    }

    .main-menu-three__wrapper {
        justify-content: flex-start;
    }

    .main-menu-three .mobile-nav__toggler {
        margin-left: 30px;
    }

    .main-menu-three__right {
        margin-left: auto;
    }
}
/* --- file: poppins.css --- */
/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVFteOcEg.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVGdeOcEg.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVF9eO.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLucXtAKPY.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLufntAKPY.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLucHtA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVFteOcEg.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVGdeOcEg.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVF9eO.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15VFteOcEg.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15VGdeOcEg.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15VF9eO.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTucXtAKPY.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTufntAKPY.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTucHtA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* devanagari */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }