body {
    font-family: poppins,sans-serif!important
}

h1,h2,h3,h4,h5,h6,p,div,span,small,em,ul,li,strong,a,ol,fieldset,input,textarea,tr,td,thead,tbody,table {
    font-family: poppins,sans-serif!important
}

.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,.animated.flipOutX,.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    40%,43%,70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06)
    }

    70% {
        -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%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    40%,43%,70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06)
    }

    70% {
        -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%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

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

    25%,75% {
        opacity: 0
    }
}

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

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

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

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

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.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)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

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

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.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)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

@-webkit-keyframes shake {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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 headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

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

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

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

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

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

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

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

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

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

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

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes jello {
    0%,11.1%,to {
        -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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%,11.1%,to {
        -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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

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

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }

    0%,40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    50%,80% {
        -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)
    }

    to {
        -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) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }

    0%,40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    50%,80% {
        -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)
    }

    to {
        -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) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

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

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -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) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg)
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

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

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg)
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -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) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

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

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(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) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

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

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(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)
    }

    60%,80% {
        opacity: 1
    }

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

    to {
        -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)
    }

    60%,80% {
        opacity: 1
    }

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

    to {
        -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
    }

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -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% {
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: center
    }

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

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

    0%,to {
        -webkit-transform-origin: center
    }

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

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

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

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

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

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

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

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

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

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

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

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

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

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

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

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

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

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

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

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

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

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

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

    0%,to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

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

    0%,to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

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

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

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

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

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

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

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

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

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

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes hinge {
    0% {
        transform-origin: top left
    }

    0%,20%,60% {
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(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
    }

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

@keyframes hinge {
    0% {
        transform-origin: top left
    }

    0%,20%,60% {
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(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
    }

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(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 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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

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

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

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

    50%,to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    50%,to {
        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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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)
    }

    to {
        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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        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(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,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
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

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

    to {
        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: translateZ(0);
        transform: translateZ(0)
    }

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

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

    to {
        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: translateZ(0);
        transform: translateZ(0)
    }

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

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

    to {
        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: translateZ(0);
        transform: translateZ(0)
    }

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

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

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

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

.h1,.h2,.h3,h1,h2,h3,h4,h5,h6 {
}

@font-face {
    font-family: MYRIADPRO-BOLD;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-BOLD.otf)
}

@font-face {
    font-family: MYRIADPRO-BOLDCOND;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-BOLDCOND.otf)
}

@font-face {
    font-family: MYRIADPRO-BOLDCONDIT;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-BOLDCONDIT.otf)
}

@font-face {
    font-family: MYRIADPRO-BOLDIT;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-BOLDIT.otf)
}

@font-face {
    font-family: MYRIADPRO-COND;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-COND.otf)
}

@font-face {
    font-family: MYRIADPRO-CONDIT;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-CONDIT.otf)
}

@font-face {
    font-family: MYRIADPRO-REGULAR;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-REGULAR.otf)
}

@font-face {
    font-family: MYRIADPRO-SEMIBOLD;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-SEMIBOLD.otf)
}

@font-face {
    font-family: MYRIADPRO-SEMIBOLDIT;
    src: url(//assets/css/../font/myriad-pro/MYRIADPRO-SEMIBOLDIT.otf)
}

body {
    font-family: raleway,sans-serif;
    font-weight: 400;
    color: #595d61
}

a,a:hover {
    font-family: lato;
    color: #8a8b8d;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

* {
    margin: 0;
    padding: 0
}

ul li {
    list-style: none
}

header {
    width: 100%;
    z-index: 999
}

.map-area iframe {
    pointer-events: none
}

::-webkit-scroll99bar {
    width: 10px
}

::-webkit-scroll99bar-track {
    background-color: #233137;
    border-left: 1px solid #233137
}

::-webkit-scroll99bar-thumb {
    background-color: #278b53
}

::-webkit-scroll99bar-thumb:hover {
    background-color: #bf1e2e
}

section.top {
    border-bottom: 0;
    padding: 0;
    position: absolute;
    z-index: 9999999;
    color: #fff;
    width: 100%;
    background: #0a4d8d
}

section.top .top-left i {
    color: #6c94bb;
    font-size: 15px;
    vertical-align: middle;
    margin-right: 8px
}

.top-right li {
    display: inline-block;
    margin-right: 0;
    padding: 8px 0;
    color: #fff;
    font-weight: 600
}

.top-left {
    margin-top: 0
}

.top-left ul {
    text-align: left
}

section.top .social {
    width: 100%;
    float: right;
    margin-right: 0;
    text-align: right
}

section.top .social li {
    display: inline-block
}

section.top .social li a {
    padding: 8px 10px;
    color: #0069b7;
    width: 39px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background: rgb(255 255 255)
}

section.logo-sec {
    padding: 0;
    z-index: 1;
    width: 100%;
    top: 55px
}

.my-menu .navbar-default {
    background-color: transparent;
    border-color: transparent;
    margin-top: 16px
}

.logo {
    margin: 7px 0 11px
}

.my-menu .navbar-default .navbar-nav>.active>a,.my-menu .navbar-default .navbar-nav>.active>a:focus,.my-menu .navbar-default .navbar-nav>.active>a:hover {
    color: #2d2d2d;
    background-color: transparent;
    border-bottom: solid 0 #056839
}

.my-menu .navbar-default .navbar-nav a:hover {
    color: #000;
    background-color: transparent;
    border-bottom: solid 0 #056839
}

.my-menu .navbar-nav>li>a {
    text-transform: uppercase;
    padding: 12px 16px 9px;
    color: #313131;
    font-family: roboto condensed,sans-serif;
    font-size: 17px
}

header .navbar-default {
    background-color: #2e2e30;
    border: 0
}

header .navbar-default .navbar-nav>.active>a,header .navbar-default .navbar-nav>.active>a:focus,header .navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #b16801
}

header .navbar-default .navbar-nav>li>a:focus,header .navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background: #b16801
}

header .navbar-default .navbar-nav>li>a {
    color: #fff
}

header .navbar-nav>li>a {
    padding: 28px 21px
}

.my-menu .navbar {
    margin-bottom: 0;
    margin-top: 35px
}

.my-menu .navbar-nav>li {
    float: left;
    margin-right: 0
}

.top-slider ul.bxslider img {
    width: 100%
}

.top-slider {
    position: relative;
    padding: 0;
    s;text-align: center
}

.top-slider .carousel-caption {
    bottom: 103px
}

a.readmore {
    background: #0069b7!important;
    padding: 13px 35px!important;
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 16px!important;
    font-weight: 500!important
}

.top-slider h1 {
    font-size: 53px;
    text-transform: capitalize;
    font-weight: 800
}

.carousel-caption p {
    font-size: 16px
}

.top-slider .bx-wrapper .bx-prev {
    left: 0;
    background: url(//assets/css/../img/sprite.png) no-repeat -5px 0
}

.top-slider .bx-wrapper .bx-next {
    right: 0;
    background: url(//assets/css/../img/sprite.png) no-repeat -54px 0
}

.top-slider .bx-wrapper .bx-controls-direction a {
    width: 30px;
    height: 110px;
    display: none
}

.top-slider .bx-pager.bx-default-pager {
    display: inline-block;
    right: 0;
    position: absolute;
    top: 92%;
    width: 7%;
    left: 0;
    margin: 0 auto
}

.top-slider .bx-wrapper {
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px transparent;
    border: 0 solid #fff;
    background: #fff;
    margin: 0
}

.bx-wrapper .bx-controls-direction a {
    top: 43%
}

.carousel-caption {
    width: 75%;
    left: 12%;
    text-align: center
}

.social-cont li {
    display: inline-block;
    width: 38px;
    border: solid 1px #eee;
    text-align: center;
    padding: 8px 0
}

.contact-list li {
    padding: 2px 26px;
    margin-bottom: 6px;
    height: 51px;
    text-align: left
}

.contact-list li a {
    color: #000
}

.contact-list li i {
    float: left;
    margin-right: 8px;
    color: #278b53;
    width: 30px;
    text-align: center;
    padding: 7px 0;
    border-radius: 6px;
    position: relative;
    bottom: 5px
}

.my-submit {
    background: #0b4b91;
    border: 0;
    border-radius: 0;
    padding: 12px 41px;
    text-transform: uppercase
}

section.hd-sec {
    background: #dedede
}

section.hd-sec ul.breadcrumb {
    background: 0 0;
    font-size: 12px;
    padding: 0
}

section.hd-sec .breadcrumb>li+li:before {
    padding: 0;
    color: #ccc;
    content: "/\00a0"
}

section.hd-sec .bg {
    background: #b16801;
    color: #fff
}

section.hd-sec .bg a,section.hd-sec .bg li.active {
    color: #fff
}

.form-control {
    border: solid 1px #d7d7d7;
    border-radius: 0;
    padding: 7px 10px;
    box-shadow: none;
    background: #fff;
    height: 43px
}

section.home {
    position: relative;
    padding: 75px 0 113px
}

section.home img.img-responsive {
    right: 0;
    bottom: 140px
}

section.home h2 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px
}

section.home h6 {
    color: #25873b;
    font-size: 23px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-transform: uppercase
}

section.container.home p {
    font-size: 16px;
    color: #1e1e1e;
    padding: 27px 0 8px;
    font-weight: 400;
    line-height: 28px
}

section.container.home ul.wlc-ul li {
    line-height: 32px;
    background: url(//assets/css/../img/wlc-list.png);
    background-repeat: no-repeat;
    background-position: -1px 8px;
    padding-left: 21px;
    font-size: 16px;
    font-weight: 400
}

.home h6 {
    color: #007bc3;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 800;
    margin: 0;
    line-height: 14px;
    font-family: poiret one,cursive;
    margin-top: 25px;
    background: url(//assets/css/../img/head-bg2.png) no-repeat center;
    background-position-y: 47px;
    margin-bottom: 35px
}

.home p {
    margin-top: 20px;
    color: #949494;
    font-size: 14px!important;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    padding: 0;
    text-align: justify;
    padding-right: 50px;
    text-transform: none
}

section.home h2 span {
    color: #056839
}

section.home a.readmore {
    margin-top: 26px
}

.wlc-bg {
    padding: 50px 0 50px 20px;
    background-size: cover!important;
    text-align: left;
    background: #fff;
    max-width: 1600px;
    margin-top: -33px!important;
    margin: 0 auto
}

section.services {
    color: #000;
    text-align: center;
    padding: 38px 0 60px;
    background-size: 100%
}

section.services h2 {
    font-size: 39px;
    font-weight: 400;
    color: #171717;
    margin-bottom: 15px;
    font-family: source sans pro,sans-serif
}

section.services h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 23px 0;
    color: #282828;
    font-family: source sans pro,sans-serif
}

section.services h6 {
    font-size: 28px;
    margin-bottom: 0;
    color: #007bc3;
    letter-spacing: 6px;
    font-weight: 100;
    margin-top: 17px;
    background: url(//assets/css/../img/head-bg2.png) no-repeat center;
    background-position-y: 45px;
    font-family: source sans pro,sans-serif
}

section.services a {
    margin-top: 22px
}

.container.sec3 h3 {
    font-size: 25px;
    color: #2e2e2e;
    margin-top: 25%
}

.container.sec3 p {
    font-size: 14px;
    color: #464646;
    font-weight: 500;
    margin-top: 11px
}

.pro-slide li img {
    border: solid 5px #ededed
}

.pro-slide li {
    text-align: left;
    outline: 0;
    background: #fff;
    margin-right: 16px!important
}

.pro-slide h3 {
    font-size: 14px;
    color: #333;
    text-transform: capitalize;
    font-weight: 700;
    padding: 21px 0 9px;
    text-transform: uppercase;
    margin: 0
}

.pro-slide p {
    color: #fff;
    line-height: 23px;
    font-size: 14px;
    font-weight: 400
}

.pro-slide .img-box {
    position: relative;
    overflow: hidden
}

.pro-slide .img-box:hover .img-hover {
    margin-left: 0
}

.pro-slide .img-box .img-hover {
    background: rgba(0,0,0,.7);
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 96%;
    height: 100%;
    text-align: center;
    padding: 53% 0;
    margin-left: -280px
}

section.my-product {
    text-align: center;
    padding: 42px 0;
    background: url(//assets/css/../img/galery-bg.jpg)
}

.pro-slide {
    margin-top: 2%
}

.pro-slide .slick-prev,.pro-slide .slick-next {
    top: 37%;
    width: 34px;
    height: 34px;
    padding: 0;
    background: url(//assets/css/../img/sprite.png) no-repeat -104px -1px
}

.pro-slide .slick-prev:before,.pro-slide .slick-next:before {
    font-size: 0
}

.pro-slide .slick-next {
    right: -21px!important;
    background: url(//assets/css/../img/top-slide1.png) no-repeat!important
}

.pro-slide .slick-prev {
    left: -19px
}

.pro-slide .slick-dots {
    display: none!important
}

.pro-slide .img-box i {
    font-size: 26px
}

section.portfolio {
    background: url(//assets/css/../img/gallery-bg.jpg);
    padding: 45px 0;
    text-align: center;
    background-size: 100%
}

section.portfolio #portfolio {
    margin: 1rem 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%
}

section.portfolio .tile {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease
}

section.portfolio .scale-anm {
    transform: scale(1)
}

section.portfolio .tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1rem
}

section.portfolio .btn {
    font-weight: 400;
    cursor: pointer;
    line-height: normal;
    color: #fff;
    background-color: transparent;
    font-size: 16px
}

section.portfolio .btn:hover {
    text-decoration: none
}

section.portfolio .btn:focus {
    outline: 0;
    border-color: var(--darken-2);
    box-shadow: 0 0 0 3px var(--darken-3)
}

section.portfolio::-moz-focus-inner {
    border: 0;
    padding: 0
}

section.portfolio .toolbar.mb2.mt2 {
    margin-bottom: 33px;
    color: #fff
}

section.our-client {
    text-align: center;
    padding: 62px 0 1px;
    background: url(//assets/css/../img/test-bt.jpg) center top;
    background-size: cover
}

section.our-client .slick-dots li button {
    background: #e4e4e4;
    border: #f0f8ff;
    height: 15px;
    width: 15px
}

section.our-client .slick-dots li.slick-active button {
    background: #fff;
    border: solid 2px #0db2f0;
    height: 15px;
    width: 15px
}

section.our-client .slick-dots li button:hover {
    background: #fff;
    border: solid 2px #0db2f0;
    color: #fff
}

section.our-client li {
    text-align: left;
    opacity: .5
}

section.our-client .slick-dots li {
    opacity: 100
}

section.our-client li.slick-center {
    opacity: 100
}

section.our-client .slick-slide img {
    display: inline-block;
    margin-bottom: 21px
}

section.our-client .slick-slider {
    margin-top: 16px
}

section.our-client .center.slick-initialized p {
    font-size: 15px;
    color: #fff;
    padding: 0 9px;
    line-height: 20px
}

section.our-client h5 {
    font-size: 16px;
    color: #fff;
    margin-top: 9px;
    position: relative;
    padding-left: 4px;
    padding-top: 38px
}

section.our-client h5:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 54px;
    top: -2px;
    background: #bf1e2e;
    display: block;
    left: 8px;
    display: none
}

section.our-client h6 {
    font-size: 32px;
    color: #fff;
    padding-left: 3px;
    background: 0 0;
    margin-bottom: 0;
    font-family: source sans pro,sans-serif
}

section.our-client .slick-dots li button:before {
    font-family: slick;
    font-size: 0
}

.top-slider h2 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    padding: 0
}

.inner-banner {
    width: 100%;
    min-height: 406px;
    background-size: cover!important;
    padding-top: 18%;
    text-align: left;
    color: #e6e6e6;
    background: url(//assets/css/../img/contact.jpg)
}

.inner-banner .breadcrumb {
    background-color: transparent;
    margin-top: 27px
}

.inner-banner ol.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-family: roboto slab,serif;
    font-size: 30px
}

.inner-banner .breadcrumb>.active {
    color: #fff
}

.inner-banner h1 {
    font-size: 69px;
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(255,255,255,.77);
    margin: 21px 0 0;
    font-family: source sans pro,sans-serif
}

section.contact h4 {
    padding: 15px 0 0;
    color: #2a2a2a;
    font-size: 16px;
    margin: 28px 0 24px;
    text-align: left;
    font-weight: 700;
    border-top: solid 1px #d7d7d7
}

section.contact .cont-bord {
    border: solid 1px #fff;
    text-align: center;
    padding: 0;
    background: #fff;
    color: #000
}

section.contact {
    padding: 70px 0 50px
}

section.contact .cont2 h4 {
    background: #fff;
    padding: 1px 14px 23px 0;
    color: #000;
    font-size: 20px;
    margin: 0 0 25px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: solid 1px #efefef
}

section.contact .cont2 .cont-bord {
    border: solid 1px #fff
}

.cont2 .contact-list li a {
    color: #69686a
}

.cont2 .contact-list li i {
    float: left;
    color: #0db2f0;
    text-align: center;
    font-size: 16px
}

.cont2 .contact-list li {
    padding: 20px 28px 35px;
    display: inline-block;
    background: snow;
    vertical-align: top;
    margin-right: 34px;
    border-top: solid 3px #000;
    font-weight: 500
}

section.container.inner h6 {
    color: #9e9ea0;
    font-size: 14px;
    margin: 0;
    padding: 0 0 8px 1px
}

.cont2 .social li {
    float: left;
    margin-right: 8px
}

.cont2 .social li a {
    padding: 8px 11px;
    background: #fff;
    color: #0db2f0;
    width: 39px;
    display: block;
    text-align: center;
    border: solid 1px #efefef
}

section.container.inner p {
    font-size: 14px;
    line-height: 20px;
    color: #606060
}

section.container.inner h2 {
    font-size: 40px;
    margin-left: 14px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    margin: 0 0 60px;
    position: relative;
    padding-left: 0;
    color: #004e7b;
    font-family: montserrat,sans-serif
}

section.container.inner h2 span {
    clear: both;
    display: block;
    font-size: 16px
}

section.container.inner {
    padding: 40px 0 1px
}

.bt-text ul li {
    padding: 0 0 8px
}

.bt-text ul li.first {
    padding: 0 0 8px;
    font-weight: 400;
    background-color: #fff
}

.bt-text h5 {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    color: #000
}

.bt-text ul li i {
    color: #007cc3;
    padding-right: 9px
}

.bt-text ul li.last {
    padding: 0
}

.bt-text ul {
    margin-bottom: 72px
}

section.approval {
    display: inline-block;
    width: 100%;
    padding: 0;
    background: url(//assets/css/../img/approve-bg.jpg);
    background-size: 100%
}

section.approval .right {
    padding: 24px 0 0 64px
}

section.approval .col-lg-5 {
    padding: 0;
    margin: 0
}

section.approval li {
    background: url(//assets/css/../img/list-bg.png) top left no-repeat;
    background-position: 1px 9px;
    padding-left: 18px;
    line-height: 33px
}

section.testing {
    padding: 35px 0 55px
}

section.testing li {
    background: url(//assets/css/../img/list-bg.png) top left no-repeat;
    background-position: 1px 14px;
    padding-left: 18px;
    line-height: 39px;
    border-bottom: solid 1px #d9d9d9;
    margin: 0 22px
}

section.testing h3 {
    font-size: 14px;
    background: #005596;
    padding: 16px 12px;
    color: #fff;
    margin: 0 0 19px
}

section.testing .border {
    border: solid 1px #d9d9d9
}

section.testing li.last {
    border: 0
}

section.product {
    padding: 25px 0 36px
}

section.product .product-cat li {
    line-height: 41px;
    border-bottom: solid 1px #d9d9d9
}

section.product .product-cat li a {
    font-size: 16px;
    color: #000;
    background: url(//assets/css/../img/list-bg.png) top left no-repeat;
    display: block;
    padding: 0 0 0 24px;
    background-position: 9px 16px;
    text-decoration: none
}

section.product .product-cat h2 {
    font-size: 27px;
    margin-bottom: 33px;
    background: url(//assets/css/../img/head-bg.png) no-repeat center;
    background-position: 0 46px;
    padding-bottom: 39px;
    font-weight: 900
}

.product-fc img {
    border: solid 6px #ededed
}

.product-fc {
    margin-top: 53px
}

.product-fc h4 {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 36px
}

.product-fc p {
    line-height: 18px
}

.product-fc li {
    border-bottom: 0!important
}

.product-fc .bx-wrapper {
    -moz-box-shadow: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0 0 5px transparent;
    border: 0;
    background: #fff
}

.product-fc .bx-controls-direction {
    display: none
}

.product-fc .bx-wrapper .bx-pager.bx-default-pager a:hover,.product-fc .bx-wrapper .bx-pager.bx-default-pager a.active,.product-fc .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #005596;
    border: solid 1px #005596
}

.product-fc .bx-wrapper .bx-pager.bx-default-pager a {
    background: 0 0;
    text-indent: -9999px;
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 13px;
    border: solid 1px #000
}

.product-fc h2 {
    font-size: 25px;
    margin-bottom: 33px
}

section.product .right li img {
    border: solid 5px #ededed
}

section.product .right li {
    text-align: left;
    width: 31%;
    display: inline-block;
    margin-right: 3%;
    margin-bottom: 26px
}

section.product .right li:nth-child(3n+3) {
    margin-right: 0
}

section.product .right {
    margin-top: 27px
}

section.product .right h3 {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    padding: 9px 0
}

section.product .right p {
    color: #5e626b;
    line-height: 23px
}

section.product .right .img-box {
    position: relative;
    overflow: hidden
}

section.product .right .img-box:hover .img-hover {
    margin-left: 0
}

section.product .right .img-box .img-hover {
    background: rgba(0,0,0,.7);
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 53% 0;
    margin-left: -280px
}

section.product .right .img-box .img-hover i {
    font-size: 26px
}

footer {
    background: url(/images/fotter-back.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    max-width: 1600px;
    margin: 0 auto
}

footer a {
    color: #bbb;
    font-weight: 400;
    border-bottom: unset!important;
    display: block;
    padding: 0
}

footer h3 {
    font-size: 16px;
    margin-bottom: 22px;
    color: #d8d8d8;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase
}

footer .social li {
    float: left;
    margin-right: 8px
}

footer .social li a {
    padding: 8px 11px;
    background: #000;
    color: #fff;
    width: 39px;
    display: block;
    text-align: center
}

footer .footer3 li.first i {
    float: left;
    margin-bottom: 9px
}

footer .footer3 li i {
    margin-right: 13px;
    margin-bottom: 1px;
    float: left;
    color: #111;
    font-size: 16px;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #ccc
}

footer .footer3 li p {
    margin: 0;
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    line-height: 20px
}

.copyright {
    background: #111;
    padding: 12px 0;
    text-align: left;
    color: #7d7d7d;
    font-weight: 400
}

.footer4 .form-control {
    border: solid 1px transparent;
    border-radius: 0;
    padding: 20px 10px;
    box-shadow: none;
    background: #1b1b1b;
    margin-bottom: 13px;
    border-bottom: solid 1px #3a3a3a
}

.footer4 .submit {
    background: #278b53;
    padding: 9px 21px;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 0
}

.footer1 p {
    line-height: 25px;
    font-weight: 400;
    color: #bbb;
    margin-top: 25px;
    font-size: 14px
}

.footer3 strong {
    text-transform: uppercase;
    color: #fff
}

.btn-primary:hover {
    border-color: #8ec03f
}

h2 {
    color: #191919;
    font-size: 40px
}

h6 {
    color: #9e9ea0;
    font-size: 14px;
    margin: 0
}

.footer4 textarea.form-control {
    height: 108px
}

.product.type-product .img-hover {
    position: absolute;
    top: 10px;
    width: 100%;
    background: rgba(0,0,0,.35);
    color: #fff;
    padding: 139px 0;
    left: -286px;
    text-align: center;
    border-radius: 0;
    display: none
}

h1.page-title {
    color: #000;
    font-weight: 600;
    border-bottom: solid 1px #d9d9d9;
    padding: 13px 0 11px;
    margin: 0 0 35px;
    font-size: 32px
}

select.orderby {
    padding: 10px 8px
}

.product.type-product:hover .img-hover {
    left: 10px;
    width: 93%
}

.woocommerce ul.products li {
    overflow: hidden
}

.copyright a {
    color: #2378c2;
    text-transform: uppercase
}

.slick-track li {
    position: relative;
    overflow: hidden
}

.banenrs .no-bad {
    padding: 0
}

.bx-wrapper .bx-pager-item {
    display: inline-flex
}

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

.bx-wrapper .bx-pager.bx-default-pager a {
    background: 0 0;
    border: solid 2px #fff
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: 0 0;
    width: 15px;
    height: 15px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 8px
}

section.my-product h2 {
    font-size: 40px;
    color: #fff;
    background-position-y: 39px;
    padding: 0 0 28px
}

.pro-slide li img {
    border: solid 0 #ededed;
    width: 100%;
    height: auto;
    padding: 0
}

.sec3 .product.type-product:hover .img-hover {
    left: 0;
    width: 100%
}

.sec3 .product.type-product .img-hover {
    top: 0;
    width: 51%;
    padding: 96px 0
}

.rec-pro {
    display: block;
    clear: both;
    padding: 25px 0 10px;
    background: #f4f4f4
}

.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent
}

.rec-pro .woocommerce ul.products li.product h3 {
    font-size: 18px
}

.pro-slide a {
    outline: 0;
    text-decoration: none
}

section.newslter {
    background: #fff;
    color: #fff;
    padding: 24px 0;
    position: relative;
    background-size: 100%
}

.newsico {
    font-size: 36px;
    display: inline-block;
    position: absolute;
    top: 36px
}

section.newslter input[type=text] {
    width: 76%;
    display: inline-block;
    margin: 20px 0;
    padding: 26px 14px;
    margin-right: 11px
}

section.newslter input[type=submit] {
    background: #fff;
    padding: 0 17px;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    border: 0;
    display: inline-block;
    border: solid 1px #d7d7d7;
    margin-left: -2px;
    height: 43px;
    position: relative;
    vertical-align: text-bottom;
    border-left: 0;
    position: relative
}

section.newslter .wpcf7-form-control-wrap {
    position: relative;
    display: inline-block;
    margin-top: 31px;
    width: 71%!important;
    vertical-align: text-bottom
}

section.newslter span.wpcf7-not-valid-tip {
    color: red;
    font-size: 1em;
    display: block;
    display: none
}

section.newslter h3 {
    font-size: 25px;
    text-transform: uppercase;
    margin-left: 51px;
    color: #000;
    margin: 29px 0 0;
    font-weight: 900
}

section.newslter h4 {
    font-size: 14px;
    text-transform: none;
    margin: 8px 0 12px;
    width: 98%;
    color: #000
}

h3 {
    font-family: josefin sans,sans-serif;
    font-weight: 400;
    margin: 10px 0 14px
}

.my-shop .product.type-product .img-hover {
    position: absolute;
    top: 0;
    width: 100%!important;
    background: rgba(0,0,0,.55);
    color: #fff;
    padding: 124px 5px;
    left: -289px;
    text-align: center
}

.my-shop .product.type-product:hover .img-hover {
    left: 0
}

.my-shop li.product h3 {
    font-size: 18px!important;
    color: #2e2e2e
}

.my-shop li.product p {
    font-size: 14px;
    color: #464646;
    font-weight: 500;
    margin-top: 11px
}

.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span {
    width: 49px!important;
    padding: 15px 0!important
}

.menu-item-has-children>a {
    pointer-events: none
}

.menu-item-has-children {
    cursor: pointer
}

ul.sub-menu {
    background: #f7f7f7
}

.my-menu .navbar-nav>li.last {
    margin-right: 0
}

.our-client h2 {
    background: url(//assets/css/../img/heading-bg.png) center top;
    padding: 21px 0;
    font-size: 25px;
    color: #58585a;
    font-weight: 900;
    text-transform: uppercase
}

.new-pro {
    background: #fff;
    padding: 30px 0 0;
    text-align: center;
    position: relative
}

.new-pro h2 {
    padding: 18px 0;
    font-size: 33px;
    color: #000;
    font-weight: 300;
    text-transform: initial;
    text-align: left;
    position: absolute;
    width: 22%;
    clear: both;
    display: grid;
    top: 9px;
    padding-left: 0;
    background: url(//assets/css/../img/head-bg.png) no-repeat center;
    background-position: 1px 58px
}

section.newslter h3 span {
    color: #007bc3
}

.rec-pro .nav-tabs {
    border-bottom: 0;
    margin: 0 auto;
    width: 80%
}

.rec-pro .nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover {
    border: 0 solid #ddd!important
}

.rec-pro .nav>li>a:focus,.nav>li>a:hover {
    text-decoration: none;
    background-color: #fff
}

.rec-pro .nav-tabs>li>a {
    border: 0 solid transparent
}

.home-banner img {
    display: inline-block;
    vertical-align: text-bottom;
    float: left
}

.home-banner {
    padding: 65px 15px
}

.footer3 li {
    height: auto;
    clear: both;
    margin-top: 0;
    border-bottom: unset!important;
    padding: 0 0 5px
}

.copyright .container {
    border-top: solid 1px #111;
    padding-top: 24px
}

.footer3 a {
    border: 0;
    display: inline-block;
    color: #fff;
    vertical-align: top;
    padding: 0
}

.rec-pro .nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover {
    background-color: #f4f4f4
}

.rec-pro .nav-tabs {
    margin-bottom: 34px
}

.woocommerce ul.products li.product h3 {
    display: block;
    text-align: left;
    font-size: 13px!important;
    color: #1f1f1f;
    text-transform: capitalize;
    padding: 3px 0 11px!important;
    letter-spacing: 0
}

.top-slider p {
    font-size: 19px;
    color: #fff;
    margin-top: 20px;
    text-transform: none;
    line-height: 26px;
    width: 91%;
    margin: 0 auto;
    font-family: roboto slab,serif
}

.footer2 a {
    background: url(//assets/css/../img/list-bg.png) top left no-repeat;
    background-position: 0 19px;
    padding-left: 18px
}

section.four-box h3 {
    color: #000;
    font-size: 18px;
    font-family: raleway,sans-serif;
    margin-top: 21px
}

.boxs {
    background: #f4f4f4
}

section.four-box ul li {
    width: 47%;
    display: inline-block;
    vertical-align: top;
    background: #f4f4f4;
    padding: 10px 22px;
    margin: 16px;
    border-radius: 28px
}

section.four-box {
    padding: 30px 0
}

.mid-pro {
    margin: 32px 0
}

.rec-pro h2 {
    padding: 18px 0;
    margin-bottom: 32px;
    background: url(//assets/css/../img/heading-bg.png) center top;
    font-size: 25px;
    color: #58585a;
    font-weight: 900;
    text-transform: uppercase
}

.footer1 {
    min-height: unset;
    position: relative;
    padding-top: 56px;
    padding-bottom: 0!important
}

.footer2 {
    background: #202020;
    min-height: 391px;
    padding-top: 56px
}

.footer4 {
    padding-top: 56px
}

.footer1:before {
    content: "";
    width: 50%;
    left: -50%;
    min-height: 391px;
    top: 0
}

.wlc-bg {
    margin: 0 0 10px;
    color: #faf9f9;
    position: relative;
    padding-left: 0;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 39px;
    max-width: 1600px;
    margin: 0 auto
}

.wlc-bg h6 {
    padding-left: 0
}

.wlc-bg h2:before {
    content: "";
    width: 5px;
    height: 84px;
    background: #bf1e2e;
    position: absolute;
    left: 1px;
    padding-left: 4px;
    display: none
}

.top-slider h2:before {
    display: none
}

section.summary .boxs {
    background: #000;
    text-align: center;
    padding: 25px 25px 22px;
    width: 46%;
    display: inline-block;
    margin: 0 21px 10px 0
}

section.summary .boxs2 {
    background: #fff;
    border: solid 1px #e5e5e5;
    position: relative;
    vertical-align: top
}

section.summary .boxs img {
    display: inline
}

section.summary .boxs h3 {
    color: #fff;
    margin: 17px 0 16px;
    text-transform: uppercase;
    font-size: 20px
}

section.summary .boxs2 p {
    color: #000
}

section.summary .boxs2 h3 {
    color: #000
}

section.summary .boxs2:before {
    content: "";
    width: 3px;
    height: 105px;
    background: #c01d2e;
    position: absolute;
    left: 0;
    top: 0
}

section.summary h2 {
    font-size: 32px;
    margin-left: 14px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    margin: 27px 31px
}

section.summary h2 span {
    clear: both;
    display: block;
    font-size: 16px
}

section.summary h2:before {
    content: "";
    width: 6px;
    height: 51px;
    position: absolute;
    background: #c01d2e;
    left: -17px
}

ul.products h3 {
    text-align: center;
    display: inline-block
}

.slick-dots {
    display: none!important
}

.slick-prev,.slick-next {
    top: 118%
}

.slick-prev,.slick-prev:hover,.slick-prev:focus {
    left: 18px;
    background: url(//assets/css/../img/testi-bt1.jpg) no-repeat;
    width: 31px;
    height: 30px
}

.slick-prev:before,.slick-next:before {
    display: none
}

.slick-next,.slick-next:hover,.slick-next:focus {
    background: url(//assets/css/../img/testi-bt2.jpg) no-repeat;
    width: 30px;
    height: 29px
}

section.newslter .wpcf7-form-control-wrap:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 28px;
    background: #d7d7d7;
    right: 0;
    top: 8px
}

.footer-mene li {
    display: inline-block
}

.footer-mene ul {
    text-align: right
}

.footer-mene li a {
    padding: 8px 5px;
    color: #fff2f3
}

footer h3 {
    position: relative;
    padding-left: 0;
    margin-bottom: 22px
}

footer h3:before {
    content: "";
    width: 5px;
    height: 20px;
    position: absolute;
    background: #bf1e2e;
    top: -1px;
    left: 0;
    display: none
}

.fot3 {
    padding-top: 54px;
    min-height: unset
}

.fot3 span {
    display: inline-block;
    vertical-align: top;
    color: #fff
}

.fot3 span a,.fot3 p {
    display: inline-block;
    width: 60%
}

.footer3 li.last {
    border: 0
}

.social li {
    display: inline-block
}

.social ul {
}

.social li a {
    padding: 0 12px;
    display: inline-block;
    margin-top: 0
}

section.summary {
    padding: 30px 0
}

.new-pro ul.nav.nav-tabs {
    width: 31%;
    float: right;
    margin-bottom: 44px;
    margin-top: 22px;
    position: relative
}

.rec-pro .nav>li>a:focus,.new-pro .nav>li>a:hover {
    text-decoration: none;
    background-color: rgba(255,255,255,.03)
}

.new-pro .nav-tabs>li>a:hover {
    border-color: transparent
}

.new-pro .nav-tabs>li.active>a,.new-pro .nav-tabs>li.active>a:focus,.new-pro .nav-tabs>li.active>a:hover {
    color: #fff;
    cursor: default;
    background-color: #000;
    border: 0;
    border-bottom-color: transparent;
    border-radius: 0
}

.new-pro h2 span {
    font-size: 27px;
    font-weight: 500
}

.new-pro h2:before {
    content: "";
    width: 5px;
    height: 47px;
    position: absolute;
    background: #bf1e2e;
    top: 15px;
    display: none
}

.new-pro ul.nav.nav-tabs:after {
    width: 100%;
    content: "";
    height: 20px;
    position: absolute
}

.nav-tabs>li>a {
    color: #000
}

section.logo-sec.inpage {
    position: static;
    border-bottom: solid 2px #bf1e2e
}

section.logo-sec.inpage .top-left {
    margin-top: 26px
}

section.logo-sec.inpage .top-left {
    margin-top: 26px
}

section.logo-sec.inpage .fadeinright {
    margin-top: 32px
}

section.container.inner h4 {
    margin: 0;
    clear: both;
    display: block;
    font-size: 24px;
    color: #000;
    padding-left: 0;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: source sans pro
}

section.container.inner h2:before {
    content: "";
    width: 120px;
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #000
}

.my-menu .navbar-default .navbar-nav a:hover {
    color: #33292a
}

.summary.entry-summary a.btn.btn-red {
    background: #bf1e2e!important;
    padding: 15px 19px!important;
    border-radius: 0!important;
    margin-top: 15px!important;
    border: 0;
    color: #fff!important;
    text-transform: capitalize;
    font-size: 16px
}

div#tab-description h3 {
    color: #595d61;
    margin: 28px 0 12px
}

div#tab-description p {
    line-height: 24px
}

div#tab-description table {
    margin-top: 36px;
    width: 100%
}

div#tab-description table th {
    text-align: left;
    padding: 21px 8px;
    color: #fff;
    background-color: #95b3d7
}

div#tab-description table td {
    padding: 11px 8px;
    text-align: left
}

div#tab-description table tr:nth-child(odd) {
    background-color: #c6d9f0
}

div#tab-description ul li {
    line-height: 24px
}

div#tab-description img {
    width: 60%;
    margin-top: 17px
}

div#tab-description table.gg-tbl td {
    background-color: #fff
}

div#tab-description .t-tbl td {
    background-color: #fff
}

div#tab-description .t-tbl td:nth-child(odd) {
    width: 23%;
    font-weight: 700
}

div#tab-description .t-tbl td {
    border-bottom: 1px solid;
    border-bottom-color: #f3f0f0
}

div#product_inq inpute {
    padding: 6px 3px
}

div#product_inq .wpcf7-text {
    padding: 8px 10px;
    width: 100%;
    font-weight: 300
}

div#product_inq label {
    width: 100%
}

div#product_inq .wpcf7-textarea {
    width: 100%;
    font-weight: 300;
    padding: 9px 11px
}

div#product_inq .wpcf7-submit {
    background: #bf1e2e;
    padding: 12px 46px;
    color: #fff;
    text-transform: uppercase;
    border: 0
}

.page-id-409 section.summary {
    padding: 22px 0;
    background: #f7f7f7;
    margin-top: 48px
}

.page-id-409 section.summary .boxs2 {
    background: #f7f7f7
}

.page-id-409 section.summary .boxs {
    padding: 35px 25px 32px
}

.page-id-409 section.summary .boxs {
    color: #fff;
    vertical-align: top
}

.summary.entry-summary p {
    line-height: 25px
}

section.logo-sec .container:before {
    content: "";
    width: 75%;
    height: 100px;
    background: #fff;
    position: absolute;
    left: 0;
    display: none
}

section.logo-sec .container:after {
    content: "";
    width: 23.6%;
    height: 100px;
    background: #171717;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -9;
    display: none
}

.logo-sec .social a {
    color: #fff;
    font-size: 15px
}

.top-slider h3 {
    color: #fff
}

.new-pro .product.type-product:hover .img-hover {
    left: 1px;
    width: 99%
}

.new-pro .product.type-product .img-hover {
    top: 0;
    padding: 131px 0
}

.new-pro .pro-slide .slick-prev,.new-pro .pro-slide .slick-next {
    top: 40%
}

.new-pro .pro-slide .slick-prev {
    left: -27px
}

.new-pro .slick-next,.new-pro .slick-next:hover,.new-pro .slick-next:focus {
    right: -24px!important
}

.our-client .slick-next,.slick-next:hover,.slick-next:focus {
    left: 53px
}

.my-product .pro-slide .slick-prev,.pro-slide .slick-next {
    top: 41%;
    width: 34px;
    height: 34px;
    padding: 0;
    z-index: 99
}

.my-product .pro-slide .slick-prev,.my-product .pro-slide .slick-prev:focus,.my-product .pro-slide .slick-prev:hover {
    background: url(//assets/css/../img/cate-left.jpg) no-repeat!important;
    left: -47px
}

.my-product .pro-slide .slick-next,.my-product .pro-slide .slick-next:focus,.my-product .pro-slide .slick-next:hover {
    background: url(//assets/css/../img/cate-right.jpg) no-repeat!important;
    left: 100%
}

.page-id-409 section.container.inner {
    margin-bottom: 52px
}

.breadcrumb>li {
    display: inline-block;
    color: #fff;
    font-family: roboto slab,serif;
    font-size: 30px
}

section.map {
    position: relative
}

.cont2 {
    position: absolute;
    bottom: -12px
}

.services .news-box {
    background: #f3f3f3;
    text-align: left
}

section.services li {
    width: 32%;
    list-style: none;
    padding: 14px 10px;
    display: inline-block;
    margin-right: 12px
}

.services .news-box a {
    max-width: 362px;
    background: #0a4d8d;
    padding: 12px 28px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 7px
}

section.our-client h5:before {
    content: "";
    position: absolute;
    width: 55px;
    height: 54px;
    background: url(//assets/css/../img/test-quate.png) top no-repeat;
    display: block;
    top: -18px
}

section.my-product h4 {
    color: #fff;
    background: url(//assets/css/../img/head-bg.png) no-repeat center;
    padding-bottom: 75px;
    display: block;
    background-position-y: 62px;
    letter-spacing: 8px;
    font-size: 22px;
    font-weight: 300
}

section.wlc-bg i {
    display: inline-block;
    width: 76px;
    margin-top: 13px
}

section.wlc-bg .txt {
    display: inline-block;
    width: 87%;
    vertical-align: top;
    margin-bottom: 25px;
    text-align: left
}

section.wlc-bg .txt h4 {
    letter-spacing: 7px;
    color: #282828;
    font-weight: 600;
    margin-bottom: 10px
}

.top-slider a.readmore {
    background: #fff;
    padding: 12px 26px;
    display: inline-block;
    color: #171717;
    text-transform: uppercase;
    border: solid 1px #fff;
    text-decoration: none;
    float: none;
    text-shadow: none;
    margin-right: 10px;
    margin-top: 22px
}

.left-cate h3 {
    text-transform: uppercase;
    color: #2a2a2a;
    font-size: 18px;
    font-weight: 700;
    font-family: source sans pro,sans-serif;
    background: #f5f5f5;
    padding: 16px 11px;
    margin-bottom: 0
}

.left-cate ul {
    background: #fafafa
}

.left-cate ul li a {
    border-bottom: solid 1px #ebebeb;
    display: inline-block;
    width: 87%;
    padding: 11px 0;
    margin: 0 15px
}

.wo-search input#woocommerce-product-search-field {
    background: #fff;
    padding: 10px 13px;
    border: solid 1px #ebebeb;
    width: 100%;
    margin-bottom: 35px
}

.wo-search input[type=submit] {
    font-size: 0;
    padding: 11px 14px;
    position: absolute;
    top: 0;
    right: 15px;
    border: 0;
    background: url(//assets/css/../img/srch.png) top left no-repeat;
    display: inline-block;
    margin-top: 17px
}

.left-cate {
    margin-top: 6px
}

.news h3 {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    background: url(//assets/css/../img/head-bg2.png) no-repeat left;
    background-position: 3px 40px;
    padding-bottom: 20px;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.news h5 {
    color: #000;
    font-size: 18px!important;
    line-height: 22px
}

.inner .news p {
    color: #4f4f4f!important;
    line-height: 23px!important;
    font-size: 16px!important
}

.recu .first {
    background: #f8f8f8;
    padding: 15px 16px;
    font-weight: 600
}

.recu span {
    width: 17%;
    display: inline-block;
    color: #000;
    vertical-align: top
}

.recu span+span {
    width: 10%
}

.recu span+span+span {
    width: 10%
}

.recu span+span+span+span {
    width: 21%
}

.recu span+span+span+span+span {
    width: 40%
}

.recu li .first {
    background: #fff;
    padding: 0;
    font-weight: 400
}

.recu li li {
    padding: 12px 0
}

.recu li {
    padding: 20px 0
}

.contact-list li strong {
    font-weight: 600
}

ul.contact-list .txt {
    font-weight: 600;
    text-align: left;
    padding-left: 27px
}

ul.contact-list .txtt {
    border-top: solid 1px #d7d7d7;
    padding-top: 22px;
    margin-top: 22px
}

section.container.contact h2 {
    position: relative;
    margin: 0 0 50px;
    padding: 0;
    font-weight: 400
}

section.container.contact h2:after {
    content: "";
    width: 180px;
    height: 40px;
    position: absolute;
    top: 51px;
    left: 0
}

.news .txt {
    border-bottom: solid 1px #eae6e6;
    padding-bottom: 35px;
    margin-bottom: 30px
}

.knowledge h3 {
    color: #000
}

.knowledge h2 {
    margin: 0 0 35px!important
}

.knowledge h2:before {
    background: 0 0!important
}

.inner.news h2 {
    margin: 0 0 35px!important
}

.inner.news h2:before {
    background: 0 0!important
}

.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover {
    color: #484040;
    background-color: transparent
}

.plant-pg p {
    margin-top: -21px;
    font-size: 23px!important;
    font-family: josefin sans,sans-serif;
    font-weight: 700;
    color: #000!important;
    line-height: 30px!important
}

.page-id-1239 h3 {
    margin-top: -5px
}

.page-id-1229 h3 {
    margin-top: -5px
}

.page-id-1270 .pg-lst li {
    line-height: 24px
}

.page-id-1251 h3 {
    margin-top: -5px
}

.page-id-1287 h3 {
    margin-top: -5px
}

.page-id-1327 h3 {
    margin-top: -5px
}

.page-id-1306 h3 {
    margin-top: -5px
}

.page-id-1324 h3 {
    margin-top: -5px
}

.sp-pg h3 {
    color: #2e2e2e
}

.sp-pg h2:before {
    content: "";
    top: 51px
}

.sp-pg h2.first:before {
    content: "";
    top: 84px!important
}

.sp-pg h2.last:before {
    content: "";
    top: 84px!important
}

.sp-pg p {
    margin-bottom: 16px!important
}

.min-sec h2:before {
    content: "";
    top: 84px!important
}

.newslter div.wpcf7-validation-errors {
    border: 2px solid #f7e700;
    color: #000
}

.iq-form a.btn.btn-red {
    position: fixed;
    right: -69px;
    float: right;
    top: 45%;
    z-index: 9999;
    background: #278b53;
    font-size: 24px;
    transform: rotate(270deg);
    border-radius: 0;
    font-weight: 500;
    color: #fff!important;
    border-color: #278b53
}

.role-form {
    z-index: 9999;
    position: relative
}

.modal-dialog {
    width: auto
}

.iq-form input.wpcf7-form-control.wpcf7-text,.iq-form textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    float: left;
    border: 1px solid #efefef;
    padding: 10px;
    margin: 10px 0;
    color: #000;
    resize: none;
    font-size: 14px;
    font-weight: 400
}

.iq-form textarea.wpcf7-form-control.wpcf7-textarea {
    height: 125px
}

.iq-form .role-form h4 {
    font-size: 23px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff!important
}

.iq-form input.wpcf7-form-control.wpcf7-submit {
    background-color: #ca3f4e;
    color: #fff;
    border: 0;
    padding: 10px 40px;
    font-family: raleway;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    margin: 0
}

.iq-form .modal-content {
    width: 353px;
    margin: 55px auto;
    background: rgba(51,51,51,.88);
    color: #fff
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .9!important;
    background: rgba(255,255,255,.89)
}

.close {
    color: #fff;
    opacity: .9
}

.inq-btn {
    background: 0 0;
    padding: 9px 21px;
    text-transform: uppercase;
    display: inline-block;
    color: #fe9c53!important;
    text-decoration: none;
    border: 0;
    border: solid 3px #fe9c53;
    border-radius: 0
}

.wlc-bg h2 strong {
    color: #273773!important;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 42px;
    text-transform: uppercase
}

section.home-pro {
    background: #f3f3f3;
    padding: 27px 0;
    text-align: center
}

section.home-pro h2 strong {
    color: #0a4d8d
}

section.home-pro h2 {
    font-family: source sans pro,sans-serif
}

section.home-pro h3 {
    font-family: source sans pro,sans-serif;
    text-transform: capitalize;
    font-weight: 100;
    letter-spacing: 7px;
    margin-bottom: 45px;
    background: url(//assets/css/../img/head-bg2.png) no-repeat center;
    background-position-y: 47px;
    padding-bottom: 46px
}

.woocommerce ul.products li.product {
    background: #f9f9f9;
    padding: 10px 8px 9px!important
}

section.services h2 strong {
    color: #0a4d8d
}

.my-shop h2 {
    font-family: source sans pro,sans-serif;
    font-size: 60px;
    color: #0a4d8d;
    line-height: 42px;
    background: url(//assets/css/../img/head-bg2.png) no-repeat left;
    background-position-y: 123px;
    padding-bottom: 81px
}

.my-shop h2 span {
    font-size: 40px;
    color: #202020
}

.my-shop h1.page-title {
    display: none
}

.my-shop form.woocommerce-ordering {
    position: absolute;
    right: 0;
    top: 70px
}

.page-template-about .inner-banner {
    background: url(//assets/css/../img/about-banner.jpg)
}

.post-type-archive .inner-banner {
    background: url(//assets/css/../img/product-banner.jpg)
}

.my-menu .navbar-nav>li.active a {
    background: #278b53!important;
    color: #fff!important
}

a.readmore.blu-bt {
    background: #0a4d8d;
    color: #fff;
    border: #0a4d8d
}

.bx-pager.bx-default-pager {
    display: none!important
}

.blog-left {
    float: left;
    width: 62%
}

.blog-right {
    float: right;
    margin-bottom: 20px;
    width: 30.5%
}

.blog-content-left {
    float: left;
    min-height: 264px;
    position: relative;
    width: 27%
}

.blog-content-right {
    float: right;
    width: 67.7%;
    margin-top: 2px
}

.blog-thumb {
    background-color: #ec008c;
    border-radius: 5px;
    float: left;
    height: 100%;
    left: 0;
    position: absolute;
    overflow: hidden;
    top: 0;
    width: 100%
}

.blog-posted-info>li {
    border-right: 1px solid #dedede;
    color: #747373;
    display: inline-block;
    float: left;
    font-family: poppins;
    font-size: 12px;
    font-weight: 300;
    margin-right: 20px;
    padding-right: 20px;
    font-family: source sans pro,sans-serif
}

.blog-posted-info {
    float: left;
    margin-bottom: 20px;
    width: 100%
}

.blog-posted-info li:last-child {
    border: 0
}

.blog-content-right h3 {
    color: #160b10;
    float: left;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 17px;
    width: 75%
}

.blog-content-right h3 a {
    color: #160b10;
    text-transform: capitalize
}

.blog-content-right p {
    clear: both;
    display: block;
    float: left;
    font-family: poppins;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 22px;
    width: 100%
}

.blog-readmore {
    background-color: #278b53;
    border-radius: 40px;
    color: #fff;
    float: left;
    font-size: 14px;
    font-weight: 300;
    padding: 13px 30px
}

.blog-socialshare {
    float: left;
    margin-left: 13px;
    margin-top: 3px;
    min-height: 50px;
    width: 54%
}

.bloghsare-main {
    display: inline-block;
    float: left
}

.sociallinks {
    display: inline-block;
    width: 0
}

.sociallinks li {
    float: left
}

.blog-socialshare i {
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #231f20;
    font-size: 16px;
    height: 38px;
    margin: 0 2px;
    padding: 10px 0;
    text-align: center;
    width: 38px
}

.sociallinks li:hover i {
    color: #fff
}

.sociallinks li:first-child i {
    border-color: #234e9a
}

.sociallinks li:first-child:hover i {
    background-color: #234e9a
}

.sociallinks li:nth-child(2) i {
    border-color: #3baddd
}

.sociallinks li:nth-child(2):hover i {
    background-color: #3baddd
}

.sociallinks li:nth-child(3) i {
    border-color: #e31e28
}

.sociallinks li:nth-child(3):hover i {
    background-color: #e31e28
}

.sociallinks li:nth-child(4) i {
    border-color: #0b81b8
}

.sociallinks li:nth-child(4):hover i {
    background-color: #0b81b8
}

.sociallinks li:nth-child(5) i {
    border-color: #ee485d
}

.sociallinks li:nth-child(5):hover i {
    background-color: #ee485d
}

.sociallinks {
    overflow: hidden;
    position: absolute;
    transition: all .6s ease 0s;
    width: 0
}

.sociallinks.animate {
    overflow: hidden;
    position: relative;
    width: auto
}

.recent-posts h2 {
    color: #160b10;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 7px
}

.rp-left {
    float: left;
    width: 30%
}

.rp-right {
    float: right;
    width: 62%;
    margin-bottom: 15px
}

.re-thumb {
    background-color: #6d6d6d;
    border-radius: 4px;
    min-height: 102px;
    width: 104px;
    position: relative;
    overflow: hidden
}

.rp-right strong a {
    color: #160b10;
    float: left;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    width: 100%
}

.recent-posts li {
    border-bottom: 1px solid #e2e2e2;
    float: left;
    padding: 19px 0;
    position: relative;
    width: 100%;
    list-style: none
}

.recent-posts li::after {
    background-color: #056839;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 33px
}

.blog-cols {
    float: left;
    width: 100%;
    margin-top: 30px
}

.blog-row {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 28px
}

.fb-sidebar {
    float: left;
    width: 100%;
    background-color: #f1f1f1;
    padding: 20px;
    margin-top: 30px;
    border-radius: 7px
}

.fb-sidebar h4 {
    font-size: 14px;
    font-family: poppins;
    text-align: center;
    color: #222;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 8px 0;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase
}

.bloginner-banner {
    float: left;
    width: 100%;
    background-color: #6d6d6d;
    height: 262px;
    margin-bottom: 20px;
    border-radius: 7px;
    overflow: hidden;
    position: relative
}

.hentry .blog-left p {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.6;
    font-family: poppins;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: left
}

.hentry .blog-left h2 {
    color: #160b10;
    font-size: 22px;
    line-height: 1.6;
    font-family: poppins;
    font-weight: 400;
    margin-bottom: 10px
}

.hentry .blog-left h4,.hentry .blog-left h3 {
    color: #160b10;
    font-size: 18px;
    line-height: 1.6;
    font-family: poppins;
    font-weight: 400;
    margin-bottom: 10px;
    font-weight: 600
}

.blog .blog-socialshare {
    margin-left: 0;
    margin-top: 20px
}

.bloginner-banner img {
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto
}

.blog-content-left .blog-thumb img {
    position: absolute;
    width: auto!important;
    height: auto!important;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto;
    min-height: 100%;
    max-width: unset;
    max-height: 100%
}

section.container.inner .rp-right p {
    font-size: 14px
}

.re-thumb img {
    bottom: -100%;
    left: -100%;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%
}

.blog-socialshare {
    display: none!important
}

.single-left {
    float: left;
    width: 67%
}

.single-right {
    float: right;
    width: 28%
}

.single-right .m-catt {
    width: 100%
}

.single-cover {
    height: 360px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.single-cover img {
    bottom: -100%;
    height: auto;
    left: -100%;
    margin: auto;
    max-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%
}

.single .fb-sidebar {
    margin-top: 0
}

#respond {
    display: none
}

.edit-link {
    display: none
}

.entry-footer {
    background-color: transparent
}

.blog-readmore:hover {
    color: #fff
}

.blog-readmore:hover {
    color: #fff!important
}

section.container.inner p {
    font-family: source sans pro,sans-serif
}

@media all and (max-width: 1199px) {
    section.services li {
        width:28%
    }

    section.services img {
        border: solid 3px #d1d2d4;
        width: 100%
    }

    div.wpcf7 {
        margin: 0;
        padding: 0 0 31px
    }

    .my-product .pro-slide .slick-next,.my-product .pro-slide .slick-next:focus,.my-product .pro-slide .slick-next:hover {
        left: 96%
    }

    .my-product .pro-slide .slick-prev,.my-product .pro-slide .slick-prev:focus,.my-product .pro-slide .slick-prev:hover {
        left: -14px
    }

    .top-slider .carousel-caption {
        bottom: 87px
    }

    section.summary .boxs {
        min-height: 270px
    }

    .nav>li>a {
        position: relative;
        display: block;
        padding: 10px 12px
    }

    .slick-dotted.slick-slider {
        margin-bottom: -7px
    }

    section.our-client .slick-slider {
        margin-top: 13px
    }

    .slick-prev,.slick-next {
        top: 96%
    }

    .bx-wrapper .bx-pager-item {
        display: table-cell
    }

    .home h6 {
        background-position-y: 61px
    }

    section.logo-sec.inpage .top-left {
        margin-top: -17px
    }

    .inner-banner {
        background-size: cover!important
    }

    .top-slider h1 {
        font-weight: 800;
        font-size: 44px
    }

    section.home img.img-responsive {
        position: static
    }

    .product.type-product .img-hover {
        padding: 104px 0
    }

    .sec3 .product.type-product .img-hover {
        padding: 74px 0
    }

    .product.type-product .img-hover {
        left: -349px;
        padding: 115px 5px!important
    }

    .home h6 {
        font-size: 45px;
        line-height: 45px
    }

    .rec-pro .nav-tabs {
        width: 95%
    }

    .pro-slide h3 {
        font-size: 12px
    }

    section.services img {
        max-width: 100%
    }

    section.services li {
        margin-right: 10px
    }

    .footer-mene ul {
        text-align: center;
        margin-top: 8px
    }

    .copyright {
        text-align: center
    }

    section.container.inner h2:before {
        display: none
    }

    section.container.inner h2 {
        margin: 0 0 31px
    }

    h1.page-title {
        padding: 0 0 11px
    }

    .woocommerce ul.products li.product h3 {
        height: 52px
    }

    .plant-pg p {
        font-size: 19px!important
    }

    section.services h6 {
        margin-bottom: 10px
    }
}

@media all and (max-width: 991px) {
    .top-slider .carousel-caption {
        bottom:96px;
        display: none
    }

    section.top {
        position: static
    }

    section.logo-sec {
        position: static
    }

    .top-slider {
        top: 1px
    }

    .product.type-product .img-hover {
        padding: 126px 5px!important
    }

    .top-slider h1 {
        font-size: 35px
    }

    .sec3 .product.type-product .img-hover {
        padding: 143px 0
    }

    .sec3 .product.type-product .img-hover {
        padding: 194px 0
    }

    section.summary .boxs {
        width: 45%;
        vertical-align: top;
        margin-top: 32px;
        margin-bottom: 0;
        min-height: 249px
    }

    section.our-client {
        padding: 37px 0 58px 1px
    }

    .new-pro h2 {
        width: 100%
    }

    .new-pro ul.nav.nav-tabs {
        width: 100%;
        margin-top: 112px
    }

    .wlc-bg h2 {
        margin: 39px 0 12px;
        font-size: 20px!important
    }

    section.newslter input[type=submit] {
        height: 43px
    }

    .copyright {
        text-align: center
    }

    .footer-mene ul {
        text-align: center;
        margin-top: 11px
    }

    .home h6 {
        line-height: 48px
    }

    .top-left {
    }

    .top-right {
    }

    .top-slider .bx-pager.bx-default-pager {
        top: 89%
    }

    section.services h6 {
        margin-bottom: 25px
    }

    section.services li {
        width: 31%
    }

    .inner-banner {
        min-height: auto;
        padding-top: 15px;
        padding-bottom: 15px
    }

    .logo img {
        margin: 10px auto
    }

    .my-shop {
        padding: 0 35px
    }
}

@media all and (max-width: 767px) {
    .inner-banner h1 {
        font-size:30px
    }

    .navbar-default .navbar-collapse,.navbar-default .navbar-form {
        border-color: #e7e7e7;
        position: relative;
        z-index: 999
    }

    .home h6 {
        background: 0 0
    }

    .top-slider .carousel-caption {
        bottom: 26px;
        display: none
    }

    .top-slider p {
        font-size: 15px
    }

    section.top {
        height: auto;
        text-align: center
    }

    .top-slider h1 {
        font-size: 26px
    }

    .my-menu {
        height: 0
    }

    section.summary .boxs {
        width: 100%;
        vertical-align: top
    }

    section.logo-sec.inpage .fadeinright {
        height: 0;
        z-index: 99
    }

    .product.type-product .img-hover {
        padding: 166px 5px!important
    }

    section.logo-sec.inpage .top-left {
        margin-top: -39px
    }

    .navbar-default .navbar-toggle {
        border-color: #000;
        background: #000
    }

    .my-menu .navbar-nav>li {
        width: 100%;
        background: #000
    }

    .my-menu .navbar-nav>li>a,.navbar-nav>.active>a {
        text-transform: uppercase;
        padding: 12px;
        color: #fff!important
    }

    .navbar-toggle {
        margin-top: -89px
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff
    }

    .product.type-product .img-hover {
        padding: 156px 0
    }

    .sec3 .product.type-product .img-hover {
        padding: 157px 0
    }

    .pro-slide .slick-prev {
        left: -5px;
        z-index: 999999
    }

    .pro-slide .slick-next {
        right: 1px
    }

    .wlc-bg h2 {
        margin: 0 0 10px;
        font-size: 25px;
        text-align: center!important;
        border-left: unset!important
    }

    section.summary {
        padding: 30px 0;
        margin-top: 150px
    }

    .top-slider .carousel-caption {
        display: block
    }

    section.services li {
        width: 80%
    }

    .left-cate {
        z-index: -1
    }
}

@media all and (max-width: 600px) {
    .top-slider .carousel-caption {
        display:none
    }

    .my-menu {
        height: 0;
        z-index: 9999;
        position: relative
    }

    .top-slider .bx-pager.bx-default-pager {
        top: 72%
    }

    .navbar-toggle {
        margin-top: -105px
    }

    section.product {
        padding: 25px 15px 36px
    }

    section.logo-sec {
        top: 0
    }

    .top-slider h1 {
        font-size: 29px
    }

    .top-slider p {
        font-size: 18px;
        line-height: 21px
    }
}

@media all and (max-width: 480px) {
    .top-left {
        width:100%
    }

    .top-right {
        width: 100%
    }

    .top-left li {
        width: 100%
    }

    .navbar-toggle {
        margin-top: -108px
    }

    .navbar-nav {
        margin: 34.5px -15px;
        z-index: 99999
    }

    section.logo-sec {
        top: -5px
    }

    .product.type-product .img-hover {
        padding: 107px 0
    }

    .sec3 .product.type-product .img-hover {
        padding: 107px 0
    }
}

@media all and (max-width: 430px) {
    .inner-banner h1 {
        font-size:49px
    }

    .new-pro h2 span {
        font-size: 24px;
        font-weight: 500
    }

    .product.type-product .img-hover {
        padding: 98px 0
    }

    .woocommerce ul.products li.product,.woocommerce-page ul.products li.product,.woocommerce-page[class*=columns-] ul.products li.product,.woocommerce[class*=columns-] ul.products li.product {
        width: 100%!important
    }

    .sec3 .product.type-product .img-hover {
        padding: 108px 0
    }

    .social ul {
        margin: 0 auto;
        float: none;
        display: table
    }

    section.logo-sec {
        top: 0
    }

    .top-slider {
        top: 0
    }

    .top-slider p {
        font-size: 18px;
        line-height: 21px;
        display: none
    }

    section.summary {
        margin-top: 179px
    }

    .logo img {
    }

    .wlc-bg {
        padding: 16px 0 20px
    }

    section.newslter .wpcf7-form-control-wrap {
        width: 55%!important
    }

    .navbar-default .navbar-collapse,.navbar-default .navbar-form {
        top: -115px;
        border: 0
    }

    .my-product .pro-slide .slick-next,.my-product .pro-slide .slick-next:focus,.my-product .pro-slide .slick-next:hover {
        left: 91%
    }

    .navbar-toggle {
        margin-top: -207px
    }

    .top-left {
        float: none;
        clear: both;
        display: inline-block;
        text-align: center
    }

    .iq-form .modal-content {
        max-width: 100%
    }
}

.fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    vertical-align: top
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 8020
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.fancybox-opened {
    z-index: 8030
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0,0,0,.5);
    -moz-box-shadow: 0 10px 25px rgba(0,0,0,.5);
    box-shadow: 0 10px 25px rgba(0,0,0,.5)
}

.fancybox-outer,.fancybox-inner {
    position: relative
}

.fancybox-inner {
    overflow: hidden
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scroll99ing: touch
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap
}

.fancybox-image,.fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span {
    background-image: url(//assets/css/../img/fancybox_sprite.png)
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: .8;
    cursor: pointer;
    z-index: 8060
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url(//assets/css/../img/fancybox_loading.gif) center center no-repeat
}

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url(//assets/css/../img/blank.gif);
    -webkit-tap-highlight-color: transparent;
    z-index: 8040
}

.fancybox-prev {
    left: 0
}

.fancybox-next {
    right: 0
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px
}

.fancybox-nav:hover span {
    visibility: visible
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible!important
}

.fancybox-lock {
    overflow: visible!important;
    width: auto
}

.fancybox-lock body {
    overflow: hidden!important
}

.fancybox-lock-test {
    overflow-y: hidden!important
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url(//assets/css/../img/fancybox_overlay.png)
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll99
}

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-opened .fancybox-title {
    visibility: visible
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: 0 0;
    background: rgba(0,0,0,.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #fff;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff
}

.fancybox-title-inside-wrap {
    padding-top: 10px
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0,0,0,.8)
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
    #fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span {
        background-image:url(//assets/css/fancybox_sprite@2x.png);
        background-size: 44px 152px
    }

    #fancybox-loading div {
        background-image: url(//assets/css/fancybox_loading@2x.gif);
        background-size: 24px 24px
    }
}

@media screen {
    * {
        margin: 0;
        padding: 0
    }

    .screen-reader-text {
        position: absolute;
        left: -9999px;
        top: -9999px
    }

    .clear {
        clear: both
    }

    .group:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0
    }

    * html .group,*:first-child+html .group {
        zoom:1}

    .slick-track li {
        margin: 0;
        padding: 10px;
        display: inline-block!important
    }

    .pro-slide li ul li {
        outline: 0;
        color: #5e626b;
        display: inline-block!important;
        width: 100%!important;
        margin: 4px 0;
        padding: 0
    }

    p {
        margin: 0
    }

    ul,ol {
        margin: 0
    }

    ol.commentlist {
        list-style: none
    }

    ol.commentlist li.comment {
        border-bottom: 1px dotted #666;
        padding: 10px
    }

    ol.commentlist li.comment div.vcard cite.fn {
        font-style: normal
    }

    ol.commentlist li.comment div.vcard img.avatar {
        float: right;
        margin: 0 0 10px 10px
    }

    ol.commentlist li.comment div.comment-meta {
        font-size: 10px
    }

    ol.commentlist li.comment div.comment-meta a {
        color: #ccc
    }

    ol.commentlist li.comment div.reply {
        font-size: 11px
    }

    ol.commentlist li.comment div.reply a {
        font-weight: 700
    }

    ol.commentlist li.comment ul.children {
        list-style: none;
        margin: 10px 0 0
    }

    ol.commentlist li.comment ul.children li.depth-2 {
        border-left: 5px solid #555;
        margin: 0 0 10px 10px
    }

    ol.commentlist li.comment ul.children li.depth-3 {
        border-left: 5px solid #999;
        margin: 0 0 10px 10px
    }

    ol.commentlist li.comment ul.children li.depth-4 {
        border-left: 5px solid #bbb;
        margin: 0 0 10px 10px
    }

    ol.commentlist li.even {
        background: #fff
    }

    ol.commentlist li.odd {
        background: #f6f6f6
    }

    ol.commentlist li.parent {
        border-left: 5px solid #111
    }
}

@media print {
    .do-not-print {
        display: none
    }

    #comments {
        page-break-before: always
    }

    body {
        width: 100%!important;
        margin: 0!important;
        padding: 0!important;
        line-height: 1.4;
        word-spacing: 1.1pt;
        letter-spacing: .2pt;
        font-family: Garamond,times new roman,serif;
        color: #000;
        background: 0 0;
        font-size: 12pt
    }

    h1,h2,h3,h4,h5,h6 {
        font-family: Helvetica,Arial,sans-serif
    }

    h1 {
        font-size: 18pt
    }

    h2 {
        font-size: 18pt
    }

    h3 {
        font-size: 18pt
    }

    h4,h5,h6 {
        font-size: 12pt
    }

    code {
        font: 10pt Courier,monospace
    }

    blockquote {
        margin: 1.3em;
        padding: 1em
    }

    img {
        display: block;
        margin: 1em 0
    }

    a img {
        border: 0
    }

    table {
        margin: 1px;
        text-align: left
    }

    th {
        border-bottom: 1px solid #333;
        font-weight: 700
    }

    td {
        border-bottom: 1px solid #333
    }

    th,td {
        padding: 4px 10px 4px 0
    }

    caption {
        background: #fff;
        margin-bottom: 2em;
        text-align: left
    }

    thead {
        display: table-header-group
    }

    tr {
        page-break-inside: avoid
    }

    a {
        text-decoration: none;
        color: #000
    }
}

section.container.inner p {
    font-size: 16px;
    line-height: 20px;
    color: #606060;
    font-weight: 300
}

.news h3 {
    margin: 0 0 2px!important
}

img.wp-smiley,img.emoji {
    display: inline!important;
    border: 0!important;
    box-shadow: none!important;
    height: 1em!important;
    width: 1em!important;
    margin: 0 .07em!important;
    vertical-align: -.1em!important;
    background: 0 0!important;
    padding: 0!important
}

div.wpcf7 {
    margin: 0;
    padding: 0
}

div.wpcf7-response-output {
    margin: 2em .5em 1em;
    padding: .2em 1em
}

div.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14
}

div.wpcf7-mail-sent-ng {
    border: 2px solid red
}

div.wpcf7-spam-blocked {
    border: 2px solid orange
}

div.wpcf7-validation-errors {
    border: 2px solid #f7e700
}

.wpcf7-form-control-wrap {
    position: relative
}

span.wpcf7-not-valid-tip {
    color: red;
    font-size: 1em;
    display: block
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 100;
    border: 1px solid red;
    background: #fff;
    padding: .2em .8em
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em
}

span.wpcf7-list-item-label::before,span.wpcf7-list-item-label::after {
    content: " "
}

.wpcf7-display-none {
    display: none
}

div.wpcf7 .ajax-loader {
    visibility: hidden;
    display: inline-block;
    background-image: url(//www.ewbotanicals.com/wp-content/plugins/contact-form-7/includes/css/../../images/ajax-loader.gif);
    width: 16px;
    height: 16px;
    border: 0;
    padding: 0;
    margin: 0 0 0 4px;
    vertical-align: middle
}

div.wpcf7 .ajax-loader.is-active {
    visibility: visible
}

div.wpcf7 div.ajax-error {
    display: none
}

div.wpcf7 .placeheld {
    color: #888
}

div.wpcf7 .wpcf7-recaptcha iframe {
    margin-bottom: 0
}

div.wpcf7 input[type=file] {
    cursor: pointer
}

div.wpcf7 input[type=file]:disabled {
    cursor: default
}

.wd_error {
    border-color: #dd3d36!important
}

.wd_updated {
    border-color: #7ad03a!important
}

.wd_error,.wd_updated {
    background: #fff none repeat scroll99 0 0;
    border-left: 4px solid #fff;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
    margin: 5px 0 2px;
    padding: 1px 12px
}

.wds_more {
    font-size: 12px
}

div[id^=wds_container] * {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1
}

div[id^=wds_container] p {
    padding: 0!important;
    margin: 0!important
}

div[id^=wds_container] video {
    max-width: none!important;
    margin: 0!important;
    padding: 0!important
}

.wds_layer a,.wds_layer a:hover {
    color: inherit!important;
    font-size: inherit!important;
    font-style: inherit!important;
    font-weight: inherit!important;
    text-decoration: none
}

.wds_loading_img {
    border: 0!important;
    float: none;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    border: medium!important
}

.wds_loading {
    text-align: center;
    height: 150px;
    margin-top: 60px
}

div[id^=wds_container] .wds_btn_cont {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%
}

div[id^=wds_container] .wds_contTableCell {
    display: table-cell
}

div[id^=wds_container] .wds_contTable {
    display: table
}

div[id^=wds_container] .wds_left_btn_cont,div[id^=wds_container] .wds_right_btn_cont,div[id^=wds_container] .wds_pp_btn_cont {
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: middle;
    z-index: 150
}

div[id^=wds_container] .wds_left_btn_cont {
    margin-left: 10px
}

div[id^=wds_container] .wds_right_btn_cont {
    margin-right: 10px
}

.wds_preview_cont1 {
    display: table;
    height: 100%;
    width: 100%
}

.wds_preview_cont2 {
    display: table-cell;
    vertical-align: middle
}

span[data-type=wds_text_parent] * {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    margin: inherit;
    padding: inherit
}

@-webkit-keyframes wdszoom0 {
    100% {
        background-size: 170% 170%
    }
}

@-webkit-keyframes wdszoom70 {
    100% {
        background-size: 100% 100%
    }
}

@-moz-keyframes wdszoom0 {
    100% {
        background-size: 170% 170%
    }
}

@-moz-keyframes wdszoom70 {
    100% {
        background-size: 100% 100%
    }
}

@keyframes wdszoom0 {
    100% {
        background-size: 170% 170%
    }
}

@keyframes wdszoom70 {
    100% {
        background-size: 100% 100%
    }
}

.wds_play_btn_cont {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    cursor: pointer
}

.wds_animated {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

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

@-webkit-keyframes bounce {
    0%,20%,53%,80%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -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-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        -ms-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0);
        -ms-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0)
    }

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

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

@-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);
        -ms-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

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

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    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-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

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

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

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

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

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

@-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);
        -ms-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

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

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 100;
    src: url(../fonts/poppins/pxiAyp8kv8JHgFVrJJLmE0tDMPKzSQ.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 100;
    src: url(../fonts/poppins/pxiAyp8kv8JHgFVrJJLmE0tMMPKzSQ.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 100;
    src: url(../fonts/poppins/pxiAyp8kv8JHgFVrJJLmE0tCMPI.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLmv1pVFteOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLmv1pVGdeOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLmr19VFteOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLmr19VGdeOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLmr19VF9eO.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLm111VFteOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLm111VGdeOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLm111VF9eO.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLm81xVFteOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLm81xVGdeOcEg.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
}

@font-face {
    font-family: Poppins;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/poppins/pxiDyp8kv8JHgFVrJJLm81xVF9eO.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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/poppins/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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/poppins/pxiByp8kv8JHgFVrLBT5Z11lFc-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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/poppins/pxiByp8kv8JHgFVrLBT5Z1JlFc-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
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/poppins/pxiByp8kv8JHgFVrLBT5Z1xlFQ.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
}

@font-face {
    font-family: ubuntu;
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCp6KVjbNBYlgoKejZftVyCN4Ffgg.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCu6KVjbNBYlgoKej75l0mwFg.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCp6KVjbNBYlgoKejYHtFyCN4Ffgg.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCp6KVjbNBYlgoKejZPslyCN4Ffgg.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCv6KVjbNBYlgoC1CzjvWyNL4U.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCs6KVjbNBYlgoKcg72j00.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

@font-face {
    font-family: ubuntu;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/ubuntu/4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2) format('woff2');
    unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F
}

.caption {
    position: absolute;
    top: 30%;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    left: 1%
}

.bannermain .owl-carousel1 .owl-dots {
    display: block;
    position: relative;
    top: -40px;
    text-align: right!important;
    width: 50%
}

body .bannermain .owl-carousel1 .owl-dots .owl-dot {
}

.owl-dots .owl-dot {
    display: inline-block;
    margin-right: -10px
}

.caption h1 {
    font-size: 20px
}

.caption h1 strong {
    clear: both;
    display: block;
    font-size: 61px;
    opacity: .8;
    margin-top: 10px
}

.caption2 {
    clear: both;
    display: block;
    font-size: 40px;
    opacity: 1;
    font-weight: 700;
    margin-top: 10px;
    color: #000;
    text-align: left
}

.caption h4 {
    font-size: 16px;
    line-height: 1.8
}

ul.btn-groups li {
    display: inline-block;
    margin-top: 10px
}

ul.btn-groups li a {
    background-color: #0a4d8d;
    color: #273773;
    text-decoration: none;
    padding: 15px 40px;
    border: unset!important;
    margin-right: 5px!important;
    border-radius: unset!important;
    box-shadow: 5px 8px 10px #ccc
}

ul.btn-groups li:hover a {
}

.bannermain {
    border-bottom: 5px solid #0f7e40
}

.bannermain .owl-nav {
    position: absolute;
    top: 36%;
    width: 100%;
    left: 0
}

.bannermain .owl-nav .owl-prev {
    float: left
}

.bannermain .owl-nav .owl-next {
    float: right;
    background-image: url(/images/right.png);
    width: 50px!important;
    height: 50px;
    line-height: 9;
    background-color: transparent!important;
    background-repeat: no-repeat
}

.bannermain .owl-prev i {
    display: none
}

.bannermain .owl-nav div {
    padding: 0 7px;
    margin: 0 20px
}

.bannermain .owl-nav div:hover {
}

.white-bg {
    margin-top: 100px;
    padding-top: 40px;
    background: #eaf3f4;
    padding-left: 35px;
    margin-left: -55px;
    padding-bottom: 40px
}

ul.products>li {
    float: right;
    width: 24%;
    margin-bottom: 0
}

ul.pro-feats li {
    display: inline-block;
    width: 33%!important;
    text-align: center;
    float: left
}

ul.pro-feats {
    width: 85%;
    position: absolute;
    color: #fff;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center
}

.pro-thumb {
    position: relative;
    overflow: hidden
}

.pro-thumb:hover .pro-feats {
    bottom: 0
}

ul.pro-feats li i {
    color: #fff;
    font-size: 16px
}

ul.pro-feats li a {
    padding: 6px;
    display: block
}

.pro-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: .3s linear 0s;
    bottom: -100%;
    background-color: rgba(15,126,64,.6)
}

ul.products li:hover .pro-overlay {
    bottom: 0
}

.pro-overlay a {
}

.pro-overlay a i {
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    padding: 16px
}

section.grey {
    padding: 20px 0!important;
    padding-top: 40px!important;
    padding-bottom: 90px!important;
    background-size: cover;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #fff;
    background-position: center center
}

.o-products h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    font-family: source sans pro
}

.o-products h2 strong {
    color: #0a4d8d
}

h4.underline {
    font-size: 26px;
    color: #007bc3;
    display: table;
    margin: 0 auto;
    position: relative;
    font-family: source sans pro;
    font-weight: 300;
    padding-bottom: 15px;
    margin-bottom: 30px
}

h4.underline:before {
    content: "";
    bottom: 6px;
    background-color: #000;
    height: 1px;
    width: 70px;
    left: 20%
}

h4.underline:after {
    content: "";
    bottom: 0;
    background-color: #000;
    height: 1px;
    width: 60px;
    right: 20%
}

a.pro-title {
    color: #000;
    font-size: 15px;
    display: table-cell
}

.innerbanner img {
    width: 100%
}

.innerbanner {
    position: relative
}

.innercaption {
    position: absolute;
    top: 40%;
    width: 100%;
    left: 0;
    color: #fff
}

.innercaption h1 {
    font-weight: 300;
    font-size: 70px;
    color: #282828;
    opacity: 1;
    line-height: .7;
    font-family: source sans pro;
    text-transform: uppercase
}

section.container.inner h2:after {
    content: "";
    width: 120px;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 3%;
    top: auto;
    bottom: -20px
}

section.container.inner h2 strong {
    font-weight: 600;
    clear: both;
    display: block;
    color: #0a4d8d;
    text-transform: uppercase
}

section.about-page.container.inner {
    background-image: url(assets/images/about.png);
    background-position: right;
    background-repeat: no-repeat
}

section.about-page img {
    max-width: 100%;
    margin-bottom: 20px
}

section.about-boxes li {
    width: 31%;
    margin: 0 1.1%;
    float: left;
    position: relative
}

section.about-boxes {
    padding: 40px 0
}

section.about-boxes h4 {
    position: absolute;
    bottom: 0;
    padding: 8px 10px;
    background-color: rgba(0,0,0,.7);
    width: 100%;
    bottom: 0;
    margin: 0
}

section.about-boxes h4 a {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px
}

section.about-boxes img {
    width: 100%
}

.summary.entry-summary h1 {
    margin-top: 0;
    font-family: source sans pro;
    font-size: 30px;
    font-weight: 600;
    color: #2d2c2c
}

.services .news-box {
    max-width: 362px
}

.bannermain img {
    max-width: 100%!important;
    height: auto;
    top: 40px!important
}

.wlc-bg img {
}

@media only screen and (max-width: 992px) {
    body .navbar-header a.filter-head {
        display:block!important;
        margin-bottom: 20px;
        padding-bottom: 10px;
        padding-top: 10px;
        padding-left: 10px;
        background-color: #f8f8f8
    }

    body .back-colour {
        padding-bottom: 70px
    }

    body .fifty.f {
        margin-left: 0
    }

    body p.p-content {
        width: 100%
    }

    body .main-blogs-2 {
        position: absolute;
        top: 20%;
        left: 10%
    }

    body .main-blogs-2 h4 {
        color: #fff;
        font-size: 20px;
        width: 64%;
        line-height: 24px;
        font-weight: 400!important;
        margin-bottom: 38px;
        padding-top: 10px
    }

    body .main-blogs-2 h4 {
        margin-bottom: 38px;
        width: 100%;
        padding-right: 40px;
        padding-left: 0
    }

    body .col-xs-12.col-sm-12.col-md-8.col-lg-8.wow.fadeInRight {
        margin: 0;
        height: 5px
    }

    p.red-news {
        color: red;
        top: 60px;
        margin-top: -20px!important;
        margin-bottom: 20px!important
    }

    .filter-box button.navbar-toggle span {
        background: #000
    }

    .filter-box button.navbar-toggle {
        position: absolute;
        right: 0;
        top: 3px;
        margin: 0;
        right: 22px;
        border: 1px solid #000;
        background: #fff;
        z-index: 9999
    }

    body .navbar-header a.filter-head {
        display: block!important;
        margin-bottom: 20px;
        padding-bottom: 10px;
        padding-top: 10px;
        padding-left: 10px;
        background-color: #f8f8f8
    }

    .filter-box button.navbar-toggle span {
        background: #000
    }

    .filter-box button.navbar-toggle {
        position: absolute;
        right: 0;
        top: 3px;
        margin: 0;
        right: 22px;
        border: 1px solid #000;
        background: #fff;
        z-index: 9999
    }

    body .pro-menu {
        min-height: unset
    }

    footer h4 {
        margin-top: 30px
    }

    body p.banner-para {
        font-size: 14px;
        line-height: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    body ul.btn-groups {
        display: none
    }

    body .fea-products li {
        width: 100%!important;
        float: unset;
        margin-right: 6px
    }

    body .fea-products {
        white-space: unset
    }

    body .logo img {
        position: relative;
        left: 0
    }

    .navbar-collapse {
        position: absolute;
        z-index: 999;
        background-color: #fff;
        width: 100%;
        right: 0
    }
}

@media only screen and (max-width: 992px) {
    body a.logo {
        margin:0 auto
    }

    body .fifty {
        width: 100%;
        float: unset
    }

    bdy .fifty.f {
        margin-left: 0
    }

    body section.form-secc p {
        color: #5a5a5a;
        font-size: 13px;
        padding-bottom: 20px
    }

    body .form-secc .view {
        margin-top: 0;
        margin-left: 0
    }

    body .yinte-main-blogs-2 {
        padding-top: 20px
    }

    body .chance-pros-mainn:before {
        display: none
    }

    .chance-pros-mainn {
        margin-bottom: 15px
    }

    body section.featured {
        background: #fff;
        padding-bottom: 40px
    }

    .images-sec .owl-nav.disabled {
        display: none!important
    }

    .cap_img {
        margin-top: 10px
    }

    .cap_code {
        margin-top: 10px
    }

    .form-sec .pull-right {
        display: block;
        padding: 10px!important
    }

    .product-center-btn {
        margin-bottom: 30px;
        margin-top: 20px
    }

    body .logo img {
        position: initial!important;
        padding-left: 0!important;
        max-width: 190px;
        text-align: left!important;
        opacity: 1!important
    }

    body section.logo-sec {
        padding-top: 10px;
        background: unset!important;
        padding-bottom: 10px;
        position: relative!important
    }

    .caption {
        top: 30%
    }

    .caption2 {
        font-size: 36px
    }
}

@media only screen and (max-width: 600px) {
    body img.ab-img-sec {
        padding:0!important
    }

    body .pd-thumbs ul li {
        display: inline-block;
        text-align: center;
        margin-top: 0
    }

    body .pd-thumbs ul li span {
        width: unset!important;
        height: unset!important
    }

    body .product_secondary_images_container {
        height: 60px;
        text-align: center
    }

    body .view {
        text-align: center;
        margin-top: 20px
    }

    ul.contact-list p {
        font-size: 14px;
        display: table
    }

    .ab-ft.center {
        text-align: left
    }

    body .ab-ft.center p {
        text-align: left!important
    }

    body section.form-secc {
        padding-bottom: 40px;
        padding-top: 40px
    }

    body section.form-secc h3 {
        font-size: 20px;
        text-align: center
    }

    body section.form-secc p {
        color: #5a5a5a;
        font-size: 13px;
        padding-bottom: 20px;
        text-align: center
    }

    .yinte-main-blogs-2 {
        padding-top: 30px
    }

    body .yinte-main-blogs-2 {
        border-bottom: 1px solid #ccc;
        margin-bottom: 0
    }

    .yinte-main-blogs-2 {
        padding-top: 30px
    }

    body .main-blogs-2 {
        position: absolute;
        top: 20%;
        left: 0%!important
    }

    body .main-blogs-2 h4 {
        margin-bottom: 38px;
        width: 100%;
        padding-right: 40px;
        padding-left: 40px!important
    }

    body .view a {
        padding: 10px 20px!important;
        font-size: 14px!important;
        margin-top: 0!important;
        display: inline-block
    }

    body .innercaption {
        display: block!important
    }

    section.images-sec {
        padding: 30px 0 50px!important;
        background: unset!important;
        background-color: #fff!important;
        background-repeat: no-repeat;
        background-size: cover
    }

    .wsmenu-list>li>a {
        color: #000!important
    }

    body.wsmenu-list>li>a {
        color: #000!important
    }

    .main-inner-div.one {
        clip-path: none!important
    }

    .main-inner-div.two {
        clip-path: none!important
    }

    .main-inner-div.three {
        clip-path: none!important
    }

    .main-inner-div.four {
        clip-path: none!important
    }

    .blog0 {
        clip-path: none!important
    }

    .blog1 {
        clip-path: none!important
    }

    .blog2 {
        clip-path: none!important
    }

    .blog3 {
        clip-path: none!important
    }

    .blog2 .blo-til {
        top: 0
    }

    .btn-products {
        text-align: center!important;
        margin-top: 25px!important
    }

    .btn-products .btn.btn-primary.bannerbtn {
        font-size: 12px!important
    }

    .why-bg h2.gernal-head {
        font-weight: 600!important;
        padding-right: 30px!important;
        padding-left: 15px;
        font-size: 25px!important
    }

    .why-bg {
        margin-top: 20px!important
    }

    section.why {
        background: unset!important;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 0!important;
        max-width: 1600px;
        margin: 0 auto;
        background-color: #faf9f9!important
    }

    section.email {
        background: unset!important;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 0!important;
        max-width: 1600px;
        margin: 0 auto;
        background-color: #f5a933!important
    }

    section.grey.o-products {
        text-align: center
    }

    section.blogs-section {
        text-align: center!important
    }

    .email button#inquiry_form_btn {
        width: 50%!important;
        margin-top: 20px!important;
        text-align: center!important;
        margin-left: 0!important;
        margin-bottom: 30px
    }

    .email-p {
        margin-top: 20px!important
    }

    .email .custom-input-email {
        height: 47px;
        background-color: #f5a832;
        border: solid 2px #fff;
        color: #fff;
        width: 100%!important;
        float: unset!important
    }

    .email-p h2.gernal-head {
        color: #fff;
        font-size: 24px!important;
        border-left: 5px solid #faf8f9
    }

    .main-inner-div p {
        padding-left: 21px!important;
        text-align: left!important
    }

    section.images-sec .gernal-headd {
        margin-top: 25px!important;
        margin-bottom: 0!important;
        border-left: unset;
        text-align: center!important
    }

    .main-about p {
        color: #fff;
        margin-top: 21px!important;
        margin-right: 0!important
    }

    .main-inner-div {
        width: 100%!important
    }

    section.images-sec {
        text-align: center!important
    }

    .main-about p {
        color: #fff;
        margin-top: 20px!important;
        margin-right: 0!important
    }

    ul.contact-list {
        margin-top: 80px!iportant;
        margin-top: 50px!important
    }

    .caption p {
        font-size: 10px!important;
        text-transform: lowercase!important;
        font-weight: 400!important;
        padding-right: 90px;
        margin-top: 5px!important;
        color: #fff!important;
        line-height: 13px!important;
        padding-bottom: 15px!important
    }

    h2.my-head {
        color: #1d1216!important;
        text-transform: uppercase;
        font-weight: 700;
        margin-top: 20px!important;
        text-align: center!important;
        font-size: 22px!important;
        padding-right: 0!important
    }

    section.about-sec p {
        font-size: 13px!important;
        padding-right: 0!important;
        text-align: center!important;
        padding-bottom: 20px!important
    }

    section.blogs-section {
        padding-bottom: 20px!important;
        padding-top: 40px
    }

    footer {
    }

    .ft-bg-color {
        padding: 20px 15px!important
    }

    .footer-p p:before {
        display: none
    }

    ul.cus-social {
        display: inline-block;
        margin-bottom: 0;
        margin-top: 0!important
    }

    p.asdaszxc {
        text-align: center;
        color: #fff;
        font-size: 10px
    }

    .ab-ft .footer-p p {
        color: #fff;
        padding-right: 0!important;
        text-align: left!important;
        margin-top: 16px!important
    }

    .main-inner-div {
        margin-top: 25px!important
    }

    section.services-sec {
        padding-bottom: 50px!important
    }

    .view-products {
        text-align: center!important;
        margin-top: 25px!important;
        margin-bottom: 30px
    }

    h2.gernal-headd {
        color: #000!important;
        font-size: 19px!important;
        font-weight: 600;
        text-align: center!important;
        margin-bottom: 31px!important;
        margin-top: 4px!important;
        border-left: unset!important
    }

    h2.gernal-head:after {
        display: none
    }

    h2.gernal-headd:before {
        display: none
    }

    .wsmenu-list>li.active:before {
        display: none
    }

    .caption p {
        font-size: 12px!important;
        text-transform: none;
        font-weight: 400!important;
        padding-right: 90px;
        margin-top: 5px!important;
        color: #fff!important
    }

    body .innercaption h2 {
        font-size: 20px;
        line-height: 25px;
        margin-top: 1px!important
    }

    body ul.home-gallery li {
        width: 50%
    }

    body ul.home-gallery li:last-child {
        display: none
    }

    body .contact-content-div .col-md-4:before {
        display: none
    }

    .m-tops {
        margin-top: 20px
    }

    .related-heading h4 {
        font-size: 25px!important
    }

    body h1.pgtitle {
        font-size: 24px
    }

    body .pd-thumbs ul li img {
        max-width: 55px!important;
        max-height: 55px!important;
        vertical-align: middle!important
    }

    .pd-thumbs ul li span {
        width: 50px!important;
        height: 50px!important;
        text-align: center!important;
        vertical-align: middle!important
    }

    .pd-thumbs ul li {
        display: inline-block;
        width: 58px!important;
        height: 58px!important
    }

    body section.top {
        display: none
    }

    .caption {
        top: 20%
    }

    .caption2 {
        font-size: 20px
    }
}

.caption2 {
    font-size: 32px;
    max-width: 450px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600!important;
    text-transform: uppercase;
    line-height: 33px!important
}

.caption2 strong {
    font-size: 43px;
    padding: 10px 0;
    line-height: 70px;
    color: #d2192b!important;
    text-transform: uppercase;
    font-weight: 600!important;
    line-height: 20px
}

ul.btn-groups {
    display: block;
    margin: 0;
    margin-top: -5px;
    display: inline-block
}

body .bannermain .owl-carousel .owl-nav.disabled {
    display: block
}

.bannermain .owl-carousel1 .owl-dots {
    display: none
}

body .bannermain .owl-carousel1 .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin-left: 13px;
    display: inline-block
}

body .bannermain .owl-carousel1 .owl-dots .owl-dot.active span {
}

.bannerbtn1 {
    background-color: #273773!important;
    color: #8ad6bc!important;
    text-transform: uppercase;
    font-weight: 700;
    border: unset!important;
    border-radius: 50px!important;
    padding: 15px 40px!important
}

.bannerbtn {
    text-transform: uppercase;
    font-weight: 700
}

.bannermain {
    border-bottom: unset!important
}

h1.askldk {
    color: #fff;
    font-size: 42px;
    text-transform: uppercase!important;
    font-family: unset!important;
    font-weight: 700;
    padding-bottom: 50px
}

.main-inner-div {
    text-align: center;
    background-color: #fff;
    height: 230px;
    border-bottom: 3px solid #000;
    padding-top: 25px;
    margin-top: 0;
    position: relative;
    width: 46%;
    float: left;
    margin-right: 20px
}

.main-inner-div h4 {
    font-size: 20px;
    font-family: unset;
    color: #282828;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-top: 20px;
    position: relative;
    transition: .3s;
    padding-left: 6px;
    text-align: left!important;
    display: inline-block;
    width: 74%;
    padding-right: 85px
}

.main-inner-div p {
    font-size: 14px;
    color: #282828;
    font-weight: 100!important;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    padding-left: 70px;
    padding-right: 10px;
    text-align: left
}

section.images-sec {
    padding: 30px 0 50px!important;
    background: url(/images/services.jpg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1600px;
    margin: 0 auto
}

body .form-sec {
    padding: 50px 0!important
}

.form-sec {
    background: url(/images/abc.jpg);
    background-repeat: no-repeat;
    background-size: cover
}

.o-products h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 300;
    font-family: source sans pro
}

h2.GEt-int {
    color: #fff;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700
}

section.o-products.form-sec button#inquiry_form_btn {
    text-transform: uppercase;
    background-color: #d7d6d6;
    padding: 10px 40px;
    border-radius: 0;
    border: unset;
    color: #282828!important;
    font-weight: 700!important
}

section.o-products.form-sec textarea {
    height: 100px!important
}

section.map-sec {
    background: url(/images/banner-for-quote_02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 360px
}

.asz2 {
    margin-bottom: 10px
}

ul.social-icon-ft li {
    display: inline-block;
    margin-right: 10px;
    border-bottom: 0!important
}

ul.social-icon-ft li a i {
    color: #ccc
}

ul.social-icon-ft li a {
    background-color: #242424!important;
    padding: 10px 14px!important
}

.row.bor-top {
    border-top: solid 1px
}

ul.ft-center li {
    display: inline-block;
    text-align: center;
    padding: 0 10px
}

ul.ft-center {
    text-align: center;
    padding: 20px 0
}

ul.ft-center li a:hover {
    color: #fbd47d;
    transition: .5s ease;
    border-bottom: none;
    text-transform: unset
}

p.asdaszxc {
    font-size: 13px;
    color: #fff
}

.azxczx {
    padding: 15px;
    border-top: 1px solid #ccc
}

body footer {
    padding-bottom: 0!important
}

.btn-primary {
    background-color: #1a6e3c;
    border-color: #1a6e3c;
    padding: 8px 20px;
    text-transform: capitalize;
    border-radius: unset;
    color: #fff;
    border-radius: 5px
}

@media only screen and (max-width: 800px) {
    .nope-pad {
        display:none
    }

    body .search-btn {
        display: none
    }

    body .servvvv {
        display: inline-block;
        margin0top: 30px;
        margin-top: 30px
    }

    body p.serves-22 {
        color: #fff;
        font-size: 18px;
        max-width: 100%;
        text-align: center;
        padding-left: unset!important
    }

    body .f4 {
        border-left: unset;
        padding-left: 10px
    }

    body .main-inner-serv {
        margin-top: 25px
    }

    body ul.ser-button {
        text-align: center!important;
        margin-top: 40px;
        display: block;
        padding: unset
    }

    .contact-img-scr img {
        margin-top: 25px;
        margin-bottom: 20px;
        padding-left: 30px
    }

    body section.contactus h2.gernal-head {
        margin-bottom: 40px;
        margin-top: 40px;
        font-size: 25px;
        text-align: center!important;
        display: block;
        border-left: unset
    }

    body .blogs {
        margin-bottom: 25px
    }

    body .container.wsmenucontainer {
        background: unset;
        border-radius: unset;
        border: unset
    }

    li.req {
    }

    .pull-right {
    }

    body .testimonials .owl-carousel .owl-nav.disabled {
        display: none
    }

    body .blogs-section .owl-carousel .owl-nav.disabled {
        display: none
    }

    body section.testimonials {
        padding: 0 0 20px
    }

    .testimonials-content h2 {
        padding-bottom: 0;
        font-size: 25px
    }

    .testimonials-content h4 {
        font-size: 18px
    }

    .testimonials-content h5 {
        font-size: 15px;
        line-height: 20px
    }

    body .blogs-section h2 {
        font-size: 25px!important;
        border-left: unset;
        text-align: left
    }

    .blog-bg-color {
        margin-bottom: 20px!important
    }

    .o-products h2 strong {
        font-size: 20px!important
    }

    body .white-bg p {
        padding-right: 0
    }

    .search-head {
        display: none
    }

    .con-head1 {
        display: none
    }

    .con-head2 {
        display: none
    }

    ul.product-change-ul {
        margin-bottom: 30px!important
    }

    body h4.underline {
        display: none
    }

    body .o-products h2 {
        text-align: center!important;
        font-size: 20px!important;
        padding-bottom: 0;
        display: inline-block;
        display: block;
        max-width: 100%!important;
        line-height: 20px!important;
        padding-left: unset!important
    }

    body .white-bg {
        padding-top: 10px;
        padding-bottom: 0;
        margin: unset;
        padding: unset;
        padding-bottom: 26px!important
    }

    body ul.head-icon {
        float: unset;
        text-align: center;
        margin-top: 10px
    }

    .caption {
        position: absolute;
        top: 5%!important;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 20px
    }

    .caption2 {
        font-size: 15px;
        text-align: center;
        max-width: unset;
        margin-top: 0;
        margin-bottom: 0;
        color: #1a6e3c!important;
        font-weight: 500!important;
        line-height: 19px;
        padding: 0 10px;
        padding-top: 10px;
        background-color: #ffffffba;
        margin-top: 15px;
        line-height: 20px!important;
        width: 90%;
        left: 0!important;
        font-weight: 600!important
    }

    body .bannermain .owl-carousel .owl-nav.disabled {
        display: none!important
    }

    .caption2 strong {
        font-size: 16px;
        padding: 0;
        line-height: 28px;
        color: #fff!important;
        text-transform: uppercase;
        font-weight: 700!important;
        line-height: 10px
    }

    a.readmore {
        padding: 10px 25px!important;
        display: inline-block;
        text-transform: capitalize!important;
        border: solid 1px #fff;
        text-decoration: none;
        font-size: 13px!important;
        font-weight: 700
    }

    section.images-sec {
        padding: 0!important
    }

    body .bg_overlay {
        background-color: unset!important
    }

    h1.askldk {
        color: #431e57;
        font-size: 28px;
        text-transform: uppercase!important;
        font-family: unset!important;
        font-weight: 700;
        padding-bottom: 10px;
        text-align: center;
        margin-top: 0
    }

    .bannermain .owl-carousel1 .owl-dots {
        display: none;
        position: relative;
        top: -40px
    }

    ul.btn-groups li a {
        background-color: #431e57;
        border-radius: 0;
        border-color: #ccc;
        padding: 8px 25px!important;
        font-size: 12px
    }

    .caption {
        padding: 0 10px!important
    }
}

.wsmenu-list>li>a {
}

body .product_thumb {
    border: none!important
}

body .product_thumb {
    border: unset!important;
    background-color: #f1f1f1;
    height: 250px
}

.o-products .owl-nav i {
    background-color: #ed7c30!important
}

body .pro-overlay {
    background-color: unset!important
}

.pro-feats a.pro-title {
    display: none
}

body .featrued_prod_title {
    position: initial!important;
    width: auto!important;
    height: unset!important;
    background-color: unset!important
}

body ul.products:hover div.pro-overlay {
    bottom: -51%!important;
    left: -20%!important
}

a.product-title {
    position: absolute;
    right: 0;
    bottom: 16px;
    font-size: 0;
    background: url(/images/arrow-bg_03.jpg);
    width: 50px!important;
    height: 50px!important
}

.product_thumb-1 img {
    text-align: center
}

a.readmore-1 {
    background: #240733;
    padding: 15px 68px!important;
    display: inline-block;
    color: #fbd47d;
    text-transform: uppercase;
    border: solid 1px #fff;
    text-decoration: none;
    font-size: 14px!important;
    font-weight: 700;
    position: relative;
    top: -15px;
    opacity: 0
}

.featrued_prod_title-1 {
    position: relative
}

ul.products li:hover a.readmore-1 {
    opacity: 1;
    transition: .3s all linear
}

.featrued_prod_title-1 a.pro-title {
    position: relative;
    top: 20px;
    left: 0
}

body a.pro-title {
    color: #000!important
}

@media only screen and (max-width: 900px) {
    h2.o-fact {
        font-size:24px!important;
        text-align: center!important
    }

    ul.home-gallery li a img {
        width: 100%
    }

    body .pro-title-div .pro-title-2 {
        color: #006993;
        font-size: 26px;
        text-transform: capitalize;
        font-weight: 700;
        padding-left: 10px;
        display: inline-block;
        line-height: 30px;
        font-family: lato;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    p.content-para {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    body ul.products li .featrued_prod_title-2 {
        float: left!important;
        display: inline-block;
        margin-top: 0;
        padding-left: 20px;
        width: 50%
    }

    body .home p {
        padding: 0;
        font-size: 12px!important;
        line-height: 23px;
        padding: 10px
    }

    .products-home-inner a img {
        width: 100%!important
    }

    body .products-home-main {
        margin-bottom: 20px!important
    }

    body section.images-sec h2.askldk {
        font-size: 24px!important;
        text-align: center;
        margin-top: 20px
    }

    body .ab-ft-left {
        padding-left: 0
    }

    .gree-sec-banner {
        height: 140px
    }

    body .gree-sec-banner {
        height: 140px
    }

    section.o-products.form-sec {
        padding-top: 0!important;
        padding-bottom: 50px!important
    }

    body .contact-img-center img {
        margin-top: 30px!important
    }

    body .wlc-bg h2 strong {
        font-size: 20px
    }

    body .exp-right {
        padding: 0;
        margin: 20px 0!important;
        text-align: center
    }

    body .exp-right img {
        position: unset;
        margin: 0 auto
    }

    .exp-left img {
        position: unset
    }

    body .exp-left {
        text-align: center;
        padding: 0 20px
    }

    body .exp-left img {
        margin: 0 auto;
        position: unset
    }

    ul.products>li {
        width: 100%
    }

    .pro-thumb-1 .product_thumb-1 {
        text-align: center
    }

    body .featrued_prod_title-1s {
        margin: 0 auto;
        text-align: center;
        background-color: transparent;
        margin-top: 10px
    }

    .featrued_prod_title-1s a {
        background-color: #ffcd07;
        padding: 10px 20px
    }

    body .o-products {
        padding-bottom: 0!important;
        padding-bottom: 20px!important
    }

    .ab-img-sec {
        margin: 0 auto
    }

    a.readmore-1 {
        background: #240733;
        padding: 15px 68px!important;
        display: inline-block;
        color: #fbd47d;
        text-transform: uppercase;
        border: solid 1px #fff;
        text-decoration: none;
        font-size: 14px!important;
        font-weight: 700;
        position: initial;
        top: -15px;
        opacity: 1;
        margin-top: 10px
    }

    .featrued_prod_title-1 a.pro-title {
        position: absolute;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        top: 65px
    }

    a.product-title {
        position: absolute;
        right: 0;
        bottom: 16px;
        font-size: 0;
        background: url(/images/arrow-bg_03.jpg);
        width: 50px!important;
        height: 50px!important;
        display: none
    }

    .featrued_prod_title-1 {
        position: relative;
        text-align: center
    }

    ul.products>li {
        height: 360px
    }
}

section.grey.o-products .product_thumb-1 img {
}

body section.top {
    background-color: #0069b7!important;
    padding: 0!important
}

body section.logo-sec {
    border-bottom: 0!important;
    border-top: 0!important;
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: #fff;
    background: url(/images/to-bgs_01.jpg);
    background-size: cover;
    background-position: center center;
    background: url(/images/logo-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover
}

.lok-for-some {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-top: 70px
}

.lok-for-some h1 {
    color: #fff;
    font-family: lato;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 30px
}

.lok-for-some a {
    border: solid 2px #fff;
    padding: 12px 30px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-family: lato;
    letter-spacing: 1px
}

body .wsmenu-list>li>a:hover {
    background-color: !important;
    text-decoration: none;
    color: #fff!important;
    position: relative;
    border-radius: 0;
    background-color: unset!important;
    transition: all .1s linear
}

ul.ft-menu-list-1 li {
    display: inline-block;
    margin-right: 30px
}

ul.ft-menu-list li {
    display: inline
}

ul.ft-menu-list li {
    margin: 1px
}

span.all-res-right {
    float: right
}

body .logo img {
    *position: absolute;
    */}

body .wsmenu {
    margin-top: 0;
    margin-bottom: 0
}

p.basic-det {
    width: 80%;
    color: #bbb!important
}

.footer1 {
    padding-right: 0
}

.view-btn a {
    background: 0 0!important;
    padding: 11px 35px!important;
    display: inline-block;
    color: #0062a6;
    text-transform: uppercase;
    border: solid 1.5px #0062a6;
    text-decoration: none;
    font-size: 14px!important;
    font-weight: 700;
    border-radius: 5px
}

.view-btn {
    float: right
}

.featrued_prod_title-1s {
    text-align: center;
    margin-top: 0;
    background-color: #fecf07;
    padding: 10px 0
}

a.pro-titles {
    color: #004e7b!important;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
    font-family: montserrat,sans-serif;
    font-weight: 600
}

.o-products .owl-nav {
    display: none!important
}

.o-products .owl-dots {
    display: none!important
}

.o-products .owl-item {
    padding: 20px 10px 0;
    border-radius: 0
}

.blogs-section h2 {
    color: #b41f2e!important;
    font-size: 38px!important;
    text-transform: capitalize;
    font-weight: 700;
    text-align: left;
    margin-top: 0
}

.main-blogs {
    text-align: center;
    position: relative;
    position: relative;
    height: 500px;
    max-width: 100%;
    background-size: cover!important;
    background-position: center center!important
}

a.blo-titles {
    background: 0 0!important;
    padding: 5px 15px 0 0!important;
    color: #000;
    00;*/text-transform: capitalize;
    text-decoration: none;
    font-size: 14px!important;
    font-weight: 600;
    opacity: 1;
    text-align: left;
    display: block
}

.main-blogs:hover a.blo-titles {
    opacity: 1
}

.main-blogs:hover img {
    opacity: 1;
    transition: .5s ease
}

.blo-til {
    font-family: montserrat,sans-serif;
    background-color: #000000a6;
    height: 80px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    bottom: 0;
    width: 100%
}

.blo-til h4 {
    font-family: montserrat,sans-serif;
    font-size: 20px;
    color: #273773;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase
}

.blo-til p {
    color: #f5a933!important;
    font-size: 14px;
    text-align: left;
    font-weight: 600!important
}

p.post-by-ad strong {
    color: #0062a6;
    padding-left: 5px
}

p.date-format {
    margin-bottom: 0!important;
    padding-top: 0
}

.pad-ext {
    padding-bottom: 30px;
    padding-top: 30px
}

.blog-veiw-section img {
    float: left;
    margin-right: 20px
}

.blog-veiw-section h1 {
    padding-top: 60px;
    font-family: montserrat,sans-serif;
    color: #000
}

.blog-veiw-section {
    font-family: montserrat,sans-serif
}

.blog-box-shad:hover {
    background-color: #fff;
    transform: scale(1.02);
    transition: .5s ease;
    border: unset
}

.blog-box-shad {
    background-color: #fff;
    border: solid 1px #ccc;
    padding: 20px 20px 30px 30px;
    margin-top: 30px
}

body section.top .top-left i {
    color: #fff
}

.main-blogs img {
    width: 100%
}

body .main-pic img {
    vertical-align: middle!important
}

.Video-sect {
    padding: 80px 0 50px
}

.Video-sect .card {
    cursor: pointer;
    display: block
}

.card-img-top {
    width: 100%;
    height: 300px;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    border-radius: 10px 10px 0 0
}

p.card-text {
    color: #000;
    font-size: 22px;
    padding-top: 10px;
    display: inline-block;
    background-color: #3a3a3a2b;
    border-radius: 0 0 10px 10px;
    width: 100%;
    padding: 10px 0
}

body .logo {
    max-width: unset!important;
    padding-left: 0;
    padding-right: 0
}

.search-head {
    margin-top: 30px
}

.search-head input[type=text] {
    border: none!important;
    padding-left: 20px;
    font-family: montserrat,sans-serif!important;
    width: 80%;
    height: 40px;
    position: relative;
    top: -10px;
    background-color: #004e7b;
    border-radius: 5px;
    color: #fff!important
}

ul.head-icon li a {
    margin-left: 10px
}

ul.head-icon li a i:hover {
    color: #8ec03f;
    transition: .5s ease
}

ul.head-icon {
    margin-top: 30px;
    float: right
}

.my-menu nav#wsnavtoggle {
    float: left
}

.extra-padding {
    padding: 0
}

.ab-img {
    text-align: center
}

ul.product-change-ul li {
    margin-bottom: 10px;
    text-align: left
}

ul.product-change-ul li a {
    color: #fecf07;
    font-family: montserrat,sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    background-color: #004e7b;
    padding: 8px 0 8px 20px;
    transition: all .3s linear;
    outline: none;
    text-decoration: unset
}

ul.product-change-ul li:hover {
    transition: .3s ease;
    background-color: #fecf07;
    text-decoration: none
}

.o-products h2 strong {
    color: #004e7b!important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 30px
}

.form-sec input {
}

.form-sec textarea {
    border: solid 1px #fff;
    resize: none;
    padding: 20px 0 0 20px
}

.contact-img-center img {
    margin: 0 auto!important;
    margin-top: -40px!important
}

.exp-left-main {
    position: relative
}

.exp-left {
    position: relative;
    text-align: right;
    padding-right: 90px;
    margin-bottom: 50px
}

.exp-left img {
    position: absolute;
    right: 0
}

.exp-right-main {
    position: relative
}

.exp-right {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px
}

.exp-right img {
    position: absolute;
    left: 0
}

.exp-right h4 {
    font-family: montserrat,sans-serif;
    font-size: 14px;
    color: #8ec03f;
    font-weight: 600;
    text-transform: uppercase
}

.exp-right p {
    font-family: montserrat,sans-serif;
    font-size: 12px;
    color: #767676
}

.exp-left h4 {
    font-family: montserrat,sans-serif;
    font-size: 14px;
    color: #8ec03f;
    font-weight: 600;
    text-transform: uppercase
}

.exp-left p {
    font-family: montserrat,sans-serif;
    font-size: 12px;
    color: #767676
}

.contact-img-centers img {
    margin: 0 auto
}

.gree-sec-banner {
    background: url(/images/GREE-BANNER_02.jpg);
    background-size: cover;
    height: 400px
}

ul.mobile-sub {
}

ul.mobile-sub li:hover {
    transition: .5s ease;
    text-transform: capitalize;
    color: #4f4b4c!important
}

li.req {
    list-style: none
}

p.adas a {
    display: inline;
    color: #fff;
    font-weight: 500
}

p.adas {
    text-align: center;
    color: #fff;
    font-family: montserrat,sans-serif
}

ul.footer-icon li a {
    display: inline-block;
    margin-right: 20px
}

ul.footer-icon li a i {
    color: #273773
}

ul.footer-icon li a:hover i {
    color: #8ad7bc;
    transition: .5s ease
}

.ft-content {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 20px
}

ul.footer-icon {
    margin: 0;
    padding: 14px 0 0 40px;
    border-top: solid 1px #ccc
}

.header-search-btn {
    font-size: 0;
    background-color: transparent!important;
    color: transparent;
    border: unset;
    height: 40px;
    position: relative;
    top: -15px;
    width: 40px;
    left: -8px;
    background: url(/images/search-icon.jpg);
    background-size: 100% 100%
}

.header-search-btn i.fa.fa-search {
    font-size: 14px;
    color: #8ec03f;
    padding-left: 10px
}

.contactmain {
    background-color: transparent!important;
    padding: 0 0 10px!important
}

a.pro-titles:hover {
    text-decoration: none
}

.ab-img-sec {
    margin: 0 auto
}

.o-products {
    padding-bottom: 20px!important
}

section.container.inner h2 strong {
    color: #282828!important
}

.ft-content img {
    margin: 0 auto
}

.pro-menu {
    margin-top: 0
}

ul.product-change-ul li:hover a {
    background-color: #ffc805
}

ul.wsmenu-submenu li:hover a {
    color: #fff!important;
    transition: all .2s linear;
    text-transform: capitalize
}

.wsmenu-submenu li a {
    text-transform: capitalize!important;
    font-weight: 500
}

li.req a {
    color: #004e7b!important;
    font-weight: 600
}

.white-bg p {
}

section.testimonials {
    background: url(/images/testiminals-bg.jpg);
    background-size: cover;
    padding: 100px 0
}

.testimonials-content h2 {
    color: #ffcd07;
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
    padding-bottom: 30px
}

.testimonials-content h4 {
    color: #ffcd07;
    text-align: center;
    font-family: montserrat,sans-serif;
    font-size: 20px
}

.testimonials-content h5 {
    max-width: 650px;
    margin: 0 auto;
    font-size: 19px;
    text-align: center;
    color: #fff;
    font-family: montserrat,sans-serif;
    font-weight: 400;
    padding-top: 10px
}

.testimonials .owl-carousel .owl-nav.disabled {
    display: block
}

.testimonials .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%
}

.testimonials .owl-nav {
    height: 0
}

.testimonials .owl-nav .owl-prev {
    float: left
}

.testimonials .owl-nav .owl-next {
    float: right
}

.testimonials .owl-nav i {
    background-color: #004e7b;
    color: #fecf07;
    padding: 10px;
    font-size: 18px
}

.pad-ext p {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    color: #8e8e8e
}

.b-images img {
    width: 100%;
    border: solid 1px #ccc
}

.blogs-section .owl-carousel .owl-nav.disabled {
    display: block
}

.blogs-section .owl-nav {
    position: absolute;
    top: 32%;
    left: 0;
    width: 100%
}

.blogs-section .owl-nav {
    height: 0
}

.blogs-section .owl-nav .owl-prev {
    float: left;
    position: relative;
    left: -25px;
    display: inline-block
}

.blogs-section .owl-nav .owl-next {
    float: right;
    position: relative;
    right: -25px;
    display: inline-block
}

.blogs-section .owl-nav i {
    background-color: #231f20;
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    border-radius: 100%
}

section.blogs-section {
    background-size: cover;
    max-width: 1600px;
    background-color: #fff;
    margin: 0 auto;
    padding-bottom: 80px
}

body a:hover {
    outline: none!important;
    text-decoration: none!important
}

body nav#wsnavtoggle li.req:hover {
    background-color: #fdcd07!important
}

body nav#wsnavtoggle li.req:hover a {
    color: #004e7b!important
}

.head-icone {
    display: inline-block
}

.head-heading {
    display: inline-block
}

.head-heading h5 {
    color: #8ad7bc;
    font-family: montserrat,sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0
}

.head-heading h6 {
    font-family: montserrat,sans-serif;
    font-size: 12px;
    padding-bottom: 0;
    color: #767676
}

.con-head1 {
    padding-top: 20px;
    position: relative
}

.con-head2 {
    padding-top: 20px;
    position: relative
}

.head-icone i {
    font-size: 26px;
    position: absolute;
    left: -30px;
    top: 50%;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #043381
}

.head-icone i.fas.fa-phone-volume {
    transform: rotate(-45deg);
    left: -20px
}

body .product_thumb-1 {
    text-align: center
}

a.req-err {
    position: relative;
    top: 30px;
    background-color: #8ad7bc;
    color: #273773;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px
}

a.pro-link {
    background-color: #8ad7bc;
    color: #273773;
    border-radius: 50px;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 14px!important;
    font-weight: 700
}

.for-more-content {
    margin-top: 30px
}

.pro-title-div {
    position: relative;
    padding-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-bottom: 19px
}

a.pro-title-2 {
    color: #767676;
    font-weight: 700;
    font-size: 14px;
    position: relative
}

a.pro-title-2:before {
    content: "";
    width: 80px;
    height: 8px;
    background-color: #006993;
    position: absolute;
    bottom: -10px
}

p.short-desc-home {
    margin-bottom: 15px;
    color: #807979!important;
    font-size: 12px!important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px
}

ul.products>li {
    height: unset!important
}

.featrued_prod_title-2 {
    padding: 10px 10px 30px
}

ul.products>li:hover {
}

.product-center-btn {
    text-align: center
}

.product-center-btn a {
    background: #273773!important;
    padding: 12px 45px!important;
    display: inline-block;
    color: #8ad7bc;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px!important;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px
}

.custom-service-main-div {
    text-align: center;
    background-color: #f9f9f9;
    padding: 60px 40px
}

.custom-service-main-div img {
    margin: 0 auto
}

.custom-service-main-div h4.ser-1 {
    color: #273773;
    font-family: roboto,sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative
}

.custom-service-main-div h4.ser-1:before {
    content: "";
    width: 50px;
    height: 3px;
    background: #273773;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0
}

.custom-service-main-div a {
    background-color: #8ad7bc;
    color: #273773;
    border-radius: 50px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px!important;
    font-weight: 700
}

.custom-service-main-div p {
    padding-bottom: 20px;
    padding-top: 10px;
    color: #9d9d9d;
    font-size: 16px
}

.custom-service-main-div:hover a {
    color: #8ad7bc;
    background-color: #273773;
    transition: .3s ease
}

.custom-service-main-div:hover {
    background-color: #fff;
    transition: all .3s linear;
    box-shadow: 0 0 20px #ccc;
    transform: scale(1.01)
}

body .get-a-quote-now {
    color: #fff!important;
    padding-left: 13px;
    padding-bottom: 20px
}

.form-sec input::placeholder {
    color: #fff;
    font-style: italic
}

.form-sec textarea::placeholder {
    color: #fff;
    font-style: italic
}

ul.ft-address li a {
    display: inline-block;
    color: #fff;
    font-weight: 400
}

ul.ft-address li i {
    display: inline-block;
    color: #fff;
    padding-top: 5px;
    margin: 0;
    padding-top: 7px
}

ul.ft-address li {
    display: flex
}

.ab-ft h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding-left: 0
}

.ab-ft {
    color: #fff;
    position: relative;
    word-break: break-word;
    text-align: start
}

.ab-ft ul li a {
    color: #fff;
    margin-bottom: 0;
    font-size: 13px;
    margin-top: -6px;
    margin-bottom: 6px
}

.ft-bg-color {
    padding: 70px 0
}

h2.o-serv {
    color: #273773;
    position: relative;
    padding-left: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
    padding-bottom: 20px
}

.custom-service-center {
    padding: 40px 0 30px;
    text-align: center
}

.custom-service-center a {
    background: #273773!important;
    padding: 12px 45px!important;
    display: inline-block;
    color: #8ad7bc;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px!important;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px
}

.ab-ft-left {
}

ul.services-ul li a {
    font-weight: 400;
    font-size: 13px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px
}

nav#wsnavtoggle {
}

.nope-pad {
    padding: 0
}

.sasc {
    border-top: solid 1px #ccc;
    padding-bottom: 14px;
    padding-top: 14px;
    border-left: solid 1px #ccc;
    padding-left: 20px
}

.sasc button.header-search-btn-2 {
    background: 0 0;
    border: unset
}

.sasc i {
    color: #273773
}

body .btn-primary:hover {
    background-color: #1a6e3c;
    border-color: #1a6e3c;
    transition: all .3s ease;
    color: #fff;
    border: solid 1px
}

.my_cat a {
    color: #5f5a5a!important;
    width: 86%;
    display: inline-block;
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    padding-left: 15px
}

.ext-padd {
    position: relative;
    display: none
}

span.sortred {
    position: absolute;
    top: 10px;
    left: -73px;
    color: #767676;
    font-weight: 700;
    font-size: 14px
}

.ext-padd input[type=text] {
    background-color: #f1f1f1;
    border: #ffdead;
    border-radius: 25px;
    padding: 10px
}

.ext-padd input[type=submit] {
    display: none
}

.filtered-by-s {
    color: #767676;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: solid 3px #273773;
    display: inline-block
}

body .my_cat.cat_level_1.active a {
    color: #fff!important;
    background-color: #1d1216!important
}

ul.productses .product_thumb {
    padding: 0!important;
    width: 100px;
    float: left;
    height: 100px
}

ul.productses .product_thumb img {
    width: 100%;
    height: 100%
}

.a-chal a {
    color: #767676;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    top: 20px;
    right: 0;
    width: 58%
}

.a-chal {
    position: relative
}

div#btnContainer {
    margin-bottom: 20px;
    display: none
}

body .listv-active .pro-thumb {
    width: 30%;
    float: left
}

body .listv-active .featrued_prod_title-2 {
    width: 70%;
    float: right
}

.head-icone img {
    position: absolute;
    left: -40px;
    top: 30px
}

.ex-padss {
    padding-bottom: 15px
}

.inquiry-pops {
    padding: 10px 25px
}

.bannermain .owl-carousel .owl-item img {
}

p.ft-addresses {
    margin-bottom: 0
}

h2.my-head {
    color: #1a6e3c!important;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 30px;
    padding-right: 100px
}

section.about-sec {
    padding-bottom: 40px;
    padding-top: 10px
}

section.about-sec p {
    font-size: 15px;
    padding-right: 9px;
    color: #525252;
    text-align: justify
}

body h2.get-a-quote-nows {
    color: #273773!important;
    padding-left: 13px;
    padding-bottom: 20px
}

.form-secs input {
    border: solid 1px #fff;
    background-color: #f3f3f3;
    border-radius: 50px;
    padding: 10px
}

.form-secs input::placeholder {
    font-style: italic
}

body .form-secs textarea {
    height: 100px!important;
    border: solid 1px #fff;
    resize: none;
    background-color: #f3f3f3;
    border-radius: 20px;
    padding: 20px 0 0 20px
}

body .form-secs textarea::placeholder {
    font-style: italic
}

body .form-secs button#inquiry_form_btn {
    text-transform: uppercase;
    background-color: #273773;
    padding: 10px 40px;
    border-radius: 50px;
    border: unset;
    color: #8ad7bc!important;
    font-weight: 700!important
}

.form-secs {
    padding-top: 30px
}

.our-contact-servicess {
    padding-bottom: 60px
}

.custom-service-main-divs img {
    margin: 0 auto
}

.custom-service-main-divs {
    text-align: center
}

.custom-service-main-divs img.img-2 {
    display: none
}

.custom-service-main-divs {
    background-color: #273773;
    box-shadow: 5px 20px 30px #00000082;
    color: #7fc3b3;
    height: 300px;
    padding-top: 50px
}

.custom-service-main-divs h4.ser-1 {
    text-transform: uppercase;
    padding-top: 10px;
    position: relative
}

.custom-service-main-divs h4.ser-1:before {
    content: '';
    background: #88d4ba;
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 32px
}

.custom-service-main-divs:hover {
    background-color: #8ad7bc;
    transition: all .3s linear;
    color: #273773
}

.custom-service-main-divs:hover .img-2 {
    display: block
}

.custom-service-main-divs:hover .img-1 {
    display: none
}

.custom-service-main-divs:hover h4.ser-1:before {
    background: #273773
}

body .listv-active li {
    height: unset!important
}

body .listv-active p.short-desc-home {
    height: 40px
}

.innercaption h2 {
    font-weight: 700;
    font-size: 42px;
    color: #fff!important;
    opacity: 1;
    line-height: 42px;
    text-transform: uppercase
}

.alert-success {
    display: inline-block
}

.top-right li span {
    padding-right: 6px;
    font-weight: 400
}

.top-right ul {
    display: block;
    float: left;
    padding-left: 130px;
    text-align: right!important;
    margin: 0 auto
}

.ext-paddS {
    display: inline-block;
    float: right;
    position: relative;
    top: 1px
}

.ext-paddS input[type=submit] {
    position: absolute;
    right: 0;
    background: url(/images/serch-icons.png);
    background-repeat: no-repeat;
    background-position: 18px 8px;
    color: transparent!important;
    border: unset
}

.ext-paddS input[type=text]::placeholder {
    color: #242b5b
}

.ext-paddS input[type=text] {
    padding: 4px 14px;
    color: #000
}

.ab-img img {
    margin-top: 0
}

.white-bg a.readmore {
    margin-top: 20px;
    font-weight: 500!important
}

.product-list a.pro-links {
    background-color: #b41f2e;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: block-axis;
    overflow: hidden;
    line-height: 40px;
    position: relative;
    top: -15px
}

.product-list img {
    width: 100%!important;
    height: 270px
}

.discs {
    display: none
}

ul.cus-social {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 8px;
    margin-left: -10px
}

ul.cus-social li a {
    display: inline-block;
    width: 36px;
    text-align: center;
    height: 36px;
    line-height: 35px
}

ul.ft-address li img {
    height: 20px;
    width: 20px;
    position: relative;
    left: -3px
}

p.web-link {
    padding-left: 10px;
    margin-bottom: 2px
}

ul.ft-address li i.fa.fa-envelope {
    margin-top: 5px
}

ul.footer-menus-list li a {
    color: #fff;
    font-size: 13px;
    line-height: 25px;
    padding-bottom: 10px
}

body a {
    outline: none
}

span.spni {
    padding-left: 2px
}

.abs-img {
    margin-top: 40px;
    width: 100%
}

.ab-1-top {
    padding-top: 20px
}

.inxas {
    width: 100%;
    height: 200px;
    resize: none;
    padding: 10px 0 0 10px;
    border: solid 1px #d7d7d7
}

.inxas::placeholder {
    color: #99a6c4
}

.inxa {
    background-color: #282828;
    border-color: #282828;
    color: #fff;
    padding: 10px 20px;
    border: unset
}

.getintouch {
    margin: 0 0 10px;
    color: #282828;
    position: relative;
    padding-left: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 42px;
    padding-top: 20px;
    padding-bottom: 30px
}

.contact-content-div {
    background-color: #ebebeb;
    padding: 50px 0 40px
}

.contact-content-div .col-md-4 {
    position: relative
}

.contact-content-div .col-md-4:before {
    content: "";
    background-color: #767676;
    width: 1px;
    height: 70px;
    position: absolute;
    right: 40px
}

.contact-content-div .col-md-4:last-child:before {
    position: relative
}

.contact-content-inner {
    position: relative
}

.contact-content-inner img {
    position: absolute;
    left: 0;
    top: 18px
}

.contact-content-list {
    padding-left: 60px;
    padding-top: 15px
}

.contact-content-list li {
    color: #767676
}

.cat_level_1 a {
    background-color: #c6c6c6;
    color: #000!important;
    margin-bottom: 3px;
    text-transform: capitalize
}

.cat_level_1:hover a {
    background-color: #e4e4e4
}

ul.products {
    margin-bottom: 0
}

ul.productses {
    display: none
}

p.filtered-by-s {
    display: none
}

li.buil-d {
    max-width: 60%
}

section.bread-crum {
    background-color: #d4d2d2
}

.bread_crumb {
    padding: 10px 0!important
}

.bread_crumb a {
    color: #242b5b;
    font-weight: 500;
    font-size: 14px
}

h1.pgtitle {
    color: #0069b7;
    font-weight: 700
}

ul.cus-social li a i {
    color: #fff!important
}

.related-heading h4 {
    padding-left: 15px!important;
    margin-bottom: 25px;
    font-size: 42px;
    font-weight: 700
}

.btn-primary:focus {
    background-color: #1a6e3c
}

.social-icon-view-products {
    border-top: solid 2px #ccc;
    margin-top: 30px
}

h6.social-icon-view-now {
    color: #b41f2e;
    font-weight: 700;
    font-size: 22px;
    padding-top: 20px
}

.cus-social-1 {
    margin-top: 10px!important
}

li.last-list a {
    margin-right: 0!important
}

.ab-1-top img {
    margin-bottom: 10px
}

.short-descrition-inner {
    min-height: 218px;
    max-height: 218px;
    overflow: hidden
}

ul.view-pro-img {
    white-space: nowrap
}

a.pro-linksss {
    display: block;
    background-color: #e4e4e4;
    margin-bottom: 3px;
    padding: 10px 0 10px 25px;
    color: #000;
    position: relative
}

a.pro-linksss:before {
    content: "-";
    position: absolute;
    left: 6px;
    font-size: 21px;
    top: 5px
}

body .pro-menu-inner a.pro-linksss.active {
    background-color: #c6c6c6
}

body .logo img {
    position: relative
}

.fea-products li {
    width: 18%!important;
    float: left;
    margin-right: 16px
}

.fea-products {
    white-space: nowrap
}

.cer-img-div img {
    text-align: right;
    margin: 0 0 0 auto;
    width: 80%
}

.cer-img-div {
    position: relative
}

.cer-img-div i.fa.fa-play {
    position: absolute;
    bottom: 5%;
    left: 130px;
    font-size: 15px;
    color: #fff;
    border: solid 3px;
    width: 50px;
    height: 50px;
    line-height: 45px
}

video#myVideo {
    object-fit: cover;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

.about-sec .owl-carousel img {
    width: 100%;
    padding: 0 2px
}

.video-box {
    width: 90%;
    margin: 0 auto
}

li.sales-manager {
    padding-top: 10px
}

.request.for.quate {
    float: right;
    padding: 7px;
    padding: 10px;
    text-align: center;
    position: relative;
    top: 27px;
    background: url(/images/image_2023_05_05T09_37_25_826Z.png);
    border-radius: 5px
}

.request.for.quate a {
    background-color: #d7d6d6;
    padding: 10px 30px 11px!;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600!important;
    color: #1a6e3c!important;
    margin: 0 auto
}

p.banner-para {
    font-size: 16px;
    line-height: 2;
    font-weight: 300
}

.btn.btn-primary.bannerbtn1 {
    border-radius: unset!important;
    box-shadow: unset!important;
    font-size: 16px;
    font-weight: 600!important;
    background-color: #d7d6d6!important;
    color: #000!important;
    text-transform: uppercase;
    padding: 9px 40px!important
}

.btn.btn-primary.bannerbtn {
    border-radius: 10px;
    box-shadow: unset!important;
    font-size: 13px;
    font-weight: 500!important;
    background-color: unset;
    color: #0069b7!important;
    text-transform: capitalize;
    padding: 11px 30px!important;
    border: 1px solid #0069b7!important
}

.bannermain .owl-prev {
    background-image: url(/images/left.png);
    width: 50px!important;
    height: 50px;
    line-height: 9;
    background-color: transparent!important;
    background-repeat: no-repeat
}

.bannermain i {
    display: none!important
}

li.prowrapper-list-last a img {
    width: auto!important
}

.products-home-main {
    position: relative
}

ul.prowrapper-list {
    position: relative;
    white-space: normal
}

li.prowrapper-list-first {
    width: 100%;
    float: left;
    position: relative;
    height: 70px;
    overflow: visible
}

li.prowrapper-list-last {
    float: right
}

a.pro-wrapper-absolute {
}

.products-home-main:hover a.pro-wrapper-absolute {
    left: 0;
    top: 0
}

a.pro-wrapper {
    color: #fff;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: -35px;
    right: 0!important;
    left: 0;
    background-color: #006993;
    width: 100%;
    padding: 20px 0
}

.owl-carousel-blogs .owl-nav {
    height: unset;
    display: block!important;
    top: 40%
}

.owl-carousel-blogs .owl-nav .owl-prev {
    background-image: url(/images/lefticon.png);
    width: 50px!important;
    height: 50px;
    line-height: 9;
    background-color: transparent!important;
    font-size: 0
}

.owl-carousel-blogs .owl-nav .owl-next {
    background-image: url(/images/righticon.png);
    width: 50px!important;
    height: 50px;
    line-height: 9;
    background-color: transparent!important;
    font-size: 0
}

section.images-sec h2.askldk {
    color: #b41f2e!important;
    text-transform: uppercase!important;
    font-weight: 700;
    font-size: 42px!important;
    margin: 0;
    padding-bottom: 40px;
    padding-top: 20px
}

.form-sec input::placeholder {
    color: #282828;
    font-style: unset
}

.form-sec textarea::placeholder {
    color: #282828;
    font-style: unset
}

.maps-imagess img {
    width: 100%!important
}

body .form-sec h2 {
    color: #fff;
    padding-left: 50px;
    line-height: 20px;
    font-weight: 600;
    max-width: 50%;
    line-height: 38px
}

p.asdaszxc a {
    display: inline-block;
    color: #fff;
    font-weight: 600
}

.products-home-inner a img {
    height: 250px;
    width: 100%!important
}

.search {
    float: right;
    padding-top: 6px
}

.search input[type=text]::placeholder {
    color: #e60012
}

.search input[type=text] {
    padding: 5px 17px;
    background-color: #fff;
    border: unset!important;
    color: #000!important;
    outline: none
}

.search input[type=submit] {
    position: absolute;
    top: 7px;
    right: 0;
    border-radius: 50px;
    border: unset;
    background-image: url(/images/Nanjing-Meetall_02.png);
    background-repeat: no-repeat;
    background-color: transparent;
    font-size: 0;
    width: 32px;
    height: 30px;
    background-size: 100% 100%;
    right: 0;
    left: 155px
}

.search {
    padding: 7px 4px;
    position: relative
}

.blo-til h4 {
    font-size: 20px;
    text-align: left;
    text-transform: capitalize;
    color: #282828;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1px;
    position: relative;
    padding-top: 15px
}

.blo-til p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #767676;
    font-weight: 500
}

p.date-format {
    margin-bottom: 0!important;
    padding-top: 5px;
    color: #fff!important;
    line-height: 20px;
    font-size: 16px;
    margin: 0!important;
    font-size: 19px;
    font-weight: 500!important;
    padding-top: 10px
}

ul.products li .product_thumb {
    float: right;
    line-height: unset!important;
    width: 100%;
    height: 100%!important
}

ul.products li .featrued_prod_title-2 {
    float: left!important;
    display: inline-block;
    margin-top: 45px;
    padding-left: 20px;
    width: 50%
}

ul.products li .pro-thumb {
    float: right;
    width: 50%
}

body .product_thumb img {
    width: 100%;
    height: 230px!important
}

.for-more-content {
    position: relative;
    top: 0;
    margin: 0 auto
}

.pro-title-div .pro-title-2 {
    color: #006993;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    padding-left: 10px;
    display: inline-block;
    line-height: 30px;
    font-family: lato
}

a.pro-link {
    background-color: #366;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 16px;
    letter-spacing: 1px;
    float: left;
    margin-top: 20px
}

body .contactmain {
    background-color: #efefef!important
}

li.item.column.even-li .pro-thumb {
    float: left
}

p.content-para {
    color: #fff!important;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.wsmenu-list li>.wsmenu-submenu {
    max-width: 120px
}

ul.home-gallery li {
    width: 20%;
    float: left;
    @}

h2.o-fact {
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 42px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 800;
    color: #b41f2e
}

.caption p {
    font-size: 17px;
    text-transform: none;
    font-weight: 400;
    padding-right: 90px;
    margin-top: 10px;
    color: #727272
}

li.req a {
    box-shadow: unset!important;
    font-size: 13px;
    font-weight: 500!important;
    color: #1a6e3c!important;
    background: NONE!important;
    text-transform: capitalize;
    text-align: center!important
}

.wsmenu-list>li.active:before {
    right: 0
}

.bannermain .owl-dots:before {
    content: "";
    height: 2px;
    position: absolute!important
}

h2.gernal-head {
    position: relative;
    color: #fff
}

h2.gernal-head:after {
    position: absolute;
    top: 50px;
    background-color: #f0f8ff
}

h2.gernal-head {
    position: relative;
    text-align: left;
    font-size: 40px;
    font-weight: 600;
    padding: 0 6px;
    color: #000;
    display: inline-block;
    text-transform: capitalize
}

.email-p h2.gernal-head {
    color: #fff;
    font-size: 34px;
    border-left: 5px solid #faf8f9
}

h2.gernal-headd:before {
    position: absolute;
    height: 4px;
    background-color: #231f20;
    left: 1px
}

h2.gernal-headd {
    position: relative;
    text-align: left;
    font-size: 36px;
    font-weight: 500;
    color: #25252e!important;
    margin-top: 40px;
    margin-bottom: 50px
}

h2.gernal-headd {
    position: relative
}

.prod_desc img {
    max-width: 100%;
    max-height: 100%
}

.prod_desc table {
    width: 100%
}

.view-products a {
    box-shadow: unset!important;
    font-size: 16px;
    font-weight: 500!important;
    background-color: #231f20!important;
    color: #fff!important;
    text-transform: capitalize;
    padding: 10px 30px!important
}

.view-products {
    text-align: right;
    margin-top: 25px
}

.heze-pros-main {
    margin-bottom: 30px;
    background: #fafafa;
    position: relative;
    transition: .5s ease;
    padding-top: 2px;
    background: url(/images/p-back.png);
    background-size: 100% 100%;
    background-position: center center
}

img.img-responsive {
}

.heze-main-1 img {
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.heze-main-1 {
    height: 220px;
    margin: 40px 10px 10px;
    clip-path: polygon(0 6%,100% 0,100% 100%,0 100%);
    position: relative
}

.heze-main-2 {
    height: 110px;
    padding-left: 0;
    text-align: center
}

.hmi-inner-wrapper-1 {
    padding: 0 10px
}

a {
}

.hmi-inner-wrapper-1 a {
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    min-height: 30px
}

.heze-inner-wrapper-2 a {
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 12px;
    border: 1px solid #f5a933;
    background-color: #f5a933;
    padding: 7px 30px;
    color: #fff
}

.heze-pros-main:hover {
}

section.services-sec {
    background: url(/images/service.jpg);
    background-size: cover;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 140px
}

.main-inner-div:hover.main-inner-div img {
    filter: brightness(100);
    transition: .3s ease
}

.main-inner-div:hover.main-inner-div h4 {
    color: #fff!important;
    transition: .3s ease
}

.main-inner-div:hover.main-inner-div p {
    color: #fff!important;
    transition: .3s ease
}

.-blogs-inner-1 img {
    pohezesition: absolute;
    left: 10px;
    top: 20px;
    width: unset!important
}

.heze-blogs-inner-1 img {
    position: absolute;
    left: 5px;
    top: 20px;
    width: unset!important
}

.heze-blogs-inner-1 {
    position: relative;
    padding-top: 17px;
    padding-bottom: 10px;
    padding-left: 14px;
    text-align: left;
    height: 100px
}

.blog-bg-color {
    height: unset!important
}

.ab-ft p {
    color: #fff;
    padding-right: 0;
    font-size: 13px;
    line-height: 22px
}

.ab-ft img:before {
    content: ""
}

ul.footer-menus-list {
    padding-top: 15px
}

ul.services-ul {
    padding-top: 15px
}

ul.ft-address {
    padding-top: 15px
}

ul.services-ul li {
    line-height: 32px;
    padding-left: 0;
    padding-right: 30px;
    height: 32px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 16px
}

ul.services-ul li:before {
}

ul.ft-address li {
    line-height: 35px
}

section.section-1 {
}

section.logo-sec img {
    margin-top: 0;
    max-width: 100%
}

ul.ft-address li p {
    line-height: 20px;
    font-size: 13px
}

.pro-menu {
    min-height: 600px
}

.caption p {
    font-size: 27px;
    text-transform: none;
    font-weight: 400;
    padding-right: 50px;
    margin-top: 5px;
    color: #1a6e3c!important;
    line-height: 30px;
    margin-top: 2px;
    text-transform: uppercase;
    padding: 0!important;
    font-size: 14px!important;
    text-transform: capitalize!important;
    line-height: 21px!important
}

. .caption p {
    font-size: 12px!important;
    text-transform: none;
    font-weight: 400!important;
    padding-right: 90px;
    margin-top: 5px!important;
    color: #fff!important
}

section.blogs-section {
    background: #f0f0f0;
    padding-bottom: 50px!important
}

.prod_desc td {
    padding: 8px 5px;
    border: solid .5px #ccc;
    text-transform: capitalize
}

.prod_desc table,.prod_desc td {
    border-collapse: separate;
    border: solid .5px #ccc
}

.prod_desc p {
    word-break: break-word
}

.prod_desc img {
    max-width: 100%!important;
    height: auto!important
}

.prod_desc div {
    max-width: 100%!important;
    height: auto!important
}

.prod_desc table div {
    width: 100%!important
}

.bannermain.innerbanner {
    margin-top: 0;
    height: 300px;
    overflow: hidden
}

section.inner-blogs {
    padding-top: 25px;
    padding-bottom: 25px;
    background: #eaf3f494
}

.contactmain {
    margin-top: 0;
    padding-top: 15px!important
}

.contactmain h4 {
    padding: 5px 0 10px 13px
}

a.filter-head {
    display: none
}

.menu_opened .arrow {
    background-color: #1a6e3c;
    color: #fff!important
}

.menu_opened:hover .arrow {
    background-color: #056da4
}

.menu_opened .arrow:before {
    color: #fff!important
}

body .menu_opened .active_child {
}

.cat_level_1.menu_opened>a.un_actives {
}

.menu_opened.p_active a {
    background-color: #1a6e3c!important;
    color: #fff!important
}

.menu_opened.p_active a:before {
    color: #fff
}

.menu_opened.p_active a.un_actives {
    background-color: #ccc!important;
    color: #000!important
}

.menu_opened.p_active a.un_actives:before {
    color: #000!important
}

.menu_opened.p_active a.pro-linksss {
    background-color: #ccc!important;
    color: #000!important
}

.menu_opened.p_active a.pro-linksss:before {
    color: #000
}

.owl-carouselbg .owl-dots {
    display: none
}

.wsmenu-list li.active {
    padding: 0
}

p.small {
    font-size: 15px;
    font-weight: 700
}

.heze-inner-wrapper-2 {
    text-align: center;
    margin-top: 20px
}

.heze-pros-main:hover {
    transition: .3s;
    background: url(/images/nbv.png)!important;
    background-repeat: no-repeat!important;
    background-size: cover!important
}

.heze-pros-main:hover .heze-inner-wrapper-2 a {
    color: #f5a933;
    background=c: #fff;
    background-color: #fff
}

.heze-pros-main:hover .hmi-inner-wrapper-1 a {
    color: #fff;
    transition: .2s
}

.main-about p {
    color: #fff;
    margin-top: 10px;
    margin-right: 60px
}

section.images-sec .gernal-headd {
    margin-top: 20px
}

ul.main-ul {
    width: 100%
}

.main-inner-div:hover {
    background-color: #f5a933;
    transition: .5s
}

.col-md-7.col-sm-6.col-xs-12.col-lg-7.mainnn {
    margin-top: 50px
}

.main-inner-div.one {
    clip-path: polygon(0% 22%,100% 7%,100% 100%,0 100%)
}

.main-inner-div.two {
    clip-path: polygon(0% 7%,100% 18%,100% 100%,0 99%)
}

.main-inner-div.three {
    clip-path: polygon(0% 8%,100% 7%,100% 97%,0 84%)
}

.main-inner-div.four {
    clip-path: polygon(0% 7%,100% 7%,100% 86%,0 97%)
}

.col-md-5.col-sm-6.col-xs-12.col-lg-5.main-1 {
    margin-top: 40px
}

section.blogs-section .gernal-headd {
    margin: 60px 0 50px
}

.blog0 {
    clip-path: polygon(0% 22%,100% 7%,100% 100%,0 100%)
}

.blog1 {
    clip-path: polygon(0% 7%,100% 18%,100% 100%,0 100%)
}

.blog2 {
    clip-path: polygon(0% 0%,100% 0%,100% 97%,0 84%)
}

.blog3 {
    clip-path: polygon(0% 0%,100% 0%,100% 86%,0 97%)
}

.blog2 .blo-til {
    top: 0
}

.blog3 .blo-til {
    top: 0
}

img.ab-img-sec.img-responsive {
    padding: 25px
}

.why-bg h2.gernal-head {
    font-weight: 600!important;
    padding-right: 110px;
    padding-left: 15px;
    font-size: 34px
}

p.why-para {
    margin-top: 20px;
    color: #231f20;
    font-size: 14px!important;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
    padding-right: 50px;
    text-align: justify;
    margin-bottom: 50px
}

.why-bg {
    margin-top: 150px
}

.white-bg strong {
    color: #525252;
    font-size: 17px!important;
    text-transform: none
}

section.why {
    background: url(/images/backk.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0;
    max-width: 1600px;
    margin: 0 auto
}

section.email {
    background: url(/images/email-back.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 90px 0 0;
    max-width: 1600px;
    margin: 0 auto
}

.email-p {
    margin-top: 120px
}

p.email-para {
    color: #fff;
    font-size: 14px
}

.email .email-btn {
    background: #faf8f9!important;
    padding: 11px 35px!important;
    display: inline-block;
    color: #f5a832;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 16px!important;
    font-weight: 500;
    border: 1px solid #fff
}

.subscribe {
    margin-top: 20px;
    width: 100%
}

.email .custom-input-email {
    height: 47px;
    background-color: #f5a832;
    border: solid 2px #fff;
    color: #fff;
    width: 60%;
    float: left;
    position: relative
}

.email button#inquiry_form_btn {
    width: 25%;
    margin-left: 12px
}

.footer-p {
    margin-top: 25px
}

.catagories {
    margin-top: 20px
}

ul.products-ul {
    width: 100%
}

a {
}

ul.products-ul li {
    width: 45%;
    float: left;
    border: 1px solid #fff;
    margin-right: 7px;
    margin-bottom: 5px
}

ul.products-ul li a {
    padding: 3px 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 9px;
    text-transform: capitalize!important
}

.white-bg strong {
    color: #525252;
    font-size: 16px!important;
    text-transform: none
}

.service-heading {
    width: 100%;
    margin-top: 10px
}

.service-heading img {
    width: 15%;
    margin-top: 31px;
    float: left;
    margin-left: 10px
}

.main-inner-div.four p {
}

.main-inner-div.four img {
    margin-top: 12px
}

.btn-products {
    text-align: right
}

.main-inner-div h4:before {
}

.main-inner-div h4:before {
    content: "";
    position: absolute;
    background-color: #f5a832;
    height: 5px;
    width: 39px;
    transform: rotateZ(90deg);
    left: -20px;
    top: 40px
}

.main-ul:hover .main-inner-div h4:before {
    background-color: #fff!important;
    transition: .3s
}

.my_inquire {
    text-align: center
}

ul.cus-social-11 {
    display: inline-block;
    padding-top: 10px
}

ul.cus-social-11 li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    text-align: center;
    color: #fff!important
}

.gfh {
    margin-bottom: -2px
}

ul.btn-groups:hover {
    opacity: .8;
    transition: .3s
}

.my_inquire:hover {
    opacity: .8;
    transition: .3s
}

a.readmore.button.hvr-bounce-to-right:hover {
    opacity: .8;
    transition: .3s
}

a.btn.btn-primary.bannerbtn:hover {
    opacity: .8;
    transition: .3s;
    border: unset
}

button#inquiry_form_btn:hover {
    opacity: .8;
    transition: .3s
}

.sss {
    text-align: right
}

@media only screen and (min-width: 320px) and (max-width:999px) {
    body h2.contact-head {
        font-size:21px
    }

    .request.for.quate {
        background: #006e4b;
        height: 50px;
        width: 200px;
        margin: 0 auto;
        float: unset;
        top: 7px
    }

    .request.for.quate a {
        color: #fff!important
    }

    body .map-content h3 {
        font-size: 18px
    }

    body .wsmenucontainer.wsoffcanvasopener {
        margin-left: 0;
        z-index: 99999
    }

    body .wsmenu-list>li>a:hover {
        color: #000!important
    }

    p.green-news {
        color: green;
        margin-bottom: 22px!important;
        margin-top: -15px!important
    }

    body .my-menu nav#wsnavtoggle {
        margin-top: 0
    }
}

.container.wsmenucontainer {
    border-radius: 10px
}

.wsmenu-list li.active a {
    color: #fff!important;
    font-weight: 600
}

.main-inner-serv:before {
}

.main-inner-serv {
    position: relative;
    height: 270px;
    padding: 10px;
    text-align: center;
    transition: .3s;
    background-repeat: no-repeat!important;
    background: url(/images/service-back.jpg);
    background-size: 100% 100%;
    margin: 10px;
    transition: .3s
}

.main-serv-inner {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto
}

.main-serv-inner-img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 100%;
    padding: 0 10px;
    transition: .3s ease;
    top: 60px;
    border: 2px solid #1a6e3c;
    height: 60px;
    width: 60px;
    text-align: center;
    background: #1a6e3c
}

.main-serv-inner-2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%
}

.main-serv-inner-2 h4 {
    color: #1a6e3c;
    font-weight: 700;
    font-size: 22px;
    transition: .3s
}

.main-serv-inner-2 {
}

.main-serv-inner-2 p {
    text-align: left;
    color: #888;
    transition: .3s;
    font-weight: 500
}

.main-inner-serv:hover {
}

h4 {
}

.main-inner-serv:hover .main-serv-inner-2 h4 {
}

.main-inner-serv:hover .main-serv-inner-2 p {
}

.main-inner-serv:hover.main-inner-serv:before {
    height: 5px;
    position: absolute;
    border-radius: 0 0 10px 10px;
    left: 20px;
    top: 0;
    margin: 0 auto;
    transition: .3s
}

.one {
    margin-top: 25px
}

section.images-sec h2.gernal-headd {
    margin-bottom: 51px
}

.chance-pros-main {
    position: relative
}

.chance-pros-main:hover .chance-pro-2 {
    background-color: #f5a832!important;
    color: #fff!important;
    transition: .3s ease
}

.chance-pros-main:hover .chance-pro-2 .chance-inner-wrapper-view a {
    color: #9f7d48;
    background-color: #fff;
    transition: .3s ease
}

.chance-pros-main:hover .chance-inner-wrapper-product a {
    color: #fff;
    transition: .3s ease
}

.prod_desc h3 {
    color: #9f7d48
}

.ab-ft img {
    max-width: 80%;
    max-height: 100px
}

section.menu {
    margin-top: 100px
}

.chance-pros-main:hover .chance-main-1 {
    border-radius: 8px;
    border: 2px solid #f5a832
}

.banner_overlay {
}

.chance-pro-2 {
    text-align: left;
    margin: 0 auto;
    min-height: 31%;
    background-color: #f0f0f0;
    position: relative;
    padding-left: 20px;
    padding-top: 25px;
    width: 60%;
    float: right;
    padding-right: 15px
}

.chance-pros-main {
    position: relative;
    height: 365px
}

.chance-main-1 {
    max-width: 100%;
    margin: 0 auto;
    height: 270px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 0 2px 2px #ccc;
    position: relative;
    background-color: #fff;
    border: 1px solid#ccc
}

.chance-inner-wrapper-product a {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    padding: 0 5px;
    padding-top: 17px
}

.chance-inner-wrapper-view a {
    background-color: #f5a832;
    border-radius: 5px;
    padding: 8px 20px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize
}

.chance-inner-wrapper-view {
    margin-top: 20px
}

.chance-main-1 img {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.contact-img-scr img {
}

section.contactus h2.gernal-head {
    margin-bottom: 40px;
    margin-top: 40px
}

.owl-dots .owl-dot.active span {
    background: #f5a832!imporatant;
    border: unset
}

.blogs {
    height: 440px;
    background: #fff;
    margin-top: 30px
}

.main-blogs {
}

.blogs-two {
    text-align: center;
    margin: 0 auto;
    height: 150px
}

p.descritopn-blogs {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding-right: 20px
}

a.anchor {
    color: #0069b7;
    font-weight: 600;
    text-align: left!important
}

.heze-blogs-inner-2 {
    text-align: left;
    padding-left: 16px
}

.owl-dots .owl-dot {
    display: inline-block;
    margin-right: -10px!important
}

section.o-products.form-sec .container {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 60px 15px
}

.servv a {
    background-color: #fff;
    padding: 12px 20px;
    color: #0069b7;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    margin-right: 15px
}

h2.serves-2 {
    text-align: left;
    color: #fff
}

h2.serves-3 {
    text-align: left;
    color: #f5a832!important
}

.servvvv li a {
    border: 1px solid #fff;
    padding: 12px 15px;
    color: #fff
}

.servv {
    margin-bottom: 15px;
    display: inline-block
}

.view {
    text-align: left;
    margin-top: 60px;
    margin-left: -15px
}

.view a {
    background: #1a6e3c!important;
    padding: 10px 30px!important;
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 15px!important;
    font-weight: 500!important
}

li.last {
    margin-top: 17px
}

.main-serv-inner-img img {
    padding-top: 9px
}

.chance-pros-mainn {
    height: 120px;
    background: #f0f0f0;
    margin-top: 0;
    width: 100%;
    position: relative
}

.chance-mainn-1 img {
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 10px
}

.chance-mainn-1 {
    max-width: 100%;
    height: 110px;
    position: relative;
    top: 10px;
    width: 40%;
    float: left
}

section.featured {
    background: #fff;
    padding-bottom: 40px;
    padding-top: 0
}

.chance-innerr-wrapper-product a {
    color: #000;
    font-weight: 600
}

.chance-inner-wrapperr-view a {
    color: #1a6e3c;
    font-weight: 600
}

.chance-inner-wrapperr-view {
    padding-top: 5px;
    opacity: 0;
    transition: .5s
}

.main-blogs {
    height: 250px;
    margin: 10px;
    position: relative;
    top: 10px
}

.heze-blogs-inner-11 img {
    display: inline-block
}

.heze-blogs-inner-11 p {
    display: contents
}

.heze-blogs-inner-11 {
    text-align: left;
    border-bottom: 1px solid #ccc;
    max-width: 80%;
    margin-left: 20px;
    padding-bottom: 15px;
    padding-top: 17px
}

.servvvv {
    display: inline-block
}

ul.ser-button {
    display: inline-flex;
    padding-left: 50px;
    padding-top: 30px
}

p.serves-22 {
    color: #fff;
    padding-left: 54px;
    font-size: 18px;
    max-width: 40%
}

.aaa {
    background-color: #eaf3f4;
    margin-top: 25px;
    padding-bottom: 40px
}

.divi-cont-2 {
}

.contact-img-scr {
    margin-left: -16px
}

section.contactus {
    padding-top: 40px;
    padding-bottom: 40px
}

.f4 {
    padding-left: 40px
}

.ab-ft .logo {
    margin-top: -15px
}

.search-btn {
    padding-right: 15px
}

.search-btn form {
    position: absolute!important;
    top: 50%;
    right: 0;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 262px;
    height: 35px;
    background: 0 0;
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
    padding: 5px;
    position: relative
}

.search-btn input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    opacity: 1!important
}

.header-search-btn {
    font-size: 0;
    border: unset
}

.header-search-btn i.fa.fa-search {
    font-size: 17px;
    color: #fff;
    background-color: transparent!important;
    position: absolute;
    bottom: 5px;
    left: -9px;
    font-weight: 600
}

.search-btn form:hover input {
    display: block
}

button.header-search-btn:focus {
    outline: 0
}

button.header-search-btn:focus {
    outline: 0
}

.content-hidden p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.content h2 {
    font-size: 32px
}

.content-hidden {
    overflow: hidden;
    transition: .5s ease;
    padding-left: 3px!important;
    max-height: 230px
}

body .content-hidden h1:nth-child(1),body .content-hidden h2:nth-child(1),body .content-hidden p:nth-child(1) {
    display: block!important
}

body .content-hidden h1,body .content-hidden h2,body .content-hidden h3,body .content-hidden h4,body .content-hidden h5,body .content-hidden h6,body .content-hidden p,body .content-hidden p span {
    display: none!important
}

button#toggleBtn {
    outline: unset
}

.content-hidden p:nth-child(2) {
    display: block!important
}

.product_secondary_images_container {
    height: 140px;
    position: relative
}

.product_secondary_images_container img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

body .logo img {
}

input[type=search]::placeholder {
    color: #fff
}

.search-btn form:before {
    position: absolute;
    content: "";
    background: #fff;
    height: 2px;
    width: 19%;
    right: -44px;
    transform: rotate(144deg);
    bottom: 13px
}

.search-btn {
    margin-top: 15px;
    position: relative
}

.my-menu {
    margin-top: 49px
}

h2.gernal-headd:before {
    position: absolute;
    background: url(/images/before.png);
    content: "";
    width: 100%;
    background-repeat: no-repeat;
    bottom: -15px!important;
    padding-bottom: 10px
}

.images-sec .owl-carousel .owl-nav.disabled {
    display: block
}

.images-sec .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    left: 0
}

.images-sec .owl-carousel .owl-nav.disabled i {
    display: none
}

.images-sec .owl-prev {
    background-image: url(/images/leftt.png);
    width: 50px!important;
    height: 50px;
    line-height: 9;
    background-color: transparent!important;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
    left: -25px
}

.images-sec .owl-nav .owl-next {
    float: right;
    background-image: url(/images/rightt.png);
    width: 50px!important;
    height: 50px;
    line-height: 9;
    background-color: transparent!important;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
    right: -45px
}

.main-inner-serv:hover {
    background: #1a6e3c;
    transition: .3s
}

.main-inner-serv:hover .main-serv-inner-img {
    background: #fff;
    border: #fff;
    transition: .3s
}

h4 {
}

.main-inner-serv:hover .main-serv-inner-2 h4 {
    color: #fff;
    transition: .3s
}

img.img-responsive {
}

.main-inner-serv:hover .main-serv-inner-img img {
    filter: invert(1)
}

.chance-pros-mainn:before {
    position: absolute;
    height: 2px;
    width: 93%;
    content: "";
    background: #ccc;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto
}

section.featured .my-pro:nth-child(13) .chance-pros-mainn::before,section.featured .my-pro:nth-child(14) .chance-pros-mainn::before,section.featured .my-pro:nth-child(15) .chance-pros-mainn::before {
    display: none
}

.main-blogs-2 {
    position: absolute;
    top: 8%;
    left: 10%
}

.main-blogs-2 h4 {
    color: #fff;
    font-size: 30px;
    width: 70%;
    line-height: 40px;
    font-weight: 400!important;
    margin-bottom: 38px;
    font-weight: 600!important
}

.yinte-main-blogs-anchor a {
    background: #1a6e3c!important;
    padding: 6px 25px!important;
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 15px!important;
    font-weight: 500!important
}

.main-blogs-2 h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600
}

p.date-format.pp {
    color: $fff;
    color: #1a6e3c!important
}

.yinte-main-blogs-2 h4 {
    color: #000;
    padding-bottom: 18px
}

.yinte-main-blogs-2 {
    border-bottom: 1px solid #ccc;
    margin-bottom: 24px
}

.form-secc .view {
    margin-top: 0
}

section.form-secc h3 {
    color: #1a6e3c;
    margin-bottom: 2px
}

section.form-secc p {
    color: #5a5a5a;
    font-size: 15px
}

section.form-secc {
    padding-bottom: 40px
}

ul.ft-address h5 {
    margin: 0;
    font-weight: 600
}

.chance-pros-mainn:hover .chance-inner-wrapperr-view {
    opacity: 1;
    transition: .5s
}

p.p-content {
    width: 200%
}

.chance-pros-mainnn {
    height: 320px;
    position: relative;
    border: unset!important
}

.chance-mainnn-1 {
    height: 240px;
    position: relative;
    border: solid 2px #ccc;
    transition: .5s
}

.chance-mainnn-1 img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    padding: 1px 5px
}

.chance-innerr-wrapper-productt a {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize!important;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
    font-size: 13px!important;
    color: #000;
    text-align: center;
    color: #2b2b2b;
    min-height: 18px
}

.chance-proo-2 {
    padding-left: 8px;
    padding-bottom: 0;
    padding-right: 8px;
    padding-top: 10px
}

.chance-inner-wrapperr-vieww a {
    color: #1a6e3c;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    display: block
}

.yinte-main-blogss {
    height: 260px;
    width: 100%;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc
}

.yinte-main-blogs-11 {
    width: 40%;
    float: left;
    height: 240px
}

.yinte-main-blogs-22 {
    width: 60%;
    float: left;
    height: 240px;
    padding-left: 25px
}

.yinte-main-blogs-11 img {
    max-height: 100%;
    max-width: 100%
}

.yinte-main-blogs-22 h4 {
    color: #1a6c3b;
    font-weight: 600;
    font-size: 22px;
    font-size: 17px;
    padding-top: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 2px;
    padding-right: 10px
}

.yinte-main-blogs-22 p {
    color: #525252;
    font-size: 14px;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 25px;
    font-weight: 500
}

.yinte-main-blogs-22 a {
    font-size: 14px;
    color: #fff;
    font-weight: 500
}

p.date-format img {
    padding-right: 7px
}

p.blog-content {
    min-height: 100px
}

a.none {
    background: unset!important
}

.yinte-main-blogs-anchorr {
    margin-left: -50px
}

.yinte-main-blogs-anchorr a {
    background: #1a6e3c;
    padding: 6px 25px!important;
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 15px!important;
    font-weight: 500!important
}

.fifty {
    width: 49%;
    float: left
}

.fifty.f {
    margin-left: 10px
}

ul.contact-list li {
    height: 100px;
    background-color: #fff;
    padding-left: 25px;
    padding-top: 20px;
    border-radius: 5px
}

ul.contact-list h5 {
    color: #000;
    font-weight: 600;
    padding-left: 62px;
    line-height: 0
}

h2.contact-head {
    color: #1a6e3c;
    font-weight: 400;
    padding-left: 13px;
    padding-bottom: 10px
}

.back-colour {
    background: #fff;
    border-radius: 5px;
    padding-bottom: 33px;
    padding-top: 10px
}

.map-location iframe {
    width: 100%
}

.map-content {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px
}

.map-content h3 {
    font-size: 30px;
    font-weight: 500;
    color: #1a6e3c;
    margin-bottom: 15px
}

.map-content p {
    font-size: 14px
}

.map {
    padding-bottom: 50px
}

.owl-show-products .owl-item .item {
    display: block
}

.owl-show-products {
    transform: rotate(90deg);
    width: unset;
    position: relative
}

.owl-show-products .owl-nav {
    display: block!important
}

.owl-show-products .owl-dots {
    display: none
}

.owl-show-products .owl-next {
    display: inline-block
}

.owl-show-products .owl-prev {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto
}

ul.view-pro-img {
    white-space: unset!important;
    z-index: -1
}

.owl-show-products .owl-item {
    transform: rotate(-90deg)
}

.owl-show-products .owl-stage {
    display: inline-block
}

.owl-show-products .owl-item img {
    width: unset!important;
    display: inline-block
}

.main-blogs-1 {
    position: relative
}

.main-blogs-1:before {
    position: absolute;
    color: "";
    content: "";
    background: #00000052;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto
}

.animated {
    -webkit-animation-duration: 1000 ms;
    animation-duration: 1000 ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

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

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

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

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.footer-p p {
    line-height: 36px
}

.footer-p {
    margin-top: 0
}

@media only screen and (max-width: 992px) {
    body .bannermain.innerbanner {
        height:120px
    }
}

.seo-content .content ul li,.seo-content .content ol li {
    list-style: disc!important
}

.content-hidden p span:nth-child(2) {
    display: block!important
}

.content-hidden p:nth-child(2) span {
    display: block!important
}

.seo-content .content ul,.seo-content .content ol {
    list-style: disc;
    overflow: hidden
}

.seo-content .content ul li,.seo-content .content ol li {
    position: relative;
    margin-left: 15px
}

.seo-content .content ul li::before,.seo-content .content ol li::before {
    content: "";
    background-color: #000;
    opacity: 0;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    border-radius: 100%;
    top: 10px;
    overflow: hidden;
    z-index: 9
}

.scroll-filterations::-webkit-scrollbar-thumb,.scroll-filterations::-webkit-scrollbar-track,.scrollbar::-webkit-scrollbar-thumb,.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px
}

.scroll-filterations::-webkit-scrollbar-track {
    background-color: #f5f5f5
}

.scroll-filterations::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
    padding: 0 0 0 20px
}

.scroll-filterations::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to bottom,#1a6e3c,#1a6e3cf7,#1a6e3c,#1a6e3ca1,#1a6e3c4d)
}

body .scroll-filterations {
    height: 90px;
    overflow-x: hidden
}

h2.jhgs {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    border-bottom: solid 1px;
    padding-bottom: 6px;
    margin-left: 15px;
    margin-top: 16px
}

.prod_desc th {
    padding: 10px;
    border-collapse: separate;
    border: solid .5px #ccc
}
