@charset "UTF-8";
.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    animation-duration: .75s
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1)
    }
    30% {
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    from {
        transform: none
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    from,
    11.1%,
    to {
        transform: none
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }
    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }
    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInX
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInY
}

@keyframes flipOutX {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@keyframes flipOutY {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

.rotateme {
    animation-name: rotateme;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 40s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 40s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 40s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 40s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear
}

@keyframes rotateme {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg)
    }
}

@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg)
    }
    to {
        -o-transform: rotate(360deg)
    }
}

.animatedBackground {
    background-repeat: repeat!important;
    background-size: auto!important;
    animation: animatedBackground 20s linear infinite;
    -ms-animation: animatedBackground 20s linear infinite;
    -moz-animation: animatedBackground 20s linear infinite;
    -webkit-animation: animatedBackground 20s linear infinite
}

@keyframes animatedBackground {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
}

@-webkit-keyframes animatedBackground {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
}

@-ms-keyframes animatedBackground {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
}

@-moz-keyframes animatedBackground {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
} 
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .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
    }
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
    display: none
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

@media only screen and (max-width: 767px) {
    .spinner {
        margin: -70px auto 0 -40px
    }
    .ptb-100 {
        padding-top: 55px;
        padding-bottom: 55px
    }
    p {
        font-size: 14px
    }
    .btn {
        font-size: 13px;
        padding: 13px 30px
    }
    img {
        width: 100%
    }
    .section-title span {
        font-size: 15px
    }
    .section-title h3 {
        font-size: 23px;
        max-width: 100%;
        line-height: 31px;
        margin-top: 10px;
        margin-bottom: 20px
    }
    .section-title .read-more-btn {
        display: none
    }
    .form-control {
        height: 45px;
        font-size: 14px;
        padding: 11px 14px
    }
    .form-group {
        margin-bottom: 10px
    }
    .header-area {
        text-align: center
    }
    .header-area .header-info {
        display: none
    }
    .header-area .social-links li a {
        margin-left: 6px;
        font-size: 14px
    }
    .main-banner {
        height: 100%;
        padding-top: 50px;
        padding-bottom: 50px
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3
    }
    .hero-content h1 span::after {
        bottom: 7px;
        height: 8px
    }
    .hero-content p {
        margin-bottom: 30px;
        margin-top: 20px;
        font-size: 16px
    }
    .hero-content .btn {
        margin-right: 10px
    }
    .video-btn {
        padding-right: 35px;
        font-size: 13px
    }
    .video-btn i {
        margin-left: 10px;
        font-size: 27px;
        bottom: -4px
    }
    .hero-image {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 35px;
        padding: 0 15px
    }
    .main-banner-two {
        height: 100%;
        padding-top: 50px;
        padding-bottom: 50px
    }
    .main-banner-two .hero-content {
        margin-top: 40px
    }
    .main-banner-two .banner-image {
        margin-top: 0
    }
    .banner-image {
        margin-top: 50px
    }
    .main-banner-three {
        height: 100%;
        padding-top: 50px;
        padding-bottom: 110px
    }
    .main-banner-three .banner-image {
        margin-top: 0;
        margin-bottom: 40px
    }
    .owl-theme .owl-nav [class*="owl-"] {
        top: auto;
        bottom: 35px
    }
    .main-banner-four {
        height: 100%;
        padding-top: 50px;
        padding-bottom: 110px
    }
    .main-banner-four .banner-image {
        margin-top: 0;
        margin-bottom: 40px
    }
    .single-box {
        padding: 15px;
        margin-bottom: 30px
    }
    .single-box .icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        line-height: 70px
    }
    .single-box h3 {
        font-size: 19px;
        margin-top: 25px;
        margin-bottom: 15px
    }
    .about-image {
        margin-top: 30px
    }
    .about-text {
        margin-top: 50px;
        padding-left: 0
    }
    .about-text span {
        font-size: 14px
    }
    .about-text h3 {
        font-size: 23px;
        margin: 15px 0 20px;
        line-height: 30px
    }
    .about-text p {
        margin-bottom: 15px
    }
    .circle-pattern-2 {
        top: -10px;
        bottom: auto
    }
    .rocket {
        display: none
    }
    .vector {
        display: none
    }
    .page-title {
        padding-top: 60px;
        padding-bottom: 60px
    }
    .page-title h3 {
        font-size: 24px;
        margin-bottom: 15px
    }
    .page-title ul li {
        font-size: 15px
    }
    .services-area {
        padding-bottom: 25px
    }
    .single-services {
        padding: 15px
    }
    .single-services .icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        line-height: 71px
    }
    .single-services h3 {
        font-size: 19px;
        margin-bottom: 15px;
        margin-top: 25px
    }
    .read-more-btn {
        font-size: 14px
    }
    .services-box {
        padding: 15px
    }
    .services-box .icon {
        width: 70px;
        height: 70px;
        line-height: 71px;
        font-size: 35px;
        margin: 18px 0
    }
    .services-box .icon::before {
        width: 106px;
        height: 106px;
        top: -19px;
        left: -19px
    }
    .services-box h3 {
        font-size: 19px
    }
    .features-text {
        margin-top: 0
    }
    .features-text h3 {
        font-size: 23px;
        margin-bottom: 18px;
        line-height: 1.3
    }
    .features-text ul {
        margin: 20px 0 25px
    }
    .features-text ul li {
        margin-bottom: 12px;
        padding-left: 29px;
        font-size: 14px
    }
    .features-area .ptb-100 {
        padding-top: 40px;
        padding-bottom: 40px
    }
    .features-area .img {
        margin-bottom: 35px
    }
    .features-text {
        margin-top: 0;
        margin-bottom: 40px
    }
    .features-area-two {
        padding-bottom: 25px
    }
    .single-features {
        margin-bottom: 30px
    }
    .single-features i {
        width: 70px;
        height: 70px;
        font-size: 30px;
        line-height: 72px
    }
    .single-features h3 {
        font-size: 19px
    }
    .features-area-three {
        padding-bottom: 25px
    }
    .check-your-website .text h3 {
        font-size: 23px;
        margin-bottom: 15px
    }
    .check-your-website .text p {
        font-size: 15px
    }
    .check-your-website .text .form-control {
        border-radius: 40px;
        height: 50px;
        margin-bottom: 15px
    }
    .check-your-website .text .btn {
        margin-top: 0;
        padding: 15px 40px;
        display: block;
        width: 100%
    }
    .box {
        height: 90px
    }
    .box span {
        font-size: 85px
    }
    .box h3 {
        font-size: 15px;
        line-height: 24px
    }
    .features-box {
        margin-bottom: 30px;
        padding-left: 70px
    }
    .features-box i {
        width: 50px;
        height: 50px;
        font-size: 26px;
        line-height: 53px
    }
    .features-box h3 {
        font-size: 19px;
        line-height: 22px;
        margin-bottom: 15px
    }
    .features-box p {
        margin-bottom: 10px
    }
    .working-process-area {
        padding-bottom: 25px
    }
    .single-work-process {
        padding: 15px;
        margin-bottom: 30px
    }
    .single-work-process::before {
        display: none
    }
    .single-work-process h3 {
        font-size: 19px;
        margin-top: 25px
    }
    .single-work-process .icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        line-height: 74px
    }
    .analysis-form {
        padding: 15px
    }
    .analysis-form h3 {
        font-size: 20px;
        margin-bottom: 25px
    }
    .analysis-form form .btn {
        padding: 11px 40px
    }
    .analysis-text {
        margin-top: 40px
    }
    .analysis-text span {
        font-size: 15px
    }
    .analysis-text h3 {
        font-size: 22px;
        margin: 15px 0;
        line-height: 31px
    }
    .analysis-text ul li {
        font-size: 14px
    }
    .shorting-menu {
        display: block;
        padding: 10px 10px 5px;
        margin-bottom: 35px;
        border-radius: 5px;
        text-align: center
    }
    .shorting-menu .filter {
        font-size: 14px;
        margin-bottom: 5px
    }
    .single-work {
        margin-top: 5px
    }
    .single-work .work-content h4 {
        font-size: 19px;
        margin-bottom: 8px
    }
    .single-work .work-content ul li {
        font-size: 14px
    }
    .single-work .popup-btn,
    .single-work .link-btn {
        right: 20px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 15px
    }
    .single-work:hover .popup-btn,
    .single-work:hover .link-btn {
        top: 20px
    }
    .single-work:hover .link-btn {
        left: 20px
    }
    .single-feedback {
        padding: 20px 15px;
        margin-top: 24px
    }
    .single-feedback .client-info {
        padding-left: 117px;
        margin-bottom: 25px
    }
    .single-feedback .client-info h4 {
        font-size: 19px
    }
    .single-feedback .client-info span {
        font-size: 14px;
        margin-top: 8px
    }
    .owl-theme .owl-dots {
        margin-top: 10px
    }
    .team-area {
        padding-bottom: 25px
    }
    .single-team {
        padding: 15px
    }
    .single-team .team-content h3 {
        font-size: 19px
    }
    .single-team .team-content span {
        font-size: 14px
    }
    .single-team .team-content ul li a {
        font-size: 14px
    }
    .funfacts-area {
        padding-bottom: 25px
    }
    .fun-fact {
        margin-bottom: 30px;
        padding-left: 55px
    }
    .fun-fact i {
        font-size: 35px;
        top: 5px
    }
    .fun-fact p {
        font-size: 15px
    }
    .fun-fact h3 {
        font-size: 30px;
        margin-top: 10px;
        line-height: 26px
    }
    .tab-slider-trigger {
        padding: 10px 25px;
        font-size: 14px
    }
    .tab-slider-container .row {
        width: auto
    }
    .tab-slider-nav {
        margin-bottom: 10px
    }
    .pricingTable {
        padding-bottom: 25px;
        margin-top: 30px
    }
    .pricingTable .pricingTable-header {
        padding: 25px 15px 35px;
        z-index: 1
    }
    .pricingTable .pricingTable-header::before {
        z-index: -1
    }
    .pricingTable .title {
        font-size: 19px
    }
    .pricingTable .price-value {
        font-size: 30px;
        margin-bottom: 25px
    }
    .pricingTable .price-value span {
        font-size: 13px;
        margin-left: -5px
    }
    .pricingTable .pricing-content li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 10px
    }
    .pricing-plan {
        margin-top: 30px;
        padding-bottom: 25px
    }
    .pricing-plan h3 {
        font-size: 19px;
        padding-top: 25px
    }
    .pricing-plan h3 span {
        height: 85px;
        width: 85px;
        margin: 20px auto -65px;
        line-height: 90px;
        font-size: 25px
    }
    .pricing-plan ul {
        margin: 70px 0 25px
    }
    .pricing-plan li {
        padding: 10px 0;
        font-size: 14px
    }
    .pricing-plan#most-popular {
        top: 0;
        padding: 25px 0
    }
    .single-blog-item span {
        font-size: 14px
    }
    .single-blog-item h4 {
        font-size: 19px
    }
    .newsletter {
        max-width: 100%;
        padding: 20px 15px;
        border-radius: 5px
    }
    .newsletter form .form-control {
        height: 70px;
        border-radius: 5px;
        padding-left: 18px;
        font-size: 16px
    }
    .newsletter form .btn {
        position: relative;
        right: 0;
        top: 0;
        height: 55px;
        width: 100%;
        margin-top: 10px
    }
    .newsletter h4 {
        margin-bottom: 25px;
        font-size: 23px
    }
    .timeline::before {
        left: 10px
    }
    .timeline > li {
        margin-bottom: 0;
        position: relative;
        width: 100%;
        float: left;
        clear: left
    }
    .timeline > li > .timeline-panel {
        width: calc(100% - 50px);
        width: -webkit-calc(100% - 50px)
    }
    .timeline > li > .timeline-badge {
        left: -2px;
        margin-left: 0;
        top: 25px
    }
    .timeline > li > .timeline-panel {
        float: right;
        padding: 20px 15px;
        text-align: left
    }
    .timeline > li > .timeline-panel::before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto
    }
    .timeline > li > .timeline-panel::after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto
    }
    .timeline > li.timeline-inverted {
        float: left;
        clear: left;
        margin-top: 30px;
        margin-bottom: 30px
    }
    .timeline > li.timeline-inverted .timeline-footer {
        text-align: right
    }
    .timeline > li.timeline-inverted > .timeline-badge {
        left: -2px
    }
    .timeline-heading h4 {
        font-size: 19px
    }
    .timeline-body > p {
        font-size: 14px;
        margin-bottom: 40px
    }
    .blog-area .section-title {
        z-index: 1
    }
    .single-blog-item {
        padding: 15px
    }
    .single-blog-post .blog-post-content {
        padding: 15px
    }
    .single-blog-post .blog-post-content span {
        font-size: 14px
    }
    .single-blog-post .blog-post-content h4 {
        font-size: 19px
    }
    .blog-details .date {
        padding: 9px 19px;
        font-size: 19px
    }
    .blog-details-heading h3 {
        font-size: 19px;
        line-height: 26px
    }
    .blog-details-content p {
        font-size: 14px
    }
    .blog-details-content .blockquote {
        padding: 20px
    }
    .blog-details-content .blockquote p {
        font-size: 16px
    }
    .blog-details-content .blockquote .blockquote-footer {
        font-size: 16px
    }
    .blog-details-content .title {
        font-size: 19px;
        margin-bottom: 30px
    }
    .blog-details-meta ul .title {
        font-size: 16px
    }
    .blog-details-meta .tags li a {
        padding: 4px 13px;
        font-size: 14px
    }
    .blog-details-meta .share {
        float: none;
        margin-top: 20px
    }
    .blog-details-meta .share li a {
        width: 30px;
        font-size: 14px;
        height: 30px;
        line-height: 30px
    }
    .blog-details-comments .single-comments {
        padding-left: 120px
    }
    .blog-details-comments .single-comments .content h4 {
        font-size: 17px
    }
    .blog-details-comments .single-comments .content span {
        font-size: 14px;
        margin: 8px 0 15px
    }
    .single-comments.left-mr {
        margin-left: 20px;
        margin-top: 35px
    }
    .blog-details-comments-form .btn {
        margin-top: 10px
    }
    .contact-box {
        padding: 20px 15px 20px 80px;
        margin-bottom: 30px
    }
    .contact-box .icon {
        left: 15px;
        top: 20px;
        width: 45px;
        height: 45px;
        line-height: 44px;
        font-size: 20px
    }
    .contact-box .content h4 {
        font-size: 18px;
        margin-bottom: 15px
    }
    .contact-box .content p {
        font-size: 14px
    }
    .contact-text h3 {
        font-size: 19px
    }
    .contact-text .social-links {
        margin-bottom: 30px
    }
    #map {
        margin-top: 0;
        margin-bottom: 30px
    }
    #contactForm .btn {
        padding: 13px 40px;
        font-size: 13px
    }
    .accordion .accordion-title {
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 14px
    }
    .error {
        max-width: 100%
    }
    .error h1 {
        font-size: 130px
    }
    .error p {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 25px
    }
    .project-details h3 {
        font-size: 19px
    }
    .project-details p {
        font-size: 14px
    }
    .project-details .features {
        margin-top: 25px
    }
    .project-details ul.features li {
        margin-bottom: 12px;
        padding-left: 24px;
        font-size: 14px
    }
    .project-info {
        margin-top: 30px
    }
    .project-info ul li {
        padding-left: 40px;
        margin-bottom: 15px;
        font-size: 14px
    }
    .project-info ul li i {
        font-size: 25px
    }
    .project-info ul li span {
        font-size: 17px
    }
    .pagination-area {
        margin-top: 25px
    }
    .page-link {
        padding: 10px 18px;
        font-size: 14px
    }
    .side-bar {
        margin-top: 40px;
        margin-bottom: 40px
    }
    .side-bar .widget-box {
        padding: 25px 20px
    }
    .side-bar .widget-box .title {
        font-size: 19px;
        margin-bottom: 30px
    }
    .side-bar .categories-box ul li a {
        margin-bottom: 12px;
        font-size: 14px
    }
    .side-bar .tags-box ul li a {
        padding: 4px 14px;
        font-size: 14px
    }
    .side-bar .tags-box .title {
        margin-bottom: 24px
    }
    .recent-post-desc {
        margin-top: -5px
    }
    .repair-main-banner {
        padding-top: 155px;
        padding-bottom: 245px
    }
    .repair-banner-content p {
        font-size: 15px
    }
    .repair-banner-content h2 {
        line-height: 1.2;
        font-size: 30px
    }
    .repair-boxes-area::before {
        -webkit-transform: skewY(170deg);
        transform: skewY(170deg)
    }
    .single-repair-box h3 {
        font-size: 18px
    }
    .single-repair-box img {
        width: unset
    }
    .repair-about-image {
        padding-bottom: 30px
    }
    .repair-about-image img:last-child {
        position: relative;
        bottom: 0;
        border: none;
        right: 0;
        margin-top: 20px
    }
    .single-repair-services {
        padding: 20px
    }
    .single-repair-services h3 {
        font-size: 19px
    }
    .repair-services-inner {
        margin-top: 50px;
        padding: 30px 15px
    }
    .repair-services-inner .col-lg-4:nth-child(2) {
        border-left: none;
        border-right: none;
        margin-bottom: 20px;
        margin-top: 20px
    }
    .single-repair-feedback {
        padding: 20px
    }
    .single-repair-feedback .client-info span {
        font-size: 14px
    }
    .gallery-area {
        padding-bottom: 25px
    }
    .repair-blog-area {
        padding-bottom: 25px
    }
    .single-repair-blog-post {
        margin-bottom: 30px
    }
    .single-repair-blog-post .blog-content h3 {
        font-size: 19px;
        line-height: 1.4
    }
    .repair-subscribe-area {
        margin-top: -55px;
        margin-bottom: 55px
    }
    .repair-subscribe-content {
        padding: 30px 15px
    }
    .repair-subscribe-content h2 {
        font-size: 24px;
        margin-bottom: 20px
    }
    .repair-subscribe-content form .form-group {
        float: unset;
        margin-bottom: 10px;
        width: 100%;
        padding-right: 0
    }
    .repair-subscribe-content form .btn {
        float: unset;
        width: 100%
    }
    .woocommerce-topbar {
        text-align: center;
        padding-top: 15px;
        padding-bottom: 15px
    }
    .woocommerce-topbar .woocommerce-result-count {
        margin-bottom: 10px
    }
    .woocommerce-topbar .woocommerce-topbar-ordering .form-control {
        height: 40px;
        padding: 6px 14px
    }
    .single-products .products-content h3 {
        font-size: 19px
    }
    .productsQuickView .modal-content .products-content {
        padding: 20px
    }
    .productsQuickView .modal-content .products-content h3 {
        font-size: 19px;
        margin-bottom: 12px;
        line-height: 1.4
    }
    .products-details {
        margin-top: 20px
    }
    .products-details .payment-methods img {
        width: auto
    }
    .cart-table table thead tr th {
        padding: 15px;
        font-size: 15px;
        white-space: nowrap
    }
    .cart-buttons .continue-shopping-box {
        text-align: center;
        margin-bottom: 15px
    }
    .cart-buttons .text-right {
        text-align: center!important
    }
    .cart-totals {
        padding: 20px
    }
    .cart-totals h3 {
        font-size: 19px
    }
    .checkout-area .title {
        font-size: 19px
    }
    .order-details {
        margin-top: 30px
    }
    .single-repair-blog-post .blog-content ul {
        overflow: hidden
    }
    .footer-area {
        padding-top: 55px
    }
    .single-footer-widget {
        margin-bottom: 30px
    }
    .single-footer-widget .logo a {
        font-size: 25px
    }
    .single-footer-widget h3 {
        font-size: 19px;
        margin-bottom: 25px
    }
    .single-footer-widget .services-list li a {
        margin-bottom: 12px;
        font-size: 14px
    }
    .single-footer-widget .usefull-links li a {
        margin-bottom: 10px;
        font-size: 14px
    }
    .single-footer-widget .contact-list li {
        margin-bottom: 10px;
        font-size: 14px
    }
    .copyright-area {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 25px
    }
    .copyright-area ul li a {
        font-size: 14px
    }
    .copyright-area .text-right {
        text-align: center!important;
        margin-top: 15px
    }
    .go-top {
        bottom: 20px;
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ptb-100 {
        padding-top: 80px;
        padding-bottom: 80px
    }
    .section-title .read-more-btn {
        display: none
    }
    .header-area .header-info li:last-child {
        display: none
    }
    .navbar .row {
        width: 102%
    }
    .main-banner {
        height: 100%;
        padding-top: 110px;
        padding-bottom: 110px
    }
    .hero-image {
        display: none
    }
    .hero-content h1 {
        font-size: 45px;
        line-height: 1.3
    }
    .hero-content p {
        font-size: 17px
    }
    .circle-pattern-2 {
        display: none
    }
    .main-banner-two {
        height: 100%;
        padding-top: 110px;
        padding-bottom: 110px
    }
    .main-banner-two .hero-content {
        margin-top: 50px
    }
    .main-banner-two .banner-image {
        margin-top: 0
    }
    .banner-image img {
        width: 60%!important
    }
    .main-banner-three {
        height: 100%;
        padding-top: 110px;
        padding-bottom: 110px
    }
    .main-banner-three .banner-image {
        margin-bottom: 40px
    }
    .features-area-two {
        padding-bottom: 50px
    }
    .single-features {
        margin-bottom: 30px
    }
    .features-area-three {
        padding-bottom: 35px
    }
    .main-banner-four {
        padding-top: 110px;
        padding-bottom: 110px;
        height: 100%
    }
    .main-banner-four .banner-image {
        margin-bottom: 40px
    }
    .features-text {
        margin-top: 0;
        position: relative;
        z-index: 1
    }
    .features-text h3 {
        font-size: 25px;
        line-height: 34px
    }
    .features-text ul li {
        font-size: 15px
    }
    .features-area .img {
        position: relative;
        z-index: 1;
        margin-top: 60px
    }
    .single-work-process::before {
        display: none
    }
    .single-work-process .icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        line-height: 70px
    }
    .single-work-process h3 {
        font-size: 20px
    }
    .team-area {
        padding-bottom: 50px
    }
    .services-area {
        padding-bottom: 50px
    }
    .single-box {
        margin-bottom: 30px
    }
    .about-image {
        margin-top: 40px
    }
    .about-text {
        margin-top: 50px;
        padding-left: 0;
        position: relative;
        z-index: 1
    }
    .analysis-text {
        margin-top: 40px
    }
    .funfacts-area {
        padding-bottom: 40px
    }
    .fun-fact {
        margin-bottom: 40px
    }
    .pricingTable {
        margin-top: 30px
    }
    .tab-slider-nav {
        margin-bottom: 10px;
        position: relative;
        z-index: 1
    }
    .timeline > li > .timeline-badge {
        right: -26px
    }
    .timeline > li.timeline-inverted > .timeline-badge {
        left: -26px
    }
    .pricing-plan {
        margin-top: 30px
    }
    .pricing-plan#most-popular {
        top: 0;
        padding: 0 0 20px;
        z-index: 2
    }
    .pricing-plan#most-popular h3 {
        margin-top: 0;
        padding-top: 20px
    }
    .side-bar {
        margin-top: 40px;
        margin-bottom: 40px
    }
    .repair-banner-content h2 {
        font-size: 45px
    }
    .repair-about-content {
        margin-top: 40px
    }
    .repair-services-inner .col-lg-4:nth-child(2) {
        border: none;
        margin-top: 20px;
        margin-bottom: 20px
    }
    .gallery-area {
        padding-bottom: 50px
    }
    .repair-blog-area {
        padding-bottom: 50px
    }
    .single-repair-blog-post {
        margin-bottom: 30px
    }
    .repair-subscribe-content form .form-group {
        float: left;
        margin-bottom: 0;
        width: 33%;
        padding-right: 15px
    }
    .repair-subscribe-content form .btn {
        width: 25%;
        margin-top: 15px
    }
    .products-details {
        margin-top: 20px
    }
    .footer-area {
        padding-top: 80px
    }
    .single-footer-widget {
        margin-bottom: 30px
    }
    .copyright-area {
        margin-top: 50px
    }
    .copyright-area ul li a {
        font-size: 15px
    }
    .copyright-area p {
        font-size: 15px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar .col-lg-8 {
        -ms-flex: 0 0 80%;
        -webkit-box-flex: 0;
        flex: 0 0 80%;
        max-width: 80%
    }
    .navbar .col-lg-4 {
        -ms-fles: 0 0 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
    .navbar-right-side .lang {
        display: none
    }
    .navbar-right-side h5 {
        display: none
    }
    .main-banner-three .hero-content {
        margin-top: 0
    }
    .main-banner-four .hero-content {
        margin-top: 0
    }
    .main-banner-two .hero-content {
        margin-top: 70px
    }
    .hero-image {
        right: -195px;
        bottom: 30px;
        width: 660px
    }
    .hero-content h1 {
        font-size: 50px
    }
    .services-box h3 {
        font-size: 21px
    }
    .single-services h3 {
        font-size: 21px
    }
    .circle-pattern-2 {
        display: none
    }
    .about-text {
        margin-top: 80px;
        padding-left: 0;
        position: relative;
        z-index: 1
    }
    .features-area .about-text {
        margin-top: 0
    }
    .features-box h3 {
        line-height: 28px
    }
    .contact-box {
        padding: 20px 20px 20px 80px
    }
    .contact-box .icon {
        left: 15px
    }
    .box h3 {
        font-size: 20px;
        line-height: 28px
    }
    .timeline > li > .timeline-badge {
        right: -31px
    }
    .timeline > li.timeline-inverted > .timeline-badge {
        left: -31px
    }
    .repair-subscribe-content form .form-group {
        width: 33%;
        padding-right: 15px
    }
    .repair-subscribe-content form .btn {
        width: 18%;
        margin-top: 20px
    }
}