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

body {
    font-family: raleway,sans-serif
}

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: 9999;
    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 {
    display: flex;
    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;
    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: 45px 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-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    max-width: 1600px;
    margin: 0 auto;
    background: #f8f8f8
}

footer a {
    color: #bbb;
    font-weight: 500;
    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 {
    /* color: #007bc3; */
    font-family: josefin sans,sans-serif;
    font-weight: 600;
    margin: 0 0 24px
}

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

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


.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;
        background: #06142b!important
    }

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

.caption {
    position: absolute;
    top: 37%;
    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: center!important;
    width: 55%;
    margin: 0 auto
}
.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: 50%;
    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: 0!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;
    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 {
}

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: 80px!important;
    opacity: 1
}

.wlc-bg img {
}

@media only screen and (max-width: 992px) {
    body .main-pic img {
        max-width:unset!important
    }

    body .owl-carousel-vertical .owl-nav {
        display: none
    }

    body .ZoomContainer {
        display: none
    }

    body .owl-carousel-vertical {
        transform: unset!important;
        width: 100%;
        overflow: hidden;
        position: relative
    }

    body .owl-carousel-vertical .owl-stage-outer {
        width: 100%!important;
        position: relative;
        overflow: hidden
    }

    body .owl-carousel-vertical .owl-item {
        transform: unset!important;
        height: 62px!important;
        width: 62px!important;
        display: inline-block!important
    }

    body .owl-carousel-vertical .owl-stage {
        width: 110%!important;
        position: relative
    }

    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 .\34 -star-1 img {
        border: unset!important
    }

    body span.comment {
        font-size: 13px
    }

    body .accordion {
        background-color: transparent;
        color: #000;
        cursor: pointer;
        padding: 10px;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: .4s;
        margin-bottom: 0;
        border: 1px solid #064b76;
        font-weight: 400;
        text-align: center;
        font-size: 13px
    }

    body .col-xs-12.col-sm-12.col-md-3.col-lg-3.zza {
        padding-left: 15px
    }

    body img.img-responsive {
        max-height: 100%;
        max-width: 100%;
        margin: 0 auto!important
    }

    body div#products-box {
        display: none
    }

    body .nonee {
        display: block
    }

    body h3.cat-h3 {
        display: none
    }

    .cap_code .btn-primary {
        float: left!important;
        margin-left: 10px
    }

    body .col-xs-6 .factory-images {
        height: 160px;
        max-width: 100%;
        margin-bottom: 30px
    }

    body .col-xs-6 .factory-images img {
        max-height: 100%!important;
        max-width: 100%!important
    }

    body section.form-secc {
        background: url(/images/discoverrr.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding-top: 60px;
        padding-bottom: 60px;
        margin-top: 20px
    }

    body h2.serves-2 {
        color: #fff;
        line-height: 20px;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 22px
    }

    body h4.serves-22 {
        text-align: center;
        color: #fff;
        padding-top: 24px;
        font-size: 15px;
        font-weight: 400
    }

    body .chance-main-11 {
        height: 350px
    }

    body .LEFTT {
        padding-left: 20px
    }

    body .chance-inner-wrapper-productt a {
        color: #064b76;
        font-size: 16px;
        font-weight: 500
    }

    body .chance-pro-22-main {
        border-bottom: 2px solid #1a48a826;
        padding-bottom: 25px;
        margin-top: 40px
    }

    body .product_secondary_images.pd-thumbs.col-xs-12 {
        margin-top: 15px
    }

    body ul.view-pro-img {
        position: relative
    }

    ul.view-pro-img li {
        width: 19%;
        height: 100px
    }

    body .stracci-main-category-wrapper2s {
        position: absolute;
        bottom: 70px;
        left: 0;
        right: 0;
        text-align: center
    }

    body .stracci-main-category-wrapper2s h4 {
        color: #fff!important;
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        margin: 5px 0
    }

    body .chance-pros-mainnn {
        position: relative;
        height: 250px
    }

    body .chance-main-1 {
        max-width: 100%;
        margin: 0 10px;
        height: 120px;
        margin-top: 20px;
        position: relative
    }

    body section.top p {
        text-align: center;
        font-size: 12px;
        color: #fff;
        display: inline-block;
        font-weight: 300
    }

    body .social {
        display: block;
        float: unset
    }

    body .my-view {
        width: 36%
    }

    body h2.general-head {
        font-size: 22px
    }

    body p.general-para {
        font-size: 12px
    }

    body .video-div-para a {
        font-size: 11px
    }

    body body .video-div-para a {
        border: solid 2px #fff;
        padding: 10px 20px;
        color: #fff;
        text-transform: capitalize;
        margin-left: 5px;
        text-decoration: none;
        font-size: 11px
    }

    .video-div-para {
        position: absolute;
        left: 0;
        right: 0;
        top: 30%!important
    }

    body .video-div-para p {
        color: #fff!important;
        font-size: 18px;
        margin-bottom: 0;
        text-transform: UPPERCASE;
        font-weight: 600;
        padding-bottom: 20px
    }

    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: 2px;
        margin: 0;
        right: 22px;
        border: 1px solid #000;
        background: #fff;
        z-index: 1!important
    }

    body .pro-menu {
        min-height: unset!important;
        padding-left: 20px
    }

    footer h4 {
        margin-top: 30px;
        font-size: 16px!important;
        margin-top: 30px!important
    }

    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 .main-pic img {
        max-width:400px!important;
        max-height: 240px!important
    }

    body .cart.pull-left {
        right: 15px;
        top: -10px
    }

    body .language-converter select {
        right: 0;
        position: absolute;
        width: 40%!important;
        left: unset;
        top: 0;
        top: -49px;
        margin-right: 0
    }

    body .content-main {
        padding-left: 0;
        padding-right: 0!important
    }

    body select {
    }

    body .wholesaleimages {
        height: unset
    }

    .content-main {
        padding-left: 0!important
    }

    body .to-wrapper {
        top: 32px;
        right: unset
    }

    body .whole-sale h2 {
    }

    body a.shopp {
        padding: 4px 20px!important;
        font-size: 12px;
        width: unset;
        display: inline-block;
        min-width: unset
    }

    body a.logo {
        margin: 0 auto
    }

    .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;
        max-width: 140px!important
    }

    html body section.logo-sec {
        background: #fff!important;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: -10px!important;
        padding-bottom: 10px
    }

    .caption {
        top: 30%
    }

    .caption2 {
        font-size: 36px
    }
}

@media only screen and (max-width: 600px) {
    .mobile-sub .wsmenu-submenu li a:before {
        content:"-";
        position: absolute;
        left: 30px
    }

    body .ElementsApp,.ElementsApp .InputElement {
        color: #32325d;
        font-family: Arial,sans-serif;
        font-size: 13px!important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

    body #card-element {
        border-radius: 4px 4px 0 0;
        padding: 12px;
        border: 1px solid rgba(50,50,93,.1);
        height: 44px;
        width: 100%;
        background: #fff;
        margin: 0 auto;
        font-size: 12px
    }

    body .pull-right.left.col-sm-1.col-xs-1 {
        position: relative;
        left: -10px
    }

    body .chance-inner-wrapperrss {
        position: absolute;
        display: flex;
        top: 15px;
        transition: .3s;
        opacity: 0
    }

    body .video-div-para a {
        border: solid 2px #fff;
        color: #fff;
        text-transform: capitalize;
        margin-left: 5px;
        text-decoration: none;
        max-width: 90px!important;
        display: inline-block!important;
        min-width: 90px;
        padding: 3px 0
    }

    body .stracci-main-category-2 {
        position: relative;
        height: 140px;
        width: 49%!important
    }

    body span.zayak-detailss-1 strong {
        padding-left: 7px;
        font-weight: 700;
        color: #fff;
        font-size: 11px
    }

    body span.zayak-detailss-1 strong.my-ghs {
        color: #fff;
        padding-left: 0!important;
        font-size: 10px;
        position: relative;
        top: 0;
        text-transform: lowercase
    }

    body div#popup {
        margin-top: 0!important;
        width: unset;
        height: 28px;
        overflow: hidden;
        margin-top: 2px!important;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        padding: 0 10px;
        margin: 0 auto;
        text-align: center!important;
        width: 50%;
        height: unset
    }

    body .logo-sec .popo {
        color: #fff!important;
        transition: 1s;
        margin-top: 15px!important;
        margin-top: 0!important;
        position: relative!important;
        line-height: 12px!important;
        font-size: 11px!important;
        padding: 8px 10px 8px 28px!important;
        border-radius: 6px;
        background: #389f3b
    }

    body span#myCart {
        width: 22px;
        font-size: 16px!important;
        position: relative;
        left: 20px;
        position: relative;
        top: -23px!important;
        font-size: 12px!important;
        margin-top: 20px;
        height: 20px!important;
        z-index: 99999
    }

    body section.wrapper-back {
        background-size: cover;
        background-position: center center
    }

    body section.cat-feat {
        padding-top: 30px;
        padding-bottom: 10px
    }

    body .chance-pros-mainn {
        height: 230px!important
    }

    body .chance-mainn-1 {
        max-width: 100%;
        height: 280px
    }

    body .video .play-btn {
        width: 45px;
        height: 45px;
        bottom: 0!important;
        left: 0;
        right: 0;
        margin: auto
    }

    body .cont-cont {
        height: unset
    }

    body .view {
        text-align: center;
        margin-top: 0
    }

    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: 50px!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
    }

    @medi .main-about p {
        color: #fff;
        margin-top: 20px!important;
        margin-right: 0px!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
    }

    section.about-sec p {
        font-size: 14px;
        padding-right: 0!important;
        text-align: center!important;
        padding-bottom: 20px!important
    }

    section.blogs-section {
        padding-bottom: 20px!important
    }

    footer {
    }

    .ft-bg-color {
        padding: 40px 15px 20px!important
    }

    .footer-p p:before {
        display: none
    }

    ul.cus-social {
        margin-bottom: 40px!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;
        text-align: center!important;
        font-weight: 400;
        font-size: 12px
    }

    .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: 22px!important;
        font-weight: 600;
        text-align: center!important;
        margin-bottom: 0!important;
        border-left: unset!important;
        margin-top: 10px!important;
        padding-bottom: 10px!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;
        opacity: 0
    }

    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: 100%!important;
        max-height: 100%!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;
        height: 66px!important;
        display: inline-block!important
    }

    body section.top {
        padding: 0!important
    }

    .caption {
        top: 20%
    }

    .caption2 {
        font-size: 20px
    }
}

.caption2 {
    font-size: 42px;
    max-width: 580px;
    margin-bottom: 20px;
    color: #0069b7;
    font-weight: 800!important;
    text-transform: capitalize;
    line-height: 50px!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;
    display: none
}

body .bannermain .owl-carousel .owl-nav.disabled {
    display: block
}

.bannermain .owl-carousel1 .owl-dots {
    display: block
}

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: 100px 0!important;
    background: url(/images/back-back.jpg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1600px;
    margin: 0 auto
}

body .form-sec {
    padding: 190px 0!important
}

.form-sec {
    background: url(/images/discover.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 {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    display: inline-block
}

body .azxczx {
    background-color: #161616!important;
    padding: 15px
}

body footer {
    padding-bottom: 0!important
}

.btn-primary {
    background-color: #064b76;
    border-color: #064b76;
    padding: 8px 30px;
    text-transform: capitalize;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: unset!important;
    box-shadow: 0 0 5px #ccc
}

@media only screen and (max-width: 800px) {
    body .stracci-main-category-wrapper2s p {
        font-size:13px
    }

    body div#header {
        position: relative!important
    }

    body .question {
        padding: 20px
    }

    body .icon-main-1.zxz {
        width: unset
    }

    body .ext-padd {
        position: relative;
        display: block!important;
        margin-top: 20px;
        float: unset!important;
        text-align: center!important
    }

    body .question h3 {
        font-size: 13px;
        font-weight: 500;
        color: #064b76
    }

    body p.answer {
        font-size: 12px
    }

    body section.QuestionAnswer h4 {
        font-size: 15px
    }

    body .main-faq {
        height: 220px;
        box-shadow: 0 0 15px #ccc;
        margin-bottom: 30px;
        padding: 0 15px
    }

    body .icon-main {
        text-align: center;
        margin: 0 auto;
        margin-bottom: 40px
    }

    body .return-policy h3 {
        color: #064b76!important;
        font-weight: 400;
        font-size: 16px;
        padding-bottom: 20px
    }

    body p.returns-p {
        font-size: 14px;
        padding-bottom: 16px;
        font-weight: 300;
        color: #000
    }

    body h2.returns {
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        color: #2e3032;
        padding-bottom: 20px
    }

    body .lef {
        padding-left: 20px
    }

    body .row.zzz {
        padding-left: 20px;
        padding-right: 10px
    }

    body .bannermain.innerbanner {
        margin-top: 0;
        background-color: #06142b
    }

    body .testimonials .owl-dots {
        display: inline-block!important;
        text-align: center;
        position: absolute;
        bottom: -30px
    }

    body h2.customers {
        font-weight: 600;
        font-size: 22px;
        padding-left: 30px;
        padding-bottom: 20px;
        text-align: center
    }

    body .row.oneee {
        background: #17275a
    }

    body .row.two {
        background: #17275a
    }

    body .whole-sale h2 {
        font-size: 22px
    }

    body .whole-sale p {
        font-size: 14px
    }

    .right {
        float: right;
        margin-top: 0;
        position: relative;
        left: -30px
    }

    body section.videos-section-wrapper {
        position: relative;
        margin-top: 77px
    }

    body .content-main {
        padding: 15px 0
    }

    body .col-md-7.no {
        display: none
    }

    .col-md-7.none {
        display: block!important
    }

    body p.asdaszxc a {
        display: inline-block;
        color: #fff;
        padding: 0 5px;
        font-weight: 500;
        font-size: 12px
    }

    body p.asdaszxc {
        color: #ffffffe6;
        text-align: center;
        font-size: 12px;
        font-weight: 500
    }

    body .footer-menu li a {
        margin: 0 12px;
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        position: relative
    }

    body .footer-menu {
        max-width: 100%
    }

    body .footer-menu {
        display: block;
        border-bottom: unset
    }

    body .footer-menu li.active a:before {
        display: none
    }

    body h6.test-head-2 {
        color: #78797a;
        font-weight: 800;
        text-align: center;
        font-size: 13px;
        max-width: 100%
    }

    body .category-wrapper2s p {
        color: #756f6f;
        font-weight: 400;
        text-align: center;
        font-size: 12px
    }

    body .cat-feat .my-view {
        width: unset!important;
        margin-top: 10px
    }

    body .category-wrapper2s p {
        color: #756f6f;
        font-weight: 400;
        text-align: center;
        font-size: 12px;
        overflow: hidden;
        display: none
    }

    body .stracci-main-category-wrapper1 {
        height: 160px
    }

    body p.wrapper-para {
        color: #fff;
        font-size: 12px;
        text-align: center
    }

    body .wrapper-heads .pro-view {
        text-align: center;
        margin-top: 40px
    }

    body h2.wrap-opens {
        color: #f8aa43;
        font-size: 22px;
        font-weight: 400;
        text-align: center;
        line-height: 26px;
        text-transform: uppercase
    }

    body .wrapper-heads-inner {
        margin-left: 0
    }

    body .ss {
        background: #06142b;
        background-size: cover
    }

    body .stracci-main-category-wrapper1s img {
        margin: 0 auto;
        max-height: 100%;
        width: 100%
    }

    body .stracci-main-category-wrapper1s {
        height: 100px;
        margin-bottom: 0
    }

    .nope-pad {
        display: none
    }

    body .cat-home-wrapper-img-1 {
        position: relative!important
    }

    body .cat-home-wrapper-2-1 {
        margin: 0 auto;
        text-align: center;
        position: absolute;
        bottom: 10%;
        border: 10%
    }

    body .stracci-main-category {
        height: unset;
        margin-bottom: 20px
    }

    body a.my-view {
        font-size: 13px
    }

    body .stracci-main-category-wrapper2 p {
        font-size: 13px
    }

    body .stracci-main-category-wrapper2 {
        position: absolute;
        bottom: 15%;
        max-width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center
    }

    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 {
        display: none!important
    }

    .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: 50px 0
    }

    .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: center
    }

    .blog-bg-color {
        margin-bottom: 50px!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;
        padding-left: 0!important;
        text-align: center!important
    }

    .caption {
        position: absolute;
        top: 5%!important;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 20px
    }

    .caption2 {
        font-size: 15px;
        text-align: LEFT;
        max-width: unset;
        margin-top: 0;
        margin-bottom: 0;
        color: #0068b7!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;
        display: none
    }

    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: 20px 0!important;
        background: url(/images/back-back.jpg)!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 {
    color: #064b76!important
}

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) {
    body .blo-til {
        max-width:100%!important;
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto
    }

    body .our-cat {
        font-size: 22px;
        text-align: center;
        margin-bottom: 10px
    }

    body .cat-home-wrapper-main {
        max-width: 100%;
        min-width: 100%
    }

    body .cat-home-wrapper-2 h4 {
        font-size: 20px!important
    }

    body .cat-home-wrapper-2 p {
        max-width: unset!important;
        font-size: 14px;
        margin-bottom: 20px
    }

    a.view {
        padding: 10px;
        font-size: 14px
    }

    body .cat-home-wrapper-img {
        margin-bottom: 20px
    }

    body section.featured {
        position: relative
    }

    body .chance-pro-2 {
        text-align: center
    }

    body .background h2 {
        font-size: 22px;
        text-align: center
    }

    body .background p {
        font-size: 14px;
        text-align: center;
        font-weight: 600
    }

    body .pro-view a {
        font-size: 14px;
        padding: 10px
    }

    body .latest-pro .owl-dots {
        display: none
    }

    body .latest-pro .owl-next {
        display: none
    }

    body .latest-pro .owl-perv {
        display: none
    }

    body .inner-wrapper p {
        font-size: 14px;
        line-height: 20px;
        text-align: center
    }

    body a.blo-titles {
        text-align: center
    }

    body .blo-til h4 {
        text-align: center;
        font-size: 14px
    }

    body .blo-til p {
        text-align: center;
        font-size: 16px
    }

    body a.blo-tittles {
        font-size: 14px
    }

    body .pro-view {
        margin-top: 50px
    }

    body .cont-cont {
        border-right: unset
    }

    body .logo {
        margin: 0 auto;
        margin-left: -30px
    }

    body .logo img {
        padding-top: 0
    }

    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: #064b76!important;
    padding: 5px 0!important;
    border-bottom: 0!important
}

section.logo-sec {
    border-bottom: 0!important;
    border-top: 0!important;
    padding-top: 2px;
    position: absolute!important;
    margin-top: -5px
}

.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: #43c7e0!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 .wsmenu {
    margin-top: 20px;
    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: #000!important;
    font-size: 38px!important;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-top: 50px
}

.pad-ext {
    padding-bottom: 30px;
    padding-top: 30px
}

body section.top .top-left i {
    color: #fff
}

.main-blogs img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto
}

body .main-pic img {
    max-width: 440px!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
}

.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: 0
}

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;
    margin-top: 17px
}

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;
    width: 40px;
    left: 0;
    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-size: cover;
    padding: 40px 0 100px;
    max-width: 1600px;
    margin: 0 auto
}

.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 {
    margin: 0 auto;
    font-size: 21px;
    text-align: left;
    color: #1f1e1d;
    font-weight: 500;
    padding-top: 10px;
    position: relative;
    padding-bottom: 30px;
    position: relative;
    left: 30px;
    top: 15px;
    width: 30%;
    font-family: yanone kaffeesatz!important
}

.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;
    display: none
}

.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: #c50a0a;
    font-style: italic
}

.form-sec textarea::placeholder {
    color: #fff;
    font-style: italic
}

ul.ft-address li a {
    display: inline-block;
    padding-left: 0;
    color: #fff;
    font-weight: 600
}

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: #000000e6;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding-left: 0;
    display: inline-block;
    border-bottom: 2px solid #000000e6;
    padding: 0 0 20px
}

.ab-ft {
    color: #fff;
    position: relative;
    word-break: break-word;
    text-align: start;
    padding: 50px 0
}

.ab-ft ul li a {
    color: #000000e6;
    margin-bottom: 0;
    font-size: 14px
}

.ft-bg-color {
    padding: 20px 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: 600;
    font-size: 13px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 15px;
    padding-bottom: 15px
}

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: #064b76;
    border-color: #064b76;
    transition: all .3s ease;
    color: #fff
}

.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;
    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 {
    padding-left: 0;
    margin-bottom: 0
}

h2.my-head {
    color: #064b76!important;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 42px;
    text-align: center
}

section.about-sec {
    padding-bottom: 40px;
    padding-top: 10px
}

section.about-sec p {
    font-size: 16px;
    padding-right: 0;
    color: #646464;
    text-align: center;
    font-weight: 400
}

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: #ffff!important;
    opacity: 0;
    line-height: 42px;
    text-transform: capitalize
}

.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: 3px
}

ul.cus-social li a {
    display: inline-block;
    width: 40px;
    text-align: center;
    height: 40px;
    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: 15px;
    /* line-height: 30px; */
    /* font-weight: 300!important; */
}

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: transparent;
    color: #000!important;
    margin-bottom: 0;
    text-transform: capitalize;
    border-radius: 5px;
    color: #064b76!important
}

.cat_level_1:hover a {
    color: #064b76!important;
    border-radius: 5px!important
}

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: #064b76;
    max-width: 1600px;
    margin: 0 auto;
    color: #fff
}

.bread_crumb {
    padding: 10px 0!important;
    font-size: 14px
}

.bread_crumb a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    font-size: 15px
}

h1.pgtitle {
    color: #f8aa43;
    font-weight: 700
}

ul.cus-social li a i {
    color: #000000e6!important
}

.related-heading h4 {
    padding-left: 20px!important;
    margin-bottom: 0;
    font-size: 42px;
    font-weight: 700
}

.btn-primary:focus {
    background-color: #242b5b
}

.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: 213px;
    max-height: 213px;
    overflow: hidden;
    margin-top: 15px
}

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 {
    display: block;
    margin: 0 auto
}

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

.request.for.quate a {
    background-color: #d7d6d6;
    padding: 10px 30px 11px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    color: #000!important
}

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 h1 {
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 50px;
    color: #fff!important
}

p.asdaszxc a {
    display: inline-block;
    color: #fff;
    padding: 0 5px;
    font-weight: 300;
    font-family: initial;
    font-size: 14px
}

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

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: unset!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 {
}

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: 14px;
    font-weight: 500!important;
    background-color: #004273!important;
    color: #fff!important;
    text-transform: capitalize;
    padding: 18px 15px 17px!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: 7px
}

h2.gernal-headd {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    padding: 0 6px;
    color: #064b76!IMPORTANT;
    margin-top: 10px;
    text-transform: uppercase;
    padding-bottom: 0;
    letter-spacing: 3px
}

h2.gernal-headd {
}

.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: 350px;
    position: relative
}

.ab-ft p {
    color: #ffffffe6;
    padding-right: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    max-width: 70%;
    margin: 0 auto
}

.ab-ft img:before {
    content: ""
}

ul.footer-menus-list {
    padding-top: 0;
    color: #444;
    font-size: 12px;
    display: block;
    transition: padding .5s ease 0s;
    font-weight: 300!important;
    margin-top: 7px;
    float: left;
    padding-left: 1px
}

ul.services-ul {
    padding-top: 15px
}

ul.ft-address {
    padding-top: 5px
}

ul.services-ul li {
    line-height: 28px;
    padding-left: 0;
    padding-right: 30px;
    height: 15px;
    overflow: hidden;
    margin-top: 15px
}

ul.services-ul li:before {
}

ul.ft-address li {
    line-height: 35px
}

section.section-1 {
}

section.logo-sec img {
    margin-top: 0;
    margin-left: 0;
    -index: 9999;
    width: 1
}

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: #0069b7!important; */
    /* line-height: 30px; */
    /* margin-top: 2px; */
}

. .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: #fff;
    padding-bottom: 50px!important
}

.prod_desc table,.prod_desc td {
    border-collapse: separate;
    border: 1px solid #999
}

.prod_desc p {
    color: #817c7c;
    font-size: 15px
}

.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;
    background-color: #06142b;
    margin-bottom: 60px;
}

section.inner-blogs {
    padding-top: 25px;
    padding-bottom: 75px;
    background: #eaf3f494
}

.contactmain {
    margin-top: 0
}

.contactmain h4 {
    color: #064b76;
    text-transform: uppercase;
    font-size: 20px
}

a.filter-head {
    display: none
}

.menu_opened .arrow {
    background-color: #056da4;
    color: #fff!important
}

.menu_opened:hover .arrow {
    background-color: #056da4
}

.menu_opened .arrow:before {
    color: #fff!important
}

body .menu_opened .active_child {
    background-color: #4c4848!important
}

.cat_level_1.menu_opened>a.un_actives {
    background-color: #e4e2e2
}

.menu_opened.p_active a {
    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: rgb(24 37 58)!important;
    color: #fff!important;
    padding: 10px 20px!important
}

.menu_opened.p_active a.pro-linksss:before {
    color: #fff
}

.owl-carouselbg .owl-dots {
    display: none
}

.wsmenu-list li.active {
    padding: 0
}

p.small {
    font-size: 23px
}

.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: 100px
}

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 10px
}

.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%;
    position: relative;
    left: 0;
    height: 50px
}

.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: block;
    padding-top: 10px;
    text-align: center;
    margin: 0 auto;
    padding-top: 30px
}

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 .cat-home-wrapper-2 {
        margin:0 auto!important;
        position: absolute;
        left: 0;
        right: 0
    }

    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: #0d4e78!important;
    font-weight: 600
}

.main-inner-serv:before {
    content: "";
    background-color: #3588c6;
    width: 30%;
    height: 5px;
    position: absolute;
    border-radius: 0 0 10px 10px;
    left: 20px;
    top: 0;
    margin: 0 auto;
    transition: .3s
}

.main-inner-serv {
    position: relative;
    height: 290px;
    box-shadow: 5px 5px 2px #3588c6a8;
    padding: 10px;
    text-align: center;
    background: #fff;
    transition: .3s;
    border: 2px solid #ccc
}

.main-serv-inner {
    position: relative;
    top: -40px;
    text-align: center
}

.main-serv-inner-img {
    position: absolute;
    left: 0;
    margin: 0 auto;
    border-radius: 100%;
    padding: 0 10px;
    transition: .3s ease;
    top: 60px;
    border: 2px solid #3b8cc8;
    height: 55px;
    width: 55px;
    margin-left: 17px;
    box-shadow: 0 0 10px #ccc
}

.main-serv-inner-2 {
    margin-top: 100px
}

.main-serv-inner-2 h4 {
    color: #000;
    font-weight: 600;
    font-size: 22px;
    text-align: left;
    transition: .3s
}

.main-serv-inner-2 {
    padding-left: 20px
}

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

.prod_desc h3 {
    color: #9f7d48
}

.ab-ft img {
    max-width: 80%;
    max-height: 100px
}

section.menu {
    margin-top: 100px
}

.banner_overlay {
}

.chance-pro-2 {
    text-align: left;
    margin: 0 auto;
    min-height: 0%;
    padding-left: 10px;
    padding-top: 0
}

.chance-pros-main {
    position: relative;
    height: 500px
}

.chance-main-1 {
    max-width: 100%;
    margin: 0 10px;
    height: 240px;
    margin-top: 20px;
    position: relative
}

.chance-inner-wrapper-product a {
    color: #242424;
    font-size: 18px;
    font-weight: 400;
    margin: 20px auto 0px;
    line-height: normal;
    font-family: Philosopher !important;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    /* font-size: 14px; */
    /* color: #7b7c7e; */
    /* font-weight: 400; */
    /* text-transform: capitalize; */
    /* margin: 0 auto; */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
    /* min-height: 40px; */
    /* padding-top: 17px; */
    /* text-align: center; */
}

.chance-inner-wrapper-view a {
    color: #f44c1d;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    border-bottom: 2px solid!important
}

.chance-inner-wrapper-view {
    margin-top: 5px;
    display: inherit
}

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

.heze-blogs-inner-2 {
    text-align: left;
    padding-left: 16px
}

.owl-dots .owl-dot {
    display: inline-block;
    margin-right: 9px!important
}

section.o-products.form-sec .container {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 60px 15px
}

.servv a {
    background-color: #fff;
    padding: 7px 30px;
    color: #064b76;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px
}

h2.serves-2 {
    color: #fff;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 50px
}

h2.serves-3 {
    text-align: left;
    color: #f5a832!important
}

.servvvv li a {
    border: 1px solid #fff;
    padding: 12px 15px;
    color: #fff
}

.servv {
    display: block;
    text-align: center;
    margin-top: 40px
}

.view {
    text-align: center
}

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

li.last {
    margin-top: 17px
}

.main-serv-inner-img img {
    padding-top: 9px
}

.chance-pros-mainn {
    height: 330px;
    margin-top: 0;
    transition: .3s ease;
    position: relative;
    text-align: center
}

.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!important
}

.chance-mainn-1 {
    max-width: 100%;
    height: 242px;
    border: solid 1px #e6e4e4;
    margin: 10px;
    position: relative;
    top: 10px;
    transition: .3s ease
}

section.featured {
    padding-bottom: 70px;
    padding-top: 50px
}

.chance-innerr-wrapper-product a {
    color: #292929;
    font-weight: 600;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    padding-top: 10px;
    font-family: yanone kaffeesatz!important;
    padding-left: 5px
}

.chance-inner-wrapperr-view a {
    color: #f44c1d;
    font-weight: 600
}

.chance-inner-wrapperr-view {
    padding-top: 5px
}

.main-blogs {
    height: 350px;
    margin: 0
}

.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;
    font-size: 18px;
    max-width: 50%;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 23px;
    font-weight: 400
}

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

.search-btn {
    margin-top: 41px;
    padding-right: 0
}

.search-btn form {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 100%;
    height: 35px;
    background: 0 0;
    box-sizing: border-box;
    border: unset!important;
    padding: 5px;
    border-radius: 10px!important
}

.search-btn input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    font-size: 1em;
    padding: 0 30px;
    background-color: transparent;
    color: #fff;
    border-radius: 10px!important;
    opacity: 1!important
}

.header-search-btn {
    font-size: 0;
    border: unset
}

.header-search-btn i.fa.fa-search {
    font-size: 17px;
    color: #064b76;
    background-color: transparent!important;
    position: absolute;
    bottom: 5px;
    left: -5px;
    top: 17px
}

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

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 {
    display: none!important
}

button#toggleBtn {
    outline: unset
}

.content-hidden p:nth-child(2) {
    display: block!important
}

.product_secondary_images_container {
    height: 60px;
    position: relative;
    margin: 5px 3px;
    border: solid 1px #ccccccd6
}

.product_secondary_images_container img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    margin: auto!important;
    padding: 2px
}

input[type=search]::placeholder {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff
}

.bannermain .owl-dots span {
    height: 15px;
    width: 15px;
    border-radius: unset!important;
    border: 1px solid #fff
}

.bannermain .owl-dots .owl-dot.active span {
    background-color: #f44c1d
}

.our-cat {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 42px;
    margin-bottom: 40px
}

.cat-cat {
    position: relative
}

.cat-home-wrapper-main {
    margin: 0 auto;
    position: relative;
    height: 100%;
    max-width: 120%;
    min-width: 120%
}

.cat-home-wrapper-img {
    margin: 0 auto;
    position: relative
}

.cat-home-wrapper-img a img {
    max-width: 100%;
    max-height: 100%
}

.cat-home-wrapper-2 {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    bottom: 10%
}

.cat-home-wrapper-2 h4 {
    color: #fff!important;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase
}

.cat-home-wrapper-2 p {
    color: #fff;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 18px
}

a.view {
    padding: 10px 30px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500
}

.cat-home-wrapper-main-1 {
}

.cat-home-wrapper-img-1 {
    position: absolute
}

.cat-home-wrapper-img a img-1 {
    max-width: 100%;
    max-height: 100%
}

.cat-home-wrapper-2-1 {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 45%
}

.cat-home-wrapper-2-1 h4 {
    color: #fff!important;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase
}

.cat-home-wrapper-2-1 p {
    color: #fff;
    max-width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 14px
}

a.view {
    padding: 10px 30px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500
}

.cat-home-wrapper-img-1 img {
    width: 100%;
    max-height: 100%;
    margin: 0 auto;
    margin-bottom: 30px
}

.pro-view {
    text-align: center;
    margin-top: 50px
}

.pro-view a {
    background-color: transparent;
    padding: 15px 30px;
    color: #f8aa43;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #f8aa43
}

.background {
    text-align: center
}

.background p {
    color: #fff;
    font-size: 22px;
    font-weight: 300
}

.background h2 {
    color: #fff;
    font-weight: 600;
    text-align: center
}

section.latest-pro {
    padding: 50px 0
}

.latest-pro .owl-prev {
    display: inline-block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background: url(/images/lefttty.png);
    background-size: 100% 100%;
    position: absolute;
    left: -45px;
    top: 35%
}

.latest-pro .owl-next {
    display: inline-block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background: url(/images/righty.png);
    background-size: 100% 100%;
    position: absolute;
    top: 35%;
    right: -45px
}

.latest-pro .owl-dots.disabled {
    display: none
}

.latest-pro .owl-nav.disabled {
    display: block!important
}

section.wrapper-back {
    padding: 50px 0!important;
    background: url(/images/tattto.jpg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    max-width: 1600px;
    margin: 0 auto
}

.inner-wrapper {
    text-align: center
}

.inner-wrapper p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
    padding: 50px 0;
    margin: 0 auto
}

.blogs-section h2 {
    color: #064b76!important;
    font-size: 32px!important;
    text-transform: uppercase!important;
    font-weight: 600;
    margin-top: 0;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px
}

.main-blogs {
    text-align: center;
    position: relative
}

a.blo-titles {
    background: 0 0!important;
    color: #273773;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 12px!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 {
    background-color: #fff;
    padding: 15px 30px;
    position: absolute;
    width: 94%;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 70%;
    border: 1px solid #ccc;
    margin-bottom: 20px!important
}

.blo-til h4 {
    font-family: montserrat,sans-serif;
    font-size: 18px;
    color: #757475;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blo-til p {
    color: #f54d1c!important;
    font-size: 20px;
    text-align: left
}

p.post-by-ad strong {
    color: #eaae7f;
    padding-left: 5px;
    font-family: poppins,sans-serif!important;
    font-weight: 400
}

p.date-format {
    margin-bottom: 0!important;
    padding-top: 0;
    text-align: center
}

a.blo-tittles {
    display: inline-block;
    border-bottom: 2px solid #f54d1c;
    font-size: 16px;
    color: #f54d1c;
    font-weight: 600
}

section.form-secc {
    background: url(/images/middle-banner-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 180px;
    padding-bottom: 250px;
    margin-top: 20px
}

.cont-cont {
    border-right: 1px solid #0e0e0e;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
    height: 100px
}

.cont-cont h3 {
    color: #f54d1c;
    text-transform: capitalize;
    font-weight: 600
}

p.f {
    display: inline-block;
    font-size: 14px;
    position: relative;
    color: #fff;
    line-height: 15px;
    padding-left: 5px
}

.cont-conts h3 {
    color: #f54d1c;
    text-align: center;
    text-transform: capitalize
}

ul.ft-address h5 {
    color: #000000e6;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize
}

.latest-pro .owl-dots {
    display: none
}

.bread_crumb span {
    color: #fff;
    font-size: 14px
}

.Product-Description {
    color: #f8aa43!important
}

.stracci-main-category {
    height: 550px
}

.stracci-main-category-wrapper1 {
    height: 400px
}

.stracci-main-category-wrapper2 {
}

.stracci-main-category-wrapper2 h4 {
    color: #fff!important;
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase
}

.stracci-main-category-wrapper2 p {
    color: #fff;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 16px;
    padding-bottom: 5px;
    text-transform: capitalize
}

.stracci-main-category-wrapper2 a {
}

a.my-view {
    padding: 8px 40px;
    color: #f8aa43;
    font-size: 20px;
    font-weight: 500;
    border: 2px solid #f8aa43;
    font-family: yanone kaffeesatz!important;
    line-height: 13px;
    padding-top: 12px
}

.stracci-main-category-wrapper1s {
    position: relative
}

.stracci-main-category-wrapper2s {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center
}

.stracci-main-category-2 {
    position: relative
}

.stracci-main-category-wrapper2s h4 {
    color: #fff!important;
    font-weight: 500;
    font-size: 26px;
    text-transform: uppercase;
    margin: 5px 0
}

.stracci-main-category-wrapper2s {
}

a.my-views {
    padding: 10px 30px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500
}

.stracci-main-category-wrapper2s p {
    color: #fff;
    margin: 0 auto;
    margin-bottom: 3px;
    font-size: 14px;
    padding-bottom: 2px;
    text-transform: capitalize
}

@media only screen and (max-width: 800px) and (min-width:400px) {
    body .stracci-main-category-2 {
        position:relative;
        margin: 0 auto;
        width: 49%!important
    }

    body .stracci-main-category-wrapper2s {
        padding: 0 10px
    }
}

.chance-main-1 img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto!important;
    max-height: 100%;
    max-width: 100%
}

section.inner-relative-product {
    padding: 20px 0
}

.chance-pros-mainn .chance-mainn-1 img:hover {
}

.pro-menu {
    margin-top: 21px;
    padding-left: 0
}

.pro {
    margin-top: 21px
}

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

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

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 {
    display: none!important
}

button#toggleBtn {
    outline: unset
}

.content-hidden p:nth-child(2) {
    display: block!important
}

body .pad0 {
    padding: 0 15px!important
}

body .seo-content p {
    font-size: 14px;
    font-weight: 400!important;
    color: #2b282f
}

body .seo-content strong {
    color: #2b282f
}

body .seo-content h1 {
    font-size: 38px;
    color: #000;
    font-weight: 400!important
}

body .seo-content h1 strong {
    font-size: 38px;
    color: #000
}

body .seo-content h2 {
    font-size: 35px;
    color: #000;
    font-weight: 400!important
}

body .seo-content h2 strong {
    font-size: 35px;
    color: #000
}

body .seo-content h3 {
    font-size: 30px;
    color: #000;
    font-weight: 400!important
}

body .seo-content h3 strong {
    font-size: 30px;
    color: #000
}

body .seo-content h4 {
    font-size: 26px;
    color: #000;
    font-weight: 400!important
}

,body .seo-content h4 strong {
    font-size: 26px;
    color: #000
}

body .seo-content h5 {
    font-size: 22px;
    color: #000;
    font-weight: 400!important
}

body .seo-content h5 strong {
    font-size: 22px;
    color: #000
}

body .seo-content h6 {
    font-size: 18px;
    color: #000;
    font-weight: 400!important
}

body .seo-content h6 strong {
    font-size: 18px;
    color: #000
}

@media only screen and (max-width: 992px) {
    body .seo-content p,body .seo-content strong {
        font-size:14px;
        font-weight: 400!important;
        color: #2b282f
    }

    body section.cat-feat h2 {
        font-size: 16px
    }

    body .row.before:before {
        display: none
    }

    body .seo-content h1 {
        font-size: 26px;
        color: #000;
        font-weight: 400!important
    }

    body .seo-content h1 strong {
        font-size: 26px;
        color: #000
    }

    body .seo-content h2 {
        font-size: 22px;
        color: #000;
        font-weight: 400!important
    }

    body .seo-content h2 strong {
        font-size: 22px;
        color: #000
    }

    body .seo-content h3 {
        font-size: 20px;
        color: #000;
        font-weight: 400!important
    }

    body .seo-content h3 strong {
        font-size: 20px;
        color: #000
    }

    body .seo-content h4 {
        font-size: 18px;
        color: #000;
        font-weight: 400!important
    }

    body .seo-content h4 strong {
        font-size: 18px;
        color: #000
    }

    body .seo-content h5 {
        font-size: 16px;
        color: #000;
        font-weight: 400!important
    }

    body .seo-content h5 strong {
        font-size: 16px;
        color: #000
    }

    body .seo-content h6 {
        font-size: 14px;
        color: #000;
        font-weight: 400!important
    }

    body .seo-content h6 strong {
        font-size: 14px;
        color: #000
    }
}

section.videos-section-wrapper {
    position: relative
}

section.videos-section-wrapper:before {
    content: "";
    width: 100%;
    height: 99%;
    position: absolute;
    z-index: 1
}

video#myVideo {
    width: 100%;
    transform: scale(1);
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative
}

.video-div-para {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    margin: auto;
    z-index: 1;
    text-align: center
}

.video-div-para p {
    color: #fff!important;
    font-size: 42px;
    margin-bottom: 40px;
    text-transform: UPPERCASE;
    font-weight: 600;
    font-family: yanone kaffeesatz!important
}

.video-div-para a {
    border: solid 2px #fff;
    color: #fff;
    text-transform: capitalize;
    margin-left: 5px;
    text-decoration: none;
    max-width: 150px!important;
    display: inline-block!important;
    min-width: 150px;
    padding: 10px 0
}

a.shop {
}

section.top p {
    text-align: center;
    font-size: 15px;
    color: #fff;
    display: inline-block;
    font-weight: 300
}

.cer-img-div {
    position: relative;
    margin-top: 10px;
    margin-bottom: 15px
}

.cer-img-div img {
    text-align: center;
    margin: 0 0 0 auto;
    width: 100%
}

.video .video-box {
    position: relative;
    width: 100%
}

.video .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f8aa43 50%,rgb(248 170 67/38%) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
    margin-top: 70px
}

.video .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(.55,.055,.675,.19)
}

.video .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgb(248 170 67);
    top: -15%;
    left: -15%;
    background: 0 0
}

.video .play-btn:hover::after {
    border-left: 15px solid #f8aa43;
    transform: scale(20)
}

.video .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0
}

section.video {
    background: url(/images/video-back.jpg);
    background: url(/images/testimonial-bg-01-min.jpg);
    padding-top: 40px;
    padding-bottom: 40px
}

h2.general-head {
    text-align: center;
    color: #f8aa43;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 42px;
    font-family: yanone kaffeesatz!important
}

p.general-para {
    color: #4b4a4a;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 600;
    word-spacing: 2px
}

.video img {
    padding-top: 40px!important
}

.ss {
    background: url(/images/new.jpg);
    background-size: cover
}

h2.wrap-opens {
    color: #f8aa43;
    font-size: 32px;
    font-weight: 400;
    line-height: 45px;
    text-transform: uppercase;
    font-family: yanone kaffeesatz!important;
    margin-bottom: 0
}

.wrapper-heads-inner {
    margin-left: -30px;
    padding-right: 30px;
    padding-top: 85px;
    padding-bottom: 85px
}

p.wrapper-para {
    color: #fff;
    font-size: 18px
}

.wrapper-heads .pro-view {
    text-align: left
}

section.wrapper-main {
    padding-top: 10px;
    padding-bottom: 30px
}

section.cat-feat h2 {
}

.stracci-main-category-wrapper1 img {
    margin: 0 auto
}

section.cat-feat {
    padding-top: 50px;
    padding-bottom: 50px
}

.category-wrapper2s {
    padding-top: 15px
}

.category-wrapper2s p {
    color: #868282;
    font-weight: 400;
    text-align: center;
    min-height: 15px;
    font-size: 16px;
    max-height: 15px
}

.my-view {
    text-align: center;
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 22%;
    margin-top: 24px
}

.row.before {
    position: relative
}

.row.before:before {
    position: absolute;
    content: "";
    background: url(/images/cat-before.png);
    height: 100%;
    top: 0;
    width: 10%;
    background-repeat: no-repeat;
    left: 47%;
    right: 0;
    text-align: center
}

.test-image {
    height: 150px;
    width: 150px;
    text-align: center;
    margin: 0 auto
}

h6.test-head-2 {
    font-size: 17.45px;
    font-family: Futura,sans-serif;
    letter-spacing: .025em;
    line-height: 1.6;
    color: #383737;
    text-align: left;
    position: relative;
    padding-top: 31px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 175px
}

element.style {
}

.owl-carousel1 .owl-dots {
    display: none
}

.testimonials .owl-dots {
    display: inline-block!important;
    text-align: center;
    position: absolute;
    bottom: -65px
}

.footer-menu {
    display: block;
    border-bottom: 2px solid #f8aa43;
    position: relative;
    text-align: center;
    max-width: 50%;
    margin: 0 auto!important;
    padding-top: 56px
}

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

.footer-menu li a {
    margin: 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    position: relative
}

.ab-ft img {
}

.footer-menu li.active a {
    color: #f8aa43!important;
    display: block;
    padding-bottom: 15px;
    font-weight: 600
}

a.all {
    background: #167310!important;
    color: #fff!important
}

.main-div:hover .product-url {
    opacity: 1;
    transition: .5s
}

.footer-menu li.active a:before {
    position: absolute;
    content: "";
    background: #fff;
    height: 3px;
    width: 50px;
    top: 36px;
    left: -3px
}

.cart {
    /* margin-top: 17px; */
}

.chance-inner-wrapperrss {
    position: absolute;
    display: flex;
    right: 4px;
    top: 15px;
    transition: .3s;
    opacity: 0
}

.chance-pros-mainn:hover .chance-inner-wrapperrss {
    opacity: 1;
    transition: .3s
}

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

.tt-description {
    text-align: center
}

.top button.tt-btn-close {
    display: inline-block;
    background: 0 0;
    border: unset
}

.u-section-2 {
    min-height: 1026px
}

.u-section-2 .u-shape-1 {
    height: 497px;
    margin-top: 0;
    margin-bottom: 0;
    background: #e4d2c042
}

.u-section-2 .u-shape-2 {
    width: 928px;
    height: 599px;
    background-image: none;
    margin: -497px auto 0 calc(((100% - 1140px)/2))
}

.u-section-2 .u-image-1 {
    width: 884px;
    height: 782px;
    margin: -515px auto 0 calc(((100% - 1140px)/2) + 121px)
}

.u-section-2 .u-layout-wrap-1 {
    width: 1140px;
    margin: -267px auto 60px
}

.u-section-2 .u-container-layout-2 {
    padding: 30px;
    background: #fff
}

.u-section-2 .u-text-2 {
    margin: 0
}

.u-white,.u-body.u-white,.u-container-style.u-white:before,.u-table-alt-white tr:nth-child(even) {
    color: #111
}

.u-palette-1-base,.u-body.u-palette-1-base,.u-container-style.u-palette-1-base:before,.u-table-alt-palette-1-base tr:nth-child(even) {
    color: #fff;
    background-color: #f8aa43;
    position: relative
}

.u-palette-2-base,.u-body.u-palette-2-base,.u-container-style.u-palette-2-base:before,.u-table-alt-palette-2-base tr:nth-child(even) {
    color: #111;
    background-color: #e4d2c0
}

.u-section-2 .u-shape-2 {
    width: 928px;
    height: 599px;
    background-image: none;
    margin: -497px auto 0 calc(((100% - 1140px)/2))
}

.u-palette-2-light-2,.u-body.u-palette-2-light-2,.u-container-style.u-palette-2-light-2:before,.u-table-alt-palette-2-light-2 tr:nth-child(even) {
    color: #111;
    background-color: #f0e5db
}

.u-layout-col,.u-layout-row,.u-layout-col>* {
    display: flex
}

.u-valign-middle,.u-valign-top,.u-valign-bottom {
    display: flex;
    flex-direction: column
}

.u-section-2 .u-text-1 {
    font-size: 6rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    padding: 0 40px;
    position: relative;
    top: 160px
}

.u-container-layout-2 p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    list-icon-spacing: .3;
    list-icon-size: .8
}

.whole-sale h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: unset;
    font-family: yanone kaffeesatz!important
}

.whole-sale p {
    font-size: 18px;
    color: #fff
}

.content-main {
    padding: 100px 0
}

a.shopp {
    border: solid 2px #fff;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    max-width: 130px!important;
    display: inline-block!important;
    min-width: 130px;
    padding: 10px 0;
    text-align: center;
    margin-top: 20px
}

a.cartt i {
    background-color: #389f3b;
    width: 37px;
    height: 37px;
    border-radius: 100%;
    position: relative;
    top: -11px;
    transition: .3s;
    opacity: 0;
    left: -38px;
    text-align: center;
    line-height: 37px;
    color: #fff;
    opacity: 0;
    transition: 1s ease
}

a.addmycart i {
    opacity: 1;
    transition: 1s ease
}

a.addmycart {
    background-size: cover!important;
    background-position: center center;
    padding: 10px 0
}

a.addmycart img {
    opacity: 0
}

section.whole-sale {
    background: #fff;
    padding-top: 40px
}

.wholesaleimages {
    height: 400px;
    margin-top: 0;
    width: 100%
}

.wholesaleimages img {
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto
}

.col-md-7.none {
    display: none
}

.row.oneee {
    background: url(/images/Untitled-5.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.row.two {
    background: url(/images/Untitled-4.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.row.oneee {
    padding-top: 25px;
    margin-bottom: 30px
}

.row.two {
    margin-bottom: 30px
}

.row.oneee .content-main {
    padding-right: 100px
}

.row.two .content-main {
    padding-left: 100px
}

.to-wrapper {
    position: relative;
    top: 100px;
    right: -15px
}

.test-image img {
    border-radius: 100%;
    margin: 0 auto!important;
    max-height: 150px;
    max-width: 150px!important
}

span.zayak-detailss-1 {
    color: #59c9f1;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    left: 0;
    background: #064b76;
    top: 0;
    height: 20px;
    z-index: 1
}

span.zayak-detailss-1 strong {
    padding-left: 6px;
    font-weight: 700;
    color: #fff
}

span.zayak-detailss-2 {
    font-size: 14px;
    color: #06142ba1
}

span.zayak-detailss-3 {
    font-size: 16px;
    padding-bottom: 2px;
    font-family: yanone kaffeesatz!important
}

span.zayak-detailss-1 strong.my-ghs {
    color: #fff;
    padding-left: 0!important;
    font-size: 12px;
    position: relative;
    top: -2px;
    padding: 10px
}

section.payment {
    padding-top: 50px;
    margin-top: 0!important;
    padding-bottom: 50px
}

html,body,.wrapper {
    background: unset!important
}

.panel-info>.panel-heading {
    font-size: 18px;
    font-weight: 500;
    background: unset!important;
    color: #2b3033!important;
    font-weight: 600
}

center.checkout {
    color: #06142b;
    font-weight: 800;
    font-size: 45px;
    text-transform: capitalize;
    padding-bottom: 30px
}

div#popup {
    position: relative;
    float: right!important;
    overflow: hidden;
    height: 100px
}

body .popo {
    color: #fff!important;
    transition: 1s;
    margin-top: 15px!important;
    margin-top: 0!important;
    position: relative!important;
    line-height: 14px!important;
    font-size: 13px!important;
    padding: 8px 15px 8px 35px!important;
    border-radius: 6px;
    background: #389f3b;
    margin-l\: 1
}

.wsmenu-list font {
    font-size: 13px
}

strong.pri {
    font-weight: c;
    font-weight: 600;
    color: #000;
    font-size: 17px;
    text-transform: capitalize;
    padding-right: 5px
}

.panel-info {
    border-color: #e5e5e5!important;
    border-radius: 5px!important
}

.panel-info>.panel-heading {
    border-color: #e5e5e5!important
}

.check-back .panel-body {
    padding-left: 25px!important
}

input#name {
}

.check-back .form-control {
    border: 1px solid;
    border-color: #ddd #eee #eee #ddd!important;
    border-radius: 5px
}

cart-body {
}

.check-back strong {
    font-weight: 500!important;
    font-size: 13px
}

a.afix-1 {
    color: #fff;
    font-size: 14px;
    background: #06142b;
    padding: 5px 10px;
    border-radius: 5px
}

#payment-form {
    box-shadow: unset!important
}

body button#submit {
    background: #09132c;
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    width: unset;
    padding: 5px 20px;
    margin-top: 20px!important;
    margin-left: 0;
    margin: 0 auto;
    display: block;
    border-radius: 5px
}

.bor th {
    text-align: center
}

.customer-style {
    padding-bottom: 20px;
    border-bottom: 1px solid #eeee
}

.form-group.nobor hr {
    border: unset!important
}

.col-xs-12.borderr {
    border: 1px solid #dcdcdc;
    padding: 10px;
    width: 96%;
    margin-left: 14px;
    border-radius: 5px
}

div#popup {
    margin-top: 0!important;
    width: 21%;
    height: 30px;
    overflow: hidden;
    margin-top: 2px!important;
    position: relative;
    top: 12px;
    left: 100px;
    display: none
}

h2.jq-toast-heading {
    margin-top: -10px
}

@media only screen and (max-width: 352px) {
    body div#popup {
        width:56%!important
    }
}

.cart.pull-left {
    cursor: pointer;
    position: relative;
    /* right: -30px; */
    float: unset !important;
    display: inline-block;
}

.reviewInput {
    border: unset;
    border-bottom: solid 1px #ccc!important;
    resize: none;
    color: #000;
    border-radius: unset!important
}

form.form-horizontal textarea.form-control {
    border: unset;
    border-bottom: 1px solid #cdc4c4!important;
    resize: none
}

.form-horizontal .form-control:focus {
    outline: none;
    box-shadow: unset
}

.form-horizontal button.btn.pull-right.btn-primary {
    margin-top: 10px
}

.icon {
    max-width: 36px;
    position: relative
}

body .zero {
    color: #fff;
    margin-top: 17px;
    margin-right: 5px;
    font-size: 10px;
    position: absolute;
    left: 28px;
    top: -20px;
    z-index: 999;
    background: var(--btn-color);
    border-radius: 30px;
    height: 16px;
    width: 17px;
    z-index: 999999
}

body .my_contact_us {
    position: fixed;
    top: 55%;
    left: 0;
    z-index: 9999999;
    height: 0
}

.testimonials-caption {
}

.testimonials-content h5:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 20px;
    left: -30px;
    background: #000;
    top: 20px
}

h2.customers {
    font-weight: 600;
    font-size: 12px;
    padding-left: 0;
    padding-bottom: 0;
    display: inline-block;
    float: left;
    margin: unset;
    font-weight: 400;
    color: #484646;
    font-size: 23px;
    padding-left: 15px
}

h2.customers:before {
}

h6.test-head-2:before {
}

.testimonials .owl-dot.active span {
    border: 1px solid #3576c1!important;
    background: 0 0;
    background: #3576c1;
    height: 10px;
    width: 10px
}

.language-converter select {
    background: url(/images/Globe_icon.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    font-size: 0;
    border: unset;
    filter: invert(1);
    background-position: 0 43%;
    appearance: none;
    left: -9px;
    background-position: center center
}

select::-ms-expand {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.language-converter select option {
    font-size: 14px
}

body .language-converter {
    position: relative;
    top: 5px
}

footer.wow.fadeInUp {
    padding-top: 70px;
    background: #000!important
}

.wsmenu-list>li.dis-none {
    text-align: center;
    border-radius: 15px;
    position: relative;
    float: right!important;
    z-index: 999;
    top: -6px;
    right: -80px;
    padding: 0
}

.wsmenu-list>li.dis-none a {
    padding: 4px 20px!important;
    font-size: 14px!important
}

.wsmenu-list>li.dis-none a:hover {
    color: #2ec2de!important
}

h4.sign-up {
    font-size: 25px;
    text-transform: capitalize;
    color: #f8aa43;
    font-family: muli-semibold;
    padding-top: 5px;
    margin: 0 auto;
    text-align: center;
    display: block;
    float: left;
    font-family: yanone kaffeesatz!important;
    font-weight: 600;
    margin-top: 10px
}

.ab-ft img {
    margin: unset!important
}

.subscribe input#inquiry_form_email::placeholder {
    color: #bbbdbf;
    font-size: 15px;
    font-weight: 500
}

.subscribe .form-control {
    height: 37px;
    border-radius: unset;
    position: relative;
    top: -11px;
    border-bottom: 1px solid #fff
}

.email-btn {
    padding: 0;
    font-size: 0;
    height: 37px!important;
    width: 25%!important;
    outline: unset;
    position: relative;
    background: unset!important;
    text-align: center;
    border: unset;
    color: #fff!important;
    font-size: 15px;
    position: relative;
    top: -12px;
    position: absolute;
    right: 0
}

.custom-input-email {
    height: 40px;
    background-color: transparent!important;
    border: solid 1.5px #fff;
    color: #fff;
    width: 92%;
    border-radius: 5px;
    float: left;
    position: relative;
    border: unset
}

h5.bl {
    color: #fbb94c;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    display: inline-block;
    font-family: yanone kaffeesatz!important;
    letter-spacing: 1.5px
}

li {
}

ul.cus-social li {
    display: inline-block
}

.footer-menus {
    margin: 0 auto
}

h4.payment {
    margin-top: 0;
    font-size: 22px;
    color: #fff
}

.low-footer {
    display: block;
    text-align: center
}

body p.green-news {
    color: green;
    top: 60px;
    width: 100%;
    float: left
}

body p.red-news {
    color: red;
    top: 60px;
    float: left;
    width: 100%
}

.low {
    display: block;
    text-align: center
}

.prod_desc {
    margin-bottom: 50px
}

.zayak-category {
    margin-top: 19px
}

@media only screen and (min-width: 999px) and (max-width:2400px) {
    section.logo-sec .container {
    }
}

.wsmenu-list>li.dis-none img {
    margin-left: 4px
}

.img_active .product_secondary_images_container {
    border: unset;
    width: 20
}

.my-quote button {
    width: 100%
}

.coms-soon {
    margin-top: 80px;
    padding: 10px;
    position: relative;
    height: 270px
}

.coms-soon img {
    filter: blur(11px)
}

.coms-soon h4 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 160px;
    height: 30px;
    text-align: center;
    background-color: rgb(248 170 67);
    border-radius: 7px;
    color: #fff;
    padding-top: 4px
}

@media only screen and (min-width: 800px) and (max-width:1350px) {
    body section.logo-sec .container {
        max-width:1200px;
        width: 1200px
    }
}

@media only screen and (min-width: 522px) and (max-width:600px) {
    body img.img-responsive.icon {
        max-width:36px;
        position: relative;
        margin-top: 40px
    }
}

img.img-responsive.stripe {
    margin: unset
}

section.zayak-boxes h2 {
    font-weight: 700;
    padding-top: 0!important;
    font-size: 42px;
    color: #06142b!important;
    opacity: 1;
    padding-bottom: 0!important;
    line-height: 42px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
    font-family: yanone kaffeesatz!important
}

section.zayak-boxes {
    padding-top: 30px;
    padding-bottom: 0;
    background: url(/images/testimonial-bg-01-min.jpg);
    padding-top: 40px;
    padding-bottom: 40px
}

p.z-p {
    font-size: 20px;
    text-align: center;
    padding-bottom: 30px;
    color: #06142b;
    padding: 0 10px;
    display: block;
    margin-bottom: 20px
}

.box {
    margin-bottom: 0;
    height: 480px
}

ul.footer-menus-list.two {
    float: left;
    padding-left: 40px
}

section.instagram {
    padding: 0 35px;
    max-width: 1600px;
    margin: 0 auto
}

.button-btn {
    text-align: center;
    padding: 30px 0;
    border-radius: 10px!important;
    display: inline-block
}

.button-btn a {
    background-color: #333;
    padding: 14px 20px;
    color: #fff;
    border-radius: 10px
}

.button-btn-1 {
    text-align: center;
    padding: 20px 10px;
    display: inline-block
}

.button-btn-1 a {
    background-color: #408bd1;
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff
}

.zayakinsta {
    margin: 0 auto;
    text-align: center
}

.chance-pros-mainnn {
    position: relative;
    /* height: 400px; */
}

.chance-pros-mainnn:hover .chance-inner-wrapperrss {
    opacity: 1;
    transition: .3s
}

.zayak-detailss {
    text-align: center
}

section.dummy-video {
    padding-top: 50px;
    padding-bottom: 40px
}

@media only screen and (max-width: 600px) {
    body .right {
        float:right;
        margin-top: -45px;
        position: relative;
        left: -30px;
        height: 50px;
        z-index: 999!important
    }
}

@media only screen and (max-width: 800px) {
    body span#myCart {
        top:-55px
    }

    body button.btn.btn-danger.padd.btn-md {
        margin-top: -2px!important;
        font-size: 10px
    }

    body h4.product-name {
        text-align: center;
        font-size: 17px
    }

    body .quantity input.qty {
        position: relative;
        border: 0;
        width: 100%;
        height: 25px;
        padding: 10px 25px 10px 10px;
        text-align: center;
        font-weight: 400;
        font-size: 13px;
        border-radius: 0;
        background-clip: padding-box
    }

    body form#formReview {
        width: 100%
    }
}

.related-products-none-mobile {
    display: none
}

.featured .owl-nav.disabled {
    display: block!important;
    width: 100%;
    position: absolute;
    top: 50%
}

.featured .owl-nav.disabled .owl-prev {
    display: block;
    text-align: left;
    position: relative;
    top: -35px;
    left: 6px
}

.featured .owl-nav.disabled .owl-next {
    display: block;
    text-align: right;
    position: relative;
    top: -65px;
    left: -13px
}

.featured .owl-nav.disabled i {
    color: #06142b;
    background-color: #f1a642;
    padding: 10px
}

section.videos-section-wrapper img {
    width: 100%
}

div#header {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    position: fixed;
    width: 100%;
    transition: .5s;
    z-index: 9999;
    height: 70px;
    background: 0 0!important
}

section.topps {
    background: #fdfdfd;
    background-size: 100% 100%
}

.social {
    display: block;
    float: right
}

.search-btn input {
    position: absolute;
    top: 43px;
    width: 100%;
    height: 40.5px;
    line-height: 27px;
    outline: 0;
    border: 0;
    display: none;
    font-size: 1em;
    border-radius: 20px!important;
    padding: 0 20px;
    background-color: transparent;
    color: #064b76;
    border: 2px solid #064b76
}

.fa {
}

.search-btn form:hover {
    width: 200px;
    cursor: pointer;
    border-bottom: 1px solid #d5d5d5
}

.search-btn form:hover input {
    display: block
}

.search-btn {
    margin-top: -8px;
    padding-top: 0;
    height: 60px;
    position: relative;
    left: 40px
}

.search-btn input::placeholder {
    color: #064b76;
    font-size: 13px
}

.r-button {
    text-align: CENTER;
    margin-top: 15px
}

.r-button a {
    border: 1px solid #064b76;
    padding: 7px 25px;
    color: #064b76;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px
}

strong {
    color: #7c7a7a;
    font-weight: 400;
    font-size: 16px
}

.review {
    padding: 10px 0
}

.right {
    margin-top: -4px
}

li.dis-none {
}

.right img {
    margin-top: 5px!important
}

#header .logo img {
    margin-top: -20px
}

#header .logo img {
    margin-top: -20px
}

.top .tt-row .tt-btn-close:before {
    display: none
}

div#header {
    position: absolute!important
}

.topss {
    margin-top: 40px
}

.topsss {
    margin-top: 60px
}

.stracci-main-category-2 {
    width: 49.7%;
    float: left;
    padding-right: 3px;
    margin-bottom: 3px
}

.cat2.stracci-main-category-2 {
    width: 33%;
    float: left;
    margin-right: 2px
}

.cat3.stracci-main-category-2 {
    width: 33%;
    float: left;
    margin-right: 2px
}

.cat4.stracci-main-category-2 {
    width: 32%flo;
    width: 33%;
    float: left
}

.stracci-main-category-wrapper1s {
}

.stracci-main-category-wrapper1s:before {
    bottom: 0;
    height: 210p;
    height: 120px;
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(to bottom,rgb(19 84 121/0%) 0%,rgb(9 76 116)100%)
}

h4.serves-22 {
    text-align: center;
    color: #fff;
    padding-top: 35px;
    font-size: 25px
}

section.icons {
    padding-top: 60px;
    padding-bottom: 40px
}

.icon-main {
    text-align: center;
    margin: 0 auto
}

.icon-main p {
    font-size: 16px;
    max-width: 70%;
    margin: 0 auto
}

ul.head-iconsssss li a {
    display: inline-block;
    padding-right: 10px
}

ul.head-iconsssss img {
    filter: brightness(100)
}

h4.welcome {
    color: #fff!important;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px
}

.footer-p {
    color: #fff;
    font-size: 15px;
    font-weight: 300
}

p.email {
    padding-top: 15px
}

p.w-p {
    color: #fff;
    font-weight: 300;
    padding-bottom: 10px;
    font-size: 15px;
    padding-top: 10px
}

.pp-img {
    padding-top: 30px;
    padding-bottom: 30px
}

.lef {
    padding-left: 50px
}

.customers-main img {
    margin: unset;
    display: inline-block;
    float: left;
    padding-top: 6px
}

.customers-main {
    padding-bottom: 60px!important;
    border-bottom: 2px solid #9cadec69
}

.testimonials-img {
}

.testimonials-main {
    width: 90%;
    padding-top: 50px;
    height: 350px;
    position: relative;
    margin-left: 30px
}

.testimonials-img {
    width: 40%;
    float: left
}

.testimonials-img img {
    width: unset!important;
    max-width: 100%
}

.testmonials-contentmain {
    width: 60%;
    float: left
}

.testmonials-contentmain img {
    width: unset!important;
    float: left
}

.testmonials-name img {
    width: unset!important;
    display: inline-block!important;
    margin-top: -4px!important
}

.testmonials-name h {
}

.testmonials-name h6 {
    text-align: left;
    display: inline-block;
    font-size: 18px;
    font-weight: 400
}

.testimonials-content {
    width: 100%!important
}

.testmonials-name {
    position: relative;
    left: 0;
    top: 30px
}

.testmonials-name p {
    font-style: italic;
    color: #767676
}

.testimonials-main:hover {
    border-bottom: 4px solid #064b76
}

section.testimonials .owl-dots span {
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 50px;
    float: none;
    background: #000;
    text-align: center;
    text-align: center;
    border: 1px solid #000
}

h4.welcome.a {
    text-transform: uppercase
}

ul.view-pro-img {
    white-space: nowrap;
    margin-top: 0
}

.chance-main-11 {
    height: 450px
}

.chance-main-11 img {
    height: 100%;
    max-width: 100%
}

.chance-inner-wrapper-productt a {
    color: #064b76;
    font-size: 22px;
    font-weight: 500
}

.zayak-detailsss {
    color: #7fffd4!important
}

span.zayak-detailss-22 strong {
    color: #064b76;
    font-size: 20px
}

span.zayak-detailss-22 {
    position: relative;
    top: 8px
}

.chance-pro-22-main {
    border-bottom: 2px solid #1a48a826;
    padding-bottom: 25px
}

.cat-feat button.btn.btn-primary.inquiry-pops {
    width: 100%;
    background: 0 0;
    color: #1b3e56;
    box-shadow: unset;
    border: 1px solid #064b76!important;
    border: 1;
    border-radius: unset;
    margin-top: 20px;
    height: 50px;
    transition: .5s
}

button.btn.btn-primary.inquiry-pops.\32 {
    width: 100%;
    background: #064b76;
    color: #fff;
    box-shadow: unset;
    border: 1px solid #064b8c;
    border: 1;
    border-radius: unset;
    margin-top: 12px;
    height: 60px;
    transition: .5s
}

.LEFTT {
    padding-left: 40px
}

section.logo-sec {
    position: relative;
    top: 30px!important;
    width: 100%;
    border-bottom: 1px Solid #ccc
}

.thirty {
    border: 1px solid #ccc;
    margin-bottom: 50px;
    margin-top: 20px
}

h4.thirty-h4 {
    text-align: center;
    padding: 25px 0;
    color: #064b76;
    text-transform: uppercase
}

.zz {
    border-right: 1px solid #ccc
}

h2.returns {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2e3032;
    padding-bottom: 20px
}

p.returns-p {
    font-size: 16px;
    padding-bottom: 17px;
    font-weight: 300;
    color: #000
}

li.returns-li {
    list-style: none;
    font-weight: 300;
    color: #000;
    padding-bottom: 10px;
    font-size: 16px
}

.return-policy strong {
    font-weight: 600;
    color: #064b76;
    padding-right: 10px
}

h3 {
}

.return-policy h3 {
    color: #064b76!important;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 20px
}

section.return-policy {
    padding-bottom: 70px;
    padding-top: 30px
}

p {
}

.container.entry p {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    color: #000;
    margin-top: -10px
}

.con {
    padding-top: 40px
}

.full {
    padding-left: 15px;
    padding-top: 10px;
    padding-right: 15px
}

p.capchap {
    margin-top: 40px!important
}

.map {
    padding-top: 30px;
    padding-bottom: 20px
}

.icon-mainnn {
    display: inline-block;
    height: 130px;
    overflow: hidden;
    padding-top: 10px
}

.icon-main-2 {
    position: relative
}

.icon-main-2 p {
    text-align: left!important
}

.icon-main-1 {
    display: inline-block
}

section.last-form {
    background: url(/images/contact-back.jpg);
    background-size: cover;
    padding-bottom: 80px
}

h2.titlew {
    text-align: CENTER;
    padding-top: 40px;
    padding-bottom: 20px;
    color: #fff;
    font-weight: 400
}

.cont .form-control {
    background: 0 0;
    padding-left: 10px
}

input#inquiry_form_email {
}

.cont input {
    color: #fff!important
}

.cont input::placeholder {
    color: #fff;
    font-weight: 200
}

.cont textarea.form-control {
    color: #fff
}

.cont textarea.form-control::placeholder {
    color: #fff;
    font-weight: 200
}

.cont textarea {
}

.cont .col-md-12 {
}

.cont .col-md-6 {
}

.cont .col-md-4 {
}

.main-faq {
    height: 200px;
    box-shadow: 0 0 15px #ccc;
    margin-bottom: 30px
}

.question {
    padding: 40px
}

.question h3 {
    font-size: 17px;
    font-weight: 500;
    color: #064b76
}

p.answer {
    font-size: 14px;
    color: #424242;
    font-weight: 400;
    padding-bottom: 5px;
    padding-right: 20px;
    word-break: break-word
}

section.QuestionAnswer h4 {
    padding-bottom: 40px
}

container.entry p {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    color: #000;
    margin-top: -10px
}

.con {
    padding-top: 40px
}

.full {
    padding-left: 15px;
    padding-top: 10px;
    padding-right: 15px
}

p.capchap {
    margin-top: 40px!important
}

.map {
    padding-top: 30px;
    padding-bottom: 20px
}

.icon-mainnn {
    display: inline-block;
    height: 130px;
    overflow: hidden;
    padding-top: 10px;
    display: flex
}

.icon-main-2 {
    position: relative;
    padding-left: 21px
}

.icon-main-2 p {
    text-align: left!important
}

.icon-main-1 {
    display: inline-block
}

section.last-form {
    background: url(/images/contact-back.jpg);
    background-size: cover;
    padding-bottom: 80px
}

h2.titlew {
    text-align: CENTER;
    padding-top: 40px;
    padding-bottom: 20px;
    color: #fff;
    font-weight: 400
}

.cont .form-control {
    background: 0 0;
    padding-left: 10px
}

input#inquiry_form_email {
}

.cont input {
    color: #fff!important
}

.cont input::placeholder {
    color: #fff;
    font-weight: 200
}

.cont textarea.form-control {
    color: #fff
}

.cont textarea.form-control::placeholder {
    color: #fff;
    font-weight: 200
}

.cont textarea {
}

.cont .col-md-12 {
}

.cont .col-md-6 {
}

.cont .col-md-4 {
}

section.QuestionAnswer h4 {
    text-align: CENTER;
    font-size: 24px
}

.qu {
    margin-bottom: 60px;
    margin: 0
}

h4.welcome a {
    color: #fff
}

.panel p {
    padding-top: 3px;
    color: #000
}

.faqs .accordion {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 17px;
    transition: .4s;
    border: 1px solid #064b76;
    margin-bottom: 0
}

.accordion.active,.accordion:hover {
    background-color: #064b76;
    color: #fff
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: 700;
    float: right;
    margin-left: 5px
}

.accordion.active:after {
    content: "\2212"
}

.faqs .panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 90px;
    overflow: hidden;
    transition: max-height .2s ease-out;
    border: unset;
    border: 1px solid #ccc;
    border-radius: unset!important
}

.faqs {
    margin-top: 20px
}

.faqs {
    text-align: center
}

h2.faqsh2 {
    text-align: center;
    padding: 20px 0;
    color: #000;
    font-weight: 600;
    text-transform: uppercase
}

button.accordion.active {
    color: #fff
}

.faqs .panel {
    webkit-box-shadow: unset!important;
    box-shadow: unset!important
}

.faqs button.accordion.active {
    color: #000
}

.accordion:after {
    content: '\002B';
    font-weight: 900px;
    float: right;
    margin-left: 5px;
    font-size: 18px;
    content: "";
    background: url(/images/before.png);
    height: 20px;
    width: 20px;
    background-repeat: no-repeat
}

.accordion.active:after {
    content: "\2212";
    color: #fff;
    background: url(/images/before.png);
    filter: brightness(100);
    background-repeat: no-repeat;
    transform: rotate(180deg);
    content: ""
}

.QuestionAnswer {
    padding: 40px 0
}

.faqs p {
    color: #064b76;
    font-size: 13px;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px
}

.faqs .accordion {
    background-color: transparent;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: .4s;
    margin-bottom: 0;
    border: 1px solid #064b76;
    font-weight: 400;
    text-align: center
}

.faqs .panel {
    padding: 0 18px;
    background-color: #fff;
    display: none;
    overflow: hidden
}

.faqs .accordion:hover:after {
    color: #fff!important;
    filter: unset
}

button.btn.btn-primary.inquiry-pops.\32:hover {
    transition-delay: .25s;
    background: #18d7ea!important;
    color: #fff!important;
    transition: .5s;
    border: 1px solid #18d7ea
}

.cat-feat button.btn.btn-primary.inquiry-pops:hover {
    background: #44b5de;
    color: #fff;
    border: 1px solid #44b5de
}

a.cartt {
    margin-top: 0
}

.fa-check:before {
    content: "\f00c";
    position: relative;
    top: 0
}

.chance-pros-mainnssss {
    position: relative;
    height: 140px
}

.chance-mainn-1ssss {
    width: 50%;
    float: left;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    height: 120px;
    position: relative
}

.chance-pros-mainnssss {
    position: relative
}

.chance-mainn-1ssss img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%
}

.chance-pro-2ssss {
    float: right;
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    padding-left: 10px;
    display: flex
}

.chance-innerr-wrapper-productsss {
    float: right
}

.chance-pro-2ssss a {
    font-size: 14px;
    color: #3b3333;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 33px 0 0
}

.filter-box {
}

.my_cat.cat_level_1.p_active:before {
    content: "";
    background-color: #0d4a92;
    width: 3px;
    height: 100%;
    position: absolute;
    left: -2px;
    top: 0
}

.my_cat.cat_level_1.p_active {
    position: relative;
    background: 0 0
}

.chance-pros-mainnsssss {
    position: RELATIVE
}

.chance-mainn-1sssss {
    border: 1px solid #ccc;
    width: 50%
}

.chance-mainn-1sssss img {
    max-height: 100%;
    max-width: 100%
}

.chance-pro-2sssss {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    float: left;
    width: 50%
}

.chance-innerr-wrapper-productssss a {
    font-size: 14px;
    color: #3b3333;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left
}

.chance-innerr-wrapper-productssss {
    position: absolute;
    top: 40px;
    width: 50%;
    right: -10px
}

.related-productt {
    margin-top: 60px
}

.related-products {
    margin-top: 60px
}

.my_cat.cat_level_1.p_active a {
    color: #064b76!important
}

.cat_level_1 a:first-child {
    position: relative
}

.cat_level_1 a:first-child:before {
    content: "v";
    position: absolute;
    right: 11px;
    font-size: 15px!important;
    color: #000;
    font-weight: 700;
    opacity: 0
}

.my_cat.cat_level_1:hover a:before {
    content: "";
    background-color: #0d4a92;
    width: 3px;
    height: 100%;
    position: absolute;
    left: -2px;
    top: 0;
    opacity: 1
}

.filter-box .navbar-collapse {
    padding-left: 0;
    border-top: 1px solid #ccc;
    padding-right: 0
}

.my_cat {
    border-bottom: 1px Solid #ccc;
    margin-bottom: 1px
}

.col-md-12.col-sm-12.col-xs-12.related-products-main-div.no-paddis {
    padding-left: 0
}

h3.cat-h3 {
    color: #064b76;
    text-transform: uppercase;
    font-size: 20px;
    color: #064b76
}

.ext-padd input[type=text]:focus {
    outline: none
}

body .ext-padd {
    position: relative;
    display: INLINE-BLOCK;
    text-align: RIGHT;
    margin-top: 20px;
    float: RIGHT;
    display: none
}

.ext-padd input[type=text] {
    background-color: #f1f1f1;
    padding: 10px 20px;
    width: 253px;
    font-size: 13px
}

.header-search-btn-1 {
    font-size: 0;
    background-color: #0d4a92!important;
    color: transparent;
    border: unset;
    height: 37px;
    position: relative;
    top: -7px;
    width: 40px;
    left: -43px;
    border-left: 1px solid #ccc!important
}

.icon-main-1.zxz {
    width: 150px
}

body .pd-thumbs ul li {
    text-align: left;
    margin-top: 0;
    padding-left: 0;
    display: block
}

.main-pic img {
    vertical-align: middle;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.prod_main .btn-primary {
    width: 100%;
    background: 0 0;
    color: #1b3e56;
    box-shadow: unset;
    border: 1px solid #064b76!important;
    border: 1;
    border-radius: unset;
    margin-top: 20px;
    height: 50px;
    transition: .5s
}

.boxxx {
    padding-left: 30px
}

p.tax {
    font-size: 16px;
    margin-top: 10px;
    color: #064b76d6
}

h6.answers-h6 {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: left;
    color: #064b76
}

h2.customerss {
    color: #064b76;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px
}

.testimonials-captionn {
    background: #fff;
    margin: 0 10px;
    padding: 40px;
    box-shadow: 0 0 11px #ccc;
    margin-top: 10px;
    margin-bottom: 20px
}

h6.test-head-22 {
    text-align: center;
    font-weight: c;
    color: #000;
    font-weight: 300;
    font-size: 15px;
    line-height: 25px;
    padding-bottom: 20px
}

h5.test-head-11 {
    text-align: center;
    color: #064b76
}

img.img-stars {
    width: unset!important;
    padding-bottom: 10px;
    max-width: unset!important
}

.testmonials-contentt p {
    text-align: center
}

section.pro-tech {
    padding-top: 70px;
    padding-bottom: 40px
}

.pro-tech-main h4 {
    color: #064b76;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding-top: 0
}

.pro-tech-main p {
    text-align: center;
    color: #626262
}

.pro-tech-main img {
    padding: 20px
}

section.starss {
    padding-top: 50px
}

.star-button {
    display: block;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 60px
}

.star-button a {
    background: #000000c4;
    color: #fff;
    padding: 7px 30px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400
}

.\34 -star-1 img {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc
}

.star-button img {
    padding-right: 6px;
    position: relative;
    top: -2px;
    height: 9px
}

.main-re {
    display: inline-block;
    background: #f0f8ff;
    padding: 6px 18px;
    border-bottom: 4px solid #054b7f
}

.main-re span {
    font-weight: 400
}

.main-re p {
    padding: 5px;
    font-weight: 600
}

.row.rew {
    border-bottom: 1px solid #ccc
}

.f-n {
    display: inline-block;
    background: url(/images/j-back.png);
    height: 70px;
    width: 70px;
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    position: relative
}

.f-n span {
    color: #bbcfdb;
    font-weight: 700;
    font-size: 27px;
    text-align: center!important;
    display: block;
    position: relative;
    top: 15px
}

.dated {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 21px
}

span.comment {
    display: block;
    padding-top: 10px
}

.dated img {
    padding-left: 4px;
    position: relative
}

.zza {
    padding-left: 60px
}

.topsss img.img-responsive {
    max-width: 100%
}

.owl-carousel.owl-theme.owl-carousel14 {
    display: block
}

body .owl-carousel-vertical {
    transform: rotate( 90deg);
    position: relative;
    margin-top: 10px
}

body .owl-carousel-vertical .owl-item .item {
    transform: rotate(0deg);
    display: inline-block;
    height: 60px;
    width: 60px;
    position: relative;
    border: 1px solid #ccc
}

body .owl-carousel-vertical .owl-item {
    height: 63px!important;
    width: 63px!important;
    display: block!important;
    transform: rotate(-90deg)
}

body .owl-carousel-vertical .owl-dots {
    display: none
}

body .owl-carousel-vertical .owl-nav {
    position: absolute;
    left: 320px
}

body .owl-carousel-vertical .owl-item .item img {
    width: unset!important;
    height: unset!important;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0
}

.owl-carousel-vertical .owl-stage-outer {
    width: 380px
}

section.cat-feat {
    overflow: hidden!important
}

.owl-carousel-vertical .owl-stage {
    width: 390px!important;
    overflow: hidden!important;
    position: relative
}

body .owl-carousel-vertical .owl-item .item li {
    list-style: none!important
}

section.cat-feat .owl-next {
    display: none
}

section.cat-feat .owl-prev {
    font-size: 0;
    background: url(/images/before.png);
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    position: relative;
    left: 110px;
    top: -47px
}

@media only screen and (max-width: 445px) {
    body .cart.pull-left {
        right:-9px!important;
        top: -50px!important
    }
}

body .subscribe .form-control {
    padding: 7px 0
}

section.videos-section-wrapperr .owl-dot {
    display: none
}

.topps .container {
    border-bottom: 1px solid #e7e7e7
}

.faqs .panel span {
    padding: 0;
    font-size: 14px!important;
    line-height: 20px
}

body .review input:focus {
    box-shadow: unset;
    border-bottom: solid 2px #064b76!important
}

body .review img {
    width: 50%!important;
    display: inline-block
}

.icon-main img {
    margin: 0 auto
}

.logo-logoa {
    padding: 0
}

.ab-ft .logo img {
    max-width: 240px!important;
    max-height: 240px!important
}

body .product_secondary_images_containers {
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%
}

body .slider {
    padding: 0 150px
}

h1.serves-2 {
    text-align: center;
    font-size: 52px;
    color: #fff;
    text-transform: uppercase
}

div#countryModal select#countrySelect {
    border-color: #064b76!important;
    font-weight: 500;
    border: 3px solid;
    height: 55px!important;
    color: #000;
    font-size: 15px;
    max-width: 400px!important;
    background-color: #ffffffc7
}

#countryModal .modal-body {
    padding: 30px;
    background: url(/images/discover.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top
}

div#countryModal {
    max-width: 600px
}

.modal-header {
    background-color: #064b76;
    color: #fff;
    border-bottom: 1px solid #064b76
}

div#countryModal .modal-header .close:hover {
    background-color: #30c3de;
    transition: .5s
}

div#countryModal form#countryForm .form-group {
    margin-bottom: 30px
}

.home-category-wrapper {
    position: relative;
    height: 370px;
}

.home-category-1 {
    position: relative;
    height: 360px;
}

.home-category-1 img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 100% !important;
    max-height: 100%;
    opacity: .7;
    transition: .3s ease;
    width: 100%;
}

.home-category-wrapper:hover .home-category-1 img {
    opacity: 1;
    transition: .3s ease;
}

.home-category-1:before {
    content: "";
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.home-category-2 {
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.home-category-2 h6 a {
    background-color: #fff;
    color: #064b76;
    padding: 2px 10px 5px 10px;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 22px;
}

.home-category-2 h4 a {
    color: #fff;
}