@charset "UTF-8";
@charset "UTF-8";
@charset "UTF-8";

 .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.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes 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: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-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);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-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);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 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(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 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(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
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 {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
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 {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
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 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
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 {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
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 {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
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 {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
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 {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
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 {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
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 {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
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 {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
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 {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
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 {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
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 {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
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(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
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(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
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(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
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(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
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(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
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(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 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 {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 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 {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 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 {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.lvca-container, .lvca-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lvca-container *, .lvca-container *::after, .lvca-container *::before, .lvca-grid-container *, .lvca-grid-container *::after, .lvca-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lvca-container ol, .lvca-container ul, .lvca-container ol > li, .lvca-container ul > li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul > li:hover, .lvca-container ol > li:hover, .lvca-container ol > li > a, .lvca-container ul > li > a, .lvca-container ol > li > a:hover, .lvca-container ul > li > a:hover, .lvca-container img, .lvca-grid-container ol, .lvca-grid-container ul, .lvca-grid-container ol > li, .lvca-grid-container ul > li, .lvca-grid-container ol:hover, .lvca-grid-container ul:hover, .lvca-grid-container ul > li:hover, .lvca-grid-container ol > li:hover, .lvca-grid-container ol > li > a, .lvca-grid-container ul > li > a, .lvca-grid-container ol > li > a:hover, .lvca-grid-container ul > li > a:hover, .lvca-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lvca-container ol:before, .lvca-container ol:after, .lvca-container ul:before, .lvca-container ul:after, .lvca-container ol > li:before, .lvca-container ol > li:after, .lvca-container ul > li:before, .lvca-container ul > li:after, .lvca-container ol:hover:before, .lvca-container ol:hover:after, .lvca-container ul:hover:before, .lvca-container ul:hover:after, .lvca-container ul > li:hover:before, .lvca-container ul > li:hover:after, .lvca-container ol > li:hover:before, .lvca-container ol > li:hover:after, .lvca-container ol > li > a:before, .lvca-container ol > li > a:after, .lvca-container ul > li > a:before, .lvca-container ul > li > a:after, .lvca-container ol > li > a:hover:before, .lvca-container ol > li > a:hover:after, .lvca-container ul > li > a:hover:before, .lvca-container ul > li > a:hover:after, .lvca-container img:before, .lvca-container img:after, .lvca-grid-container ol:before, .lvca-grid-container ol:after, .lvca-grid-container ul:before, .lvca-grid-container ul:after, .lvca-grid-container ol > li:before, .lvca-grid-container ol > li:after, .lvca-grid-container ul > li:before, .lvca-grid-container ul > li:after, .lvca-grid-container ol:hover:before, .lvca-grid-container ol:hover:after, .lvca-grid-container ul:hover:before, .lvca-grid-container ul:hover:after, .lvca-grid-container ul > li:hover:before, .lvca-grid-container ul > li:hover:after, .lvca-grid-container ol > li:hover:before, .lvca-grid-container ol > li:hover:after, .lvca-grid-container ol > li > a:before, .lvca-grid-container ol > li > a:after, .lvca-grid-container ul > li > a:before, .lvca-grid-container ul > li > a:after, .lvca-grid-container ol > li > a:hover:before, .lvca-grid-container ol > li > a:hover:after, .lvca-grid-container ul > li > a:hover:before, .lvca-grid-container ul > li > a:hover:after, .lvca-grid-container img:before, .lvca-grid-container img:after {
display: none; }
.lvca-container a, .lvca-grid-container a {
text-decoration: initial; }
.lvca-container img, .lvca-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lvca-container {
margin-left: auto;
margin-right: auto; }
.lvca-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lvca-center {
text-align: center; }
.lvca-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lvca-grid-container::after {
clear: both;
content: "";
display: block; }
.lvca-grid-container .lvca-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
.lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lvca-gapless-grid .lvca-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lvca-gapless-grid .lvca-masonry { }
.lvca-gapless-grid .lvca-masonry .lvca-grid-item {
clear: none !important; }
.lvca-gapless-grid .lvca-masonry .lvca-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lvca-container .lvca-thumbnailslider.lvca-flexslider {
margin-top: 15px; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide {
margin: 0 5px 0 0; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img:hover {
opacity: 1; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide.lvca-flex-active-slide img {
opacity: 1;
cursor: default; }
.lvca-container .lvca-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-direction-nav li {
position: initial; }
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
width: 28px;
height: 28px;
margin: -14px 0 0;
bottom: initial;
left: initial;
right: initial;
top: 50%;
text-indent: 0;
text-align: center;
color: #aaa;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
outline: none; }
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lvca-container .lvca-flex-direction-nav a:hover, .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
display: none; } }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev {
left: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev:before {
content: "\e900"; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next {
right: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next:before {
content: "\e901"; }
.lvca-container .lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-container .lvca-flex-control-nav li a, .lvca-container .lvca-flex-control-nav li a:hover {
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s ease-in 0s;
transition: all 0.2s ease-in 0s;
display: inline-block;
vertical-align: middle;
outline: none; }
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover {
background: none; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active {
width: 14px;
height: 14px; }
.lvca-container .lvca-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs {
bottom: -80px; } }
.lvca-container .lvca-flex-control-thumbs li {
width: auto;
float: none; }
.lvca-container .lvca-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://www.chiefofstack.com/wp-content/plugins/addons-for-visual-composer/assets/css/ajax-loader.gif) center center no-repeat; }
.lvca-container button.slick-prev, .lvca-container button.slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.lvca-container button.slick-prev, .lvca-container button.slick-prev:before, .lvca-container button.slick-prev:after, .lvca-container button.slick-next, .lvca-container button.slick-next:before, .lvca-container button.slick-next:after {
text-shadow: none;
background: none !important;
border: none;
padding: 0;
opacity: 1;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
color: #aaa !important;
overflow: hidden;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
text-indent: 0;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.lvca-container button.slick-prev:before, .lvca-container button.slick-next:before {
margin: 2px;
vertical-align: middle; }
.lvca-container button.slick-prev:hover:before, .lvca-container button.slick-prev:hover:after, .lvca-container button.slick-next:hover:before, .lvca-container button.slick-next:hover:after {
color: #888 !important; }
.lvca-dark-bg .lvca-container button.slick-prev:before, .lvca-dark-bg .lvca-container button.slick-prev:after, .lvca-dark-bg .lvca-container button.slick-next:before, .lvca-dark-bg .lvca-container button.slick-next:after {
color: #888 !important; }
.lvca-dark-bg .lvca-container button.slick-prev:hover:before, .lvca-dark-bg .lvca-container button.slick-prev:hover:after, .lvca-dark-bg .lvca-container button.slick-next:hover:before, .lvca-dark-bg .lvca-container button.slick-next:hover:after {
color: #aaa !important;
background: none !important; }
@media only screen and (max-width: 1024px) {
.lvca-container button.slick-prev, .lvca-container button.slick-next {
display: none !important; } }
.lvca-container button.slick-prev {
left: -40px; }
.lvca-container button.slick-prev:before {
content: "\e900"; }
.lvca-container button.slick-next {
right: -40px; }
.lvca-container button.slick-next:before {
content: "\e901"; }
.lvca-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container ul.slick-dots li {
margin: 0 8px 0 0 !important;
padding: 0 !important;
display: inline-block;
font-size: 0; }
.lvca-container ul.slick-dots li button {
padding: 0;
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: background 0.3s ease-in-out 0s;
transition: background 0.3s ease-in-out 0s;
font-size: 0;
outline: none; }
.lvca-dark-bg .lvca-container ul.slick-dots li button {
background: #888 !important;
border-color: #888 !important; }
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
background: none !important;
border-color: #aaa !important; }
.lvca-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lvca-widget-heading {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 40px;
line-height: 52px;
text-align: center; }
@media only screen and (max-width: 767px) {
.lvca-widget-heading {
font-size: 32px;
line-height: 44px; } } .lvca-spacer {
clear: both; } input.lvca-button, button.lvca-button, a.lvca-button, .lvca-button:active, .lvca-button:visited {
display: inline-block;
text-align: center;
line-height: 1;
cursor: pointer;
-webkit-appearance: none;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 3px;
padding: 16px 40px;
margin: 0;
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
background-color: #f94213;
color: #fefefe;
outline: none;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s; }
input.lvca-button.lvca-rounded, button.lvca-button.lvca-rounded, a.lvca-button.lvca-rounded, .lvca-button:active.lvca-rounded, .lvca-button:visited.lvca-rounded {
border-radius: 999px; }
input.lvca-button.lvca-large, button.lvca-button.lvca-large, a.lvca-button.lvca-large, .lvca-button:active.lvca-large, .lvca-button:visited.lvca-large {
padding: 20px 60px; }
input.lvca-button.lvca-small, button.lvca-button.lvca-small, a.lvca-button.lvca-small, .lvca-button:active.lvca-small, .lvca-button:visited.lvca-small {
padding: 12px 25px;
font-size: 11px; }
input.lvca-button:hover, button.lvca-button:hover, a.lvca-button:hover, .lvca-button:active:hover, .lvca-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
input.lvca-button img, input.lvca-button span.lvca-icon, button.lvca-button img, button.lvca-button span.lvca-icon, a.lvca-button img, a.lvca-button span.lvca-icon, .lvca-button:active img, .lvca-button:active span.lvca-icon, .lvca-button:visited img, .lvca-button:visited span.lvca-icon {
margin-right: 10px; }
.lvca-button.lvca-black {
background-color: #363636; }
.lvca-button.lvca-black:hover {
background-color: #434343; }
.lvca-button.lvca-blue {
background-color: #46a5d5; }
.lvca-button.lvca-blue:hover {
background-color: #5bafda; }
.lvca-button.lvca-cyan {
background-color: #57c0dc; }
.lvca-button.lvca-cyan:hover {
background-color: #6cc8e0; }
.lvca-button.lvca-green {
background-color: #00a57d; }
.lvca-button.lvca-green:hover {
background-color: #00bf90; }
.lvca-button.lvca-orange {
background-color: #e87151; }
.lvca-button.lvca-orange:hover {
background-color: #eb8368; }
.lvca-button.lvca-pink {
background-color: #dd5679; }
.lvca-button.lvca-pink:hover {
background-color: #e16b8a; }
.lvca-button.lvca-red {
background-color: #da4f49; }
.lvca-button.lvca-red:hover {
background-color: #de635e; }
.lvca-button.lvca-teal {
background-color: #28c2ba; }
.lvca-button.lvca-teal:hover {
background-color: #2fd4cc; }
.lvca-button.lvca-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lvca-button.lvca-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lvca-button.lvca-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lvca-button.lvca-semitrans:hover {
background-color: #fff;
color: #333 !important; }@font-face {
font-family: 'lvca-icomoon';
src:    url(//www.chiefofstack.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?bh4obs);
src:    url(//www.chiefofstack.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?bh4obs#iefix) format('embedded-opentype'),
url(//www.chiefofstack.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.ttf?bh4obs) format('truetype'),
url(//www.chiefofstack.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.woff?bh4obs) format('woff'),
url(//www.chiefofstack.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.svg?bh4obs#icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lvca-icon-"], [class*=" lvca-icon-"] { font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lvca-icon-fit-to:before {
content: "\e916";
}
.lvca-icon-full-screen:before {
content: "\e917";
}
.lvca-icon-arrow-left2:before {
content: "\e918";
}
.lvca-icon-arrow-left3:before {
content: "\e919";
}
.lvca-icon-arrow-right2:before {
content: "\e91a";
}
.lvca-icon-arrow-right3:before {
content: "\e91b";
}
.lvca-icon-start:before {
content: "\e91c";
}
.lvca-icon-close:before {
content: "\e911";
}
.lvca-icon-menu:before {
content: "\e914";
}
.lvca-icon-menu-2:before {
content: "\e915";
}
.lvca-icon-email:before {
content: "\e910";
}
.lvca-icon-plus:before {
content: "\e912";
}
.lvca-icon-arrow-right-toggle:before {
content: "\e913";
}
.lvca-icon-arrow-left:before {
content: "\e900";
}
.lvca-icon-arrow-right:before {
content: "\e901";
}
.lvca-icon-aim:before {
content: "\e902";
}
.lvca-icon-behance:before {
content: "\e903";
}
.lvca-icon-dribbble:before {
content: "\e904";
}
.lvca-icon-facebook:before {
content: "\e905";
}
.lvca-icon-flickr:before {
content: "\e906";
}
.lvca-icon-googleplus:before {
content: "\e907";
}
.lvca-icon-linkedin:before {
content: "\e908";
}
.lvca-icon-pinterest:before {
content: "\e909";
}
.lvca-icon-skype:before {
content: "\e90a";
}
.lvca-icon-twitter:before {
content: "\e90b";
}
.lvca-icon-vimeo:before {
content: "\e90c";
}
.lvca-icon-zerply:before {
content: "\e90d";
}
.lvca-icon-quote:before {
content: "\e90e";
}
.lvca-icon-video-play:before {
content: "\e90f";
}
.lvca-icon-instagram:before {
content: "\ea92";
}.dot-irecommendthis {
background:url(//www.chiefofstack.com/wp-content/plugins/i-recommend-this/images/default.png) 0 0px no-repeat;
padding:0 0 0 20px;
border: 0 !important;
margin-bottom: 10px;
display: inline-block;
text-decoration: none;
-webkit-box-shadow: none;
box-shadow: none !important;
}
.dot-irecommendthis:hover,
.dot-irecommendthis.active {
background-position:0 -24px;
color: #F56559 !important;
}@font-face {
font-family: 'fontello';
src: url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/css/fonts/fontello/font/fontello.eot?58506680);
src: url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/css/fonts/fontello/font/fontello.eot?58506680#iefix) format('embedded-opentype'),
url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/css/fonts/fontello/font/fontello.woff2?58506680) format('woff2'),
url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/css/fonts/fontello/font/fontello.woff?58506680) format('woff'),
url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/css/fonts/fontello/font/fontello.ttf?58506680) format('truetype'),
url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/css/fonts/fontello/font/fontello.svg?58506680#fontello) format('svg');
font-weight: normal;
font-style: normal;
}   [class^="pw-icon-"]:before, [class*=" pw-icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;  font-variant: normal;
text-transform: none; line-height: 1em;  margin-left: .2em;   -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;  }
.pw-icon-menu:before { content: '\e800'; } .pw-icon-share:before { content: '\e801'; } .pw-icon-search:before { content: '\e802'; } .pw-icon-calendar:before { content: '\e803'; } .pw-icon-calendar-1:before { content: '\e804'; } .pw-icon-clock:before { content: '\e805'; } .pw-icon-comment:before { content: '\e806'; } .pw-icon-user-outline:before { content: '\e807'; } .pw-icon-user:before { content: '\e808'; } .pw-icon-doc-text:before { content: '\e809'; } .pw-icon-down-outline:before { content: '\e80a'; } .pw-icon-down-open-big:before { content: '\e80b'; } .pw-icon-angle-down:before { content: '\e80c'; } .pw-icon-circle-empty:before { content: '\e80d'; } .pw-icon-dot-circled:before { content: '\e80e'; } .pw-icon-check:before { content: '\e80f'; } .pw-icon-check-empty:before { content: '\e810'; } .pw-icon-export:before { content: '\e811'; } .pw-icon-pencil-alt:before { content: '\e812'; } .pw-icon-chat:before { content: '\e813'; } .pw-icon-mic:before { content: '\e814'; } .pw-icon-video-alt:before { content: '\e815'; } .pw-icon-videocam-outline:before { content: '\e816'; } .pw-icon-quote-left:before { content: '\e819'; } .pw-icon-quote-right:before { content: '\e81a'; } .pw-icon-link:before { content: '\e81b'; } .pw-icon-location:before { content: '\e81c'; } .pw-icon-pin:before { content: '\e81d'; } .pw-icon-attach:before { content: '\e81e'; } .pw-icon-play:before { content: '\e81f'; } .pw-icon-eye:before { content: '\e820'; } .pw-icon-heart:before { content: '\e821'; } .pw-icon-heart-filled:before { content: '\e822'; } .pw-icon-plus:before { content: '\e823'; } .pw-icon-download-cloud:before { content: '\e824'; } .pw-icon-facebook:before { content: '\e825'; } .pw-icon-twitter:before { content: '\e826'; } .pw-icon-linkedin-squared:before { content: '\e827'; } .pw-icon-gplus:before { content: '\e828'; } .pw-icon-pinterest-circled:before { content: '\e829'; } .pw-icon-github-circled:before { content: '\e82a'; } .pw-icon-behance:before { content: '\e82b'; } .pw-icon-dribbble:before { content: '\e82c'; } .pw-icon-instagram:before { content: '\e82d'; } .pw-icon-lastfm:before { content: '\e82e'; } .pw-icon-rss:before { content: '\e82f'; } .pw-icon-vimeo-squared:before { content: '\e830'; } .pw-icon-forrst:before { content: '\e831'; } .pw-icon-skype:before { content: '\e832'; } .pw-icon-picasa:before { content: '\e833'; } .pw-icon-youtube-play:before { content: '\e834'; } .pw-icon-flickr:before { content: '\e835'; } .pw-icon-tumblr:before { content: '\e836'; } .pw-icon-blogger:before { content: '\e837'; } .pw-icon-delicious:before { content: '\e838'; } .pw-icon-digg:before { content: '\e839'; } .pw-icon-friendfeed:before { content: '\e83a'; } .pw-icon-wordpress:before { content: '\e83b'; } .pw-icon-stackoverflow:before { content: '\e83c'; } .pw-icon-foursquare:before { content: '\e83d'; } .pw-icon-xing:before { content: '\e83e'; } .pw-icon-sina-weibo:before { content: '\e83f'; } .pw-icon-soundcloud:before { content: '\e840'; } .pw-icon-fivehundredpx:before { content: '\e841'; } .pw-icon-slideshare:before { content: '\e842'; } .pw-icon-android:before { content: '\e843'; } .pw-icon-apple:before { content: '\e844'; } .pw-icon-windows:before { content: '\e845'; } .pw-icon-vkontakte:before { content: '\e846'; } .pw-icon-myspace:before { content: '\e847'; } .pw-icon-meetup:before { content: '\e848'; } .pw-icon-cart:before { content: '\e849'; } .pw-icon-reddit:before { content: '\e84a'; } .pw-icon-stumbleupon-circled:before { content: '\e84b'; } .pw-icon-path:before { content: '\e84c'; } .pw-icon-dropbox:before { content: '\e84d'; } .pw-icon-paper-plane:before { content: '\e84e'; } .pw-icon-paper-plane-1:before { content: '\e84f'; } .pw-icon-deviantart:before { content: '\e850'; } .pw-icon-grooveshark:before { content: '\e851'; } .pw-icon-comment-1:before { content: '\e852'; } .pw-icon-steam:before { content: '\e853'; } .pw-icon-quora:before { content: '\e854'; } .pw-icon-angellist:before { content: '\e855'; } .pw-icon-icq:before { content: '\e856'; } .pw-icon-mail:before { content: '\e857'; } .pw-icon-home:before { content: '\e858'; } .pw-icon-doc-alt:before { content: '\e859'; } .pw-icon-attach-1:before { content: '\e85a'; } .pw-icon-thumbs-up:before { content: '\e85b'; } .pw-icon-info-circled-alt:before { content: '\e85c'; } .pw-icon-warning-empty:before { content: '\e85d'; } .pw-icon-plus-squared-alt:before { content: '\e85e'; } .pw-icon-minus-squared-alt:before { content: '\e85f'; } .pw-icon-left-small:before { content: '\e860'; } .pw-icon-bookmark-empty:before { content: '\e861'; } .pw-icon-bookmark-empty-1:before { content: '\e862'; } .pw-icon-vine:before { content: '\e863'; } .pw-icon-reply-outline:before { content: '\e864'; } .pw-icon-network:before { content: '\e865'; } .pw-icon-tag-empty:before { content: '\e866'; } .pw-icon-tag:before { content: '\e867'; } .pw-icon-eye-outline:before { content: '\e868'; } .pw-icon-mic-outline:before { content: '\e869'; } .pw-icon-camera-outline:before { content: '\e86a'; } .pw-icon-pin-outline:before { content: '\e86b'; } .pw-icon-feather:before { content: '\e86c'; } .pw-icon-left-open-big:before { content: '\e86d'; } .pw-icon-right-open-big:before { content: '\e86e'; } .pw-icon-up-open-big:before { content: '\e86f'; } .pw-icon-picture-1:before { content: '\e870'; } .pw-icon-videocam:before { content: '\e871'; } .pw-icon-link-ext:before { content: '\e872'; } .pw-icon-level-up:before { content: '\e873'; } .pw-icon-back-in-time:before { content: '\e874'; } .pw-icon-stopwatch:before { content: '\e875'; } .pw-icon-star-empty:before { content: '\e876'; } .pw-icon-star:before { content: '\e877'; } .pw-icon-down-circled:before { content: '\e878'; } .pw-icon-file-pdf:before { content: '\e879'; } .pw-icon-cw:before { content: '\e87a'; } .pw-icon-ccw:before { content: '\e87b'; } .pw-icon-briefcase:before { content: '\e87c'; } .pw-icon-graduation-cap:before { content: '\e87d'; } .pw-icon-mail-1:before { content: '\e87e'; } .pw-icon-heart-empty:before { content: '\e87f'; } .pw-icon-heart-1:before { content: '\e880'; } .pw-icon-keyboard:before { content: '\e881'; } .pw-icon-phone:before { content: '\e882'; } .pw-icon-lightbulb:before { content: '\e883'; } .pw-icon-vcard:before { content: '\e884'; } .pw-icon-music-outline:before { content: '\e885'; } .pw-icon-cancel-circled-outline:before { content: '\e886'; } .pw-icon-info-outline:before { content: '\e887'; } .pw-icon-location-outline:before { content: '\e888'; } .pw-icon-globe-alt-outline:before { content: '\e889'; } .pw-icon-brush:before { content: '\e88a'; } .pw-icon-coffee:before { content: '\e88b'; } .pw-icon-book-open:before { content: '\e88c'; } .pw-icon-video-1:before { content: '\e88d'; } .pw-icon-key:before { content: '\e88e'; } .pw-icon-graduation-cap-1:before { content: '\e88f'; } .pw-icon-camera:before { content: '\e890'; } .pw-icon-eye-1:before { content: '\e891'; } .pw-icon-beaker:before { content: '\e892'; } .pw-icon-beaker-1:before { content: '\e893'; } .pw-icon-smile:before { content: '\e894'; } .pw-icon-frown:before { content: '\e895'; } .pw-icon-music:before { content: '\e896'; } .pw-icon-photo:before { content: '\e897'; } .pw-icon-cancel:before { content: '\e898'; } .pw-icon-cancel-outline:before { content: '\e899'; } .pw-icon-camera-2:before { content: '\e89a'; } .pw-icon-picture-2:before { content: '\e89b'; } .pw-icon-file-image:before { content: '\e89c'; } .pw-icon-music-1:before { content: '\e89d'; } .pw-icon-minus:before { content: '\e89e'; } .pw-icon-plus-1:before { content: '\e89f'; } .pw-icon-minus-1:before { content: '\e8a0'; } .pw-icon-download-alt:before { content: '\e8a1'; } .pw-icon-users:before { content: '\e8a2'; } .pw-icon-group:before { content: '\e8a3'; } .pw-icon-camera-alt:before { content: '\e8a4'; } .pw-icon-eye-2:before { content: '\e8a5'; } .pw-icon-moon:before { content: '\e8a6'; } .pw-icon-home-outline:before { content: '\e8a7'; } .pw-icon-phone-outline:before { content: '\e8a8'; } .pw-icon-sun:before { content: '\e8a9'; } .pw-icon-plane-outline:before { content: '\e8aa'; } .pw-icon-tree:before { content: '\e8ab'; } .pw-icon-location-inv:before { content: '\e8ac'; } .pw-icon-smiley:before { content: '\e8ad'; } .pw-icon-person:before { content: '\e8ae'; } .pw-icon-adult:before { content: '\e8af'; } .pw-icon-child:before { content: '\e8b0'; } .pw-icon-location-1:before { content: '\e8b1'; } .pw-icon-heart-2:before { content: '\e8b2'; } .pw-icon-pencil:before { content: '\e8b3'; } .pw-icon-cup:before { content: '\e8b4'; } .pw-icon-doc:before { content: '\e8b5'; } .pw-icon-cd:before { content: '\e8b6'; } .pw-icon-food:before { content: '\e8b7'; } .pw-icon-t-shirt:before { content: '\e8b8'; } .pw-icon-paypal:before { content: '\e8b9'; } .pw-icon-spotify-1:before { content: '\e8ba'; } .pw-icon-left-outline:before { content: '\e8bb'; } .pw-icon-left:before { content: '\e8bc'; } .pw-icon-right:before { content: '\e8bd'; } .pw-icon-right-small:before { content: '\e8be'; } .pw-icon-right-outline:before { content: '\e8bf'; } .pw-icon-shopping-bag:before { content: '\e8c0'; } .pw-icon-cancel-line:before { content: '\e8c1'; } .pw-icon-calendar-line:before { content: '\e8c2'; } .pw-icon-check-line:before { content: '\e8c3'; } .pw-icon-instagram-new:before { content: '\e8c4'; } .pw-icon-lock:before { content: '\e8c5'; } .pw-icon-lock-1:before { content: '\e8c6'; } .pw-icon-bloglovin-alt:before { content: '\e8c7'; } .pw-icon-bloglovin:before { content: '\e8c8'; } .pw-icon-whatsapp:before { content: '\e8c9'; } .pw-icon-image-alt:before { content: '\e8ca'; }.row p:empty,
.vc_row p:empty {
display: none;
} input[type=submit],
input[type=button],
button,
a.button {
display: inline-block; position: relative; padding: 14px 26px; margin-bottom: .25em; font-size: 11px; letter-spacing:  1px; text-transform: uppercase; line-height: 1.2; outline: 0; border: 2px solid #333; color: #333; text-shadow: none; background: none; border-radius: 0;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
a.button:hover {
color: #fff; background-color: #333; border-color: transparent;
}
input[type=submit]:active,
input[type=button]:active,
button:active,
a.button:active {
-webkit-transform: scale(0.95); -ms-transform: scale(0.95); transform: scale(0.95);
} input[type=submit].big,
input[type=button].big,
button.big,
a.button.big {
font-size: 13px; padding: 1.6em 2.8em;
} input[type=submit].small,
input[type=button].small,
button.small,
a.button.small {
padding: .6em 1.4em; font-size: 11px;
} input[type=submit] i,
input[type=button] i,
button i,
a.button i {
display: inline; line-height: 1; font-size: 16px; font-weight: bold; margin-right: .4em; margin-left: -0.35em; margin-bottom: -1em; vertical-align: middle;
}
input[type=submit].big i,
input[type=button].big i,
button.big i,
a.button.big i {
top: .7em; left: 1.2em; font-size: 18px;
}
.button + .button {
margin-left: 1.4em;
} .tabs {
margin-bottom: 2em;
}
.tabs .tab-titles {
padding: 0; margin: 0 0 0px 0; font-size:  11px; letter-spacing: 1px; text-transform: uppercase;
}
.tabs .tab-titles li {
display: inline-block; margin-bottom: 0px;
}
.tabs .tab-titles li a {
display: inline-block; padding: 6px 12px; color: inherit; font-weight: bold; border: 0; cursor: pointer; background: #fff;
}
.tabs .tab-titles li a.active {
background: rgba(33, 41, 51, 0.07);    
}
.tabs .tab-content > div {
padding: 1.2em 0; display: none;
}
.tabs .tab-content a.fluidbox,
.toggle-content a.fluidbox {
display: block; margin: 16px 0;
} .toggle-group {
margin-bottom: 2em;
}
.toggle h4 {
position: relative; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; border-left: 0; padding: 12px 0 12px 24px; margin: 0; cursor: pointer; 
}
.toggle h4.active {
border-bottom: 0;
}
.toggle h4:before {
content: "\e823"; opacity: .6; position: absolute; top: 1em; left: 0; font-size: 14px; line-height: 1;
}
.toggle h4.active:before {
content: '\e89e'; color: #333;
}
.toggle .toggle-content {
display: none; padding: 4px 0 14px 22px;
}
.toggle-content p:last-child {
margin-bottom: 0;
} .alert {
position: relative; padding: 1em 2.2em; line-height: 1.4; margin-bottom: 2em; border: 2px solid #ddd;
}
.alert.success {
border-color: #8EE1A8;
}
.alert.error {
border-color: #FF6140;
} .contact-form {
margin: 1.6em auto 2em auto; max-width: 600px; overflow: auto;
}
.contact-form p {
margin: 1.2em 0;
}	
.contact-form p:last-child {
text-align: center;
}	
.contact-form input:not([type=submit]):not([type=button]):not([type=file]):not([type=radio]):not([type=checkbox]),
.contact-form textarea {
width: 100%; max-width: none; display: block; 
}
.contact-form textarea {
height: 100px;
}
.contact-form .antispam { 
display: none; 
}
.submit {
position: relative; overflow: hidden; 
}
.submit .submit-label {
position: relative; display: inline-block;
}
.submit.active .submit-label {
opacity: 0;
}
.submit .submit-status {
position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
}
.submit.loading .submit-status {
background: url(//www.chiefofstack.com/wp-content/plugins/oliver-shortcodes/images/bckg/loading.gif) center center no-repeat; background-size: 77px 7px;
}
.submit.active .submit-status {
opacity: 1;
}
.submit .submit-status:before { 
font-family: "fontello"; line-height: 40px; 
}
.submit.success { 
color: #096; border-color: #096;
}
.submit.error { 
color: #FF6140; border-color: #FF6140;
}
.submit.success .submit-status:before { 
content: '\e85b'; 
}
.submit.error .submit-status:before { 
content: '\e85d'; 
} html a.social-link {
display: inline-block; padding: 0; margin: 0 .25em .5em 0; text-align: center; font-size: 14px; font-family: "fontello"; width: 40px; line-height: 40px; color: #555; background: #fff;  border-radius: 50%;
}
html a.social-link:hover {
color: #fff; background: #444; border-color: transparent;
}
.social-link.facebook:before {
content: '\e825'
}
.social-link.twitter:before {
content: '\e826'
}
.social-link.flickr:before {
content: '\e835'
}
.social-link.rss:before {
content: '\e82f'
}
.social-link.dribbble:before {
content: '\e82c'
}
.social-link.lastfm:before {
content: '\e82e'
}
.social-link.linkedin:before {
content: '\e827'
}
.social-link.vimeo:before {
content: '\e830'
}
.social-link.forrst:before {
content: '\e831'
}
.social-link.skype:before {
content: '\e832'
}
.social-link.picasa:before {
content: '\e833'
}
.social-link.tumblr:before {
content: '\e836'
}
.social-link.behance:before {
content: '\e82b'
}
.social-link.blogger:before {
content: '\e837'
}
.social-link.delicious:before {
content: '\e838'
}
.social-link.digg:before {
content: '\e839'
}
.social-link.friendfeed:before {
content: '\e83a'
}
.social-link.github:before {
content: '\e82a'
}
.social-link.wordpress:before {
content: '\e83b'
}
.social-link.google-plus:before {
content: '\e828'
}
.social-link.youtube:before {
content: "\e834"
}
.social-link.pinterest:before {
content: "\e829"
}
.social-link.instagram:before {
content: "\e82d"
}
.social-link.stack-overflow:before {
content: "\e83c"
}
.social-link.foursquare:before {
content: "\e83d"
}
.social-link.xing:before {
content: "\e83e"
}
.social-link.weibo:before {
content: "\e83f"
}
.social-link.soundcloud:before {
content: "\e840"
}
.social-link.fivehundredpx:before {
content: "\e841"
}
.social-link.slideshare:before {
content: "\e842"
}
.social-link.vine:before {
content: "\e863"
}
.social-link.vkontakte:before {
content: "\e846"
}
.social-link.paypal:before {
content: "\e8b9"
}
.social-link.spotify:before {
content: "\e8ba"
}
.social-link.bloglovin:before {
content: "\e8c7"
} .timeline {
position: relative; padding: 1em 0 3em;
}
.timeline + p {
margin-bottom: 2.6em;
}
.event {
position: relative; padding: 0 1em 2em 2.4em;
}
.event:before { 
content : ""; position: absolute; top: 10px; bottom: -10px; left: 12px; width: 3px; background: #f1f1f1;
}
.event:after { 
content : ""; position: absolute; top: 2px; left: 7px; width: 12px; height: 12px; border: 3px solid #ddd; outline : 4px solid #fff; border-radius: 50%; background: #fff;
}
.event.current:after {
border-color: #222;
}
.event h2 {
margin-left: 1em; margin-bottom: .4em; font-size: 1.3em; 
}
.event [class^="pw-icon-"], 
.event [class*=" pw-icon-"], 
.event .vc_icon_element {
display: block; text-align: center; position: absolute; top: -8px; left: -5px; margin: 0;  z-index: 20; outline : 4px solid #fff;
}
.event .vc_icon_element {
font-size: 11px;
}
html .event .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
font-size: 15px !important;
}
.event [class*="pw-icon-"] {
font-size: 15px; width: 38px; line-height: 38px; color: #fff; background: #222; border-radius: 50%;
}
.event [class*="pw-icon-"]:before {
margin: 0; 
}	
.event h6 {
display: block; color: rgba(171, 171, 171, 0.26); font-size: 19px; font-weight: 700; margin-bottom: 1.2em; line-height: 1; text-transform: uppercase;
}
.timeline .event:last-child {
padding-bottom: 0;
}
.timeline .event:last-child:before {
bottom: 4px;
}
.event h4 {
font-size: 16px; margin: 0 0 .2em 0; padding: 0;
}
.event h5 {
margin: 0; padding: 0 0 .3em 0; font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; opacity: .25;
}
.event p {
margin: .6em 0 .2em 0;
}
.event p:last-child {
margin-bottom: 0;
} .skill-unit + h3,
.skill-unit + h4,
.skill-unit + .wpb_text_column,
.skill-unit + .wpb_content_element {
margin: 4em 0 1.6em;
}
.skill-unit {
margin-top: 1.4em;
}
.skill-unit h4 {
opacity: .4; margin: 0 0 4px 0; font-weight: 400; font-size: 14px; position: relative; z-index: 10; padding-left: 0px;
}
.skill-unit .bar {
position: relative; width: 100%; height: 6px;
}
.skill-unit .bar .progress {
position: absolute; top: 0; left: 0; width: 0; height: 100%; background: #eee; -webkit-transition: width 1s ease-out; transition: width 1s ease-out;
}
.skill-unit .bar .progress span {
position: absolute; top: -14px; right: 0; font-size: 11px; line-height: 26px; color: #fff; border: 3px solid #fff; padding: 0 7px; background : #222; border-radius: 50%;
} .testo {
position: relative; padding: 1.4em 1.8em; margin: 4em 0 1em; border: 1px solid #eee; border-radius: 4px; box-shadow: inset 0 1px 0 #FFF,1px 1px 0 #FFF,2px 2px 0 #FFF,3px 3px 0 #eee;
}
.testo img {
display: block; margin: -60px auto 10px auto; max-height: 80px; border-radius: 50%; border: 6px solid #fff;
}
.testo h4 {
position: relative; text-align: center; margin: 0; font-size: 15px;
}
.testo h4 span {
display: block; font-size: 12px; font-weight: 400; color: #ccc;
}
.testo p {
position: relative; margin: .6em 0 0.2em 0; font-size: 13px; text-align: center;
} .service {
margin: 1em 0;
}
.service:last-child:after {
display: none;
}
.service i,
.service img,
.service > p:first-child { 
display: inline-block; width: 52px; line-height: 50px; margin-bottom: 0; font-size: 38px; text-align: left; color: #333; float: left;
}
.service i:before { 
margin: 0 .2em; display: inline-block; 
}
.service p:not(:first-child) {
margin-top: .2em; margin-left: 74px; font-size: 13px; opacity: .45;
}
.service h4 {
margin-top: 0; margin-bottom: 0.4em; margin-left: 74px;
} .fun-fact { 
margin-bottom: 2em; margin-top: 1em; text-align: center;
}
.fun-fact i,
.fun-fact img { 
display: block; margin-left: auto; margin-right: auto; width: 100%; margin-bottom: .6em; max-width: 52px; font-size: 38px; line-height: 1;
}
.fun-fact p {
margin-bottom: 0;
}
.fun-fact h4 { 
margin: 0; font-size: 13px; line-height: 1.2; font-weight: 700; opacity: .3; letter-spacing: 2px; text-transform: uppercase;
}
.service p:empty,
.fun-fact p:empty {
display: none;
} .client {
display: flex; align-items: center; justify-content: center; height: 90px; margin-bottom: 1.6em; border: 1px solid #f1f1f1;
}
.client a,
.client p {
display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; -webkit-transition: all 0.15s ease-out; transition: all 0.15s ease-out;
}
.client a:hover {
opacity: .3;
}
.client img { 
max-width: 50%; max-height: 50%;
}
.client p {
margin-bottom: 0;
}
.client p:empty {
display: none;
} @media (min-width: 1200px) {
.col-xs-6:not(.col-lg-3):nth-child(2n+1) {
clear: left;
}
} @media screen and (min-width: 768px) { .contact-form p {
width: 50%; float: left;
}
.contact-form p:nth-of-type(1) {
padding-right: 16px;
}
.contact-form p:nth-of-type(2) {
padding-left: 16px;
}
.contact-form p:nth-of-type(2) label.error {
left: 26px;
}
.contact-form p:nth-of-type(n+3){
width: 100%;
} .event {
padding: 0 1em 3em 4.6em;
}
.event h2 {
margin-left: 0;
}
.event h6 {
margin-left: -1.2em;
}
.event [class^="pw-icon-"], 
.event [class*=" pw-icon-"],
.event .vc_icon_element {
top: -17px; left: -14px;
}
.event .vc_icon_element {
font-size: 16px
}
.event [class^="pw-icon-"], 
.event [class*=" pw-icon-"] {
font-size: 18px; width: 56px; line-height: 56px;
}
html .event .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
font-size: 18px !important;
} .client {
height: 120px;
}
}.mc4wp-form input[name^="_mc4wp_honey"]{display:none!important}.mc4wp-form-basic{margin:1em 0}.mc4wp-form-basic input,.mc4wp-form-basic label{width:auto;display:block;box-sizing:border-box;cursor:auto;height:auto;vertical-align:baseline;line-height:normal}.mc4wp-form-basic input:after,.mc4wp-form-basic label:after{content:"";display:table;clear:both}.mc4wp-form-basic label{font-weight:700;margin-bottom:6px;display:block}.mc4wp-form-basic input.placeholdersjs{color:#aaa!important}.mc4wp-form-basic input[type=date],.mc4wp-form-basic input[type=email],.mc4wp-form-basic input[type=tel],.mc4wp-form-basic input[type=text],.mc4wp-form-basic input[type=url],.mc4wp-form-basic select,.mc4wp-form-basic textarea{min-height:32px;width:100%;max-width:480px}.mc4wp-form-basic input[type=number]{min-width:40px}.mc4wp-form-basic input[type=checkbox],.mc4wp-form-basic input[type=radio]{position:relative;margin:0 6px 0 0;padding:0;height:13px;width:13px;display:inline-block;border:0}.mc4wp-form-basic input[type=checkbox]{-webkit-appearance:checkbox;-moz-appearance:checkbox;appearance:checkbox}.mc4wp-form-basic input[type=radio]{-webkit-appearance:radio;-moz-appearance:radio;appearance:radio}.mc4wp-form-basic button,.mc4wp-form-basic input[type=button],.mc4wp-form-basic input[type=submit]{cursor:pointer;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none}.mc4wp-form-basic label>span,.mc4wp-form-basic li>label{font-weight:400}.mc4wp-alert{color:#c09853;clear:both}.mc4wp-success{color:#468847}.mc4wp-notice{color:#3a87ad}.mc4wp-error{color:#cd5c5c}.rtl .mc4wp-form-basic input[type=checkbox],.rtl .mc4wp-form-basic input[type=radio]{margin:0 0 0 6px}.lvca-accordion .lvca-panel-title {
display: block;
cursor: pointer; }
.lvca-accordion .lvca-panel-content {
display: none;
overflow: hidden; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title, .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title:after, .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
content: "\e912";
right: 30px;
top: 26px;
font-size: 14px;
line-height: 1;
color: #666;
font-weight: 700;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title:after, .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg); }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:after {
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
right: 30px;
top: 25px;
content: "\e913";
color: #999;
font-size: 18px;
line-height: 1;
-webkit-transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
-webkit-transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
-webkit-transform: rotate(90deg);
transform: rotate(90deg); } .lvca-accordion.lvca-style1 .lvca-panel {
margin: 20px 0 0;
background: #eee;
border-radius: 5px;
overflow: hidden; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
padding: 20px 50px 20px 30px;
font-size: 18px;
line-height: 26px;
letter-spacing: 0;
font-weight: bold;
color: #666;
margin: 0; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-content {
background: #f8f8f8;
padding: 30px 30px; }
.lvca-accordion.lvca-style1 .lvca-panel:hover .lvca-panel-title {
background: #e2e2e2; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title {
color: #333;
background: #e2e2e2; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #333; } .lvca-accordion.lvca-style2 .lvca-panel {
margin: 20px 0 0;
color: #333;
-webkit-transition: color .3s;
transition: color .3s;
position: relative; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
border-radius: 5px;
border: 1px solid #dcdcdc;
overflow: hidden;
padding: 20px 50px 20px 30px;
font-size: 18px;
line-height: 26px;
letter-spacing: 0;
font-weight: bold;
color: #666;
margin: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
z-index: 1; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:before {
position: absolute;
content: "";
left: 0;
bottom: 0;
height: 0;
width: 100%;
background: #4c5053;
-webkit-transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
z-index: -1; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content {
padding: 20px 30px;
border-color: #dcdcdc;
border-style: solid;
border-width: 0 1px 1px 1px;
border-radius: 0 0 5px 5px; }
.lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title, .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:after {
color: #fff;
border-color: #333; }
.lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:before {
height: 100%; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title {
background: #4c5053;
color: #fff;
border-radius: 5px 5px 0 0;
border-color: #333; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #fff; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
color: #888;
border-color: #404040; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:before {
background: #e5e5e5; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title {
color: #333; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:after {
color: #666; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title {
background: #e5e5e5;
color: #333;
border-color: #e5e5e5; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #666; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content {
border-color: #404040;
color: #909090; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h1, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h2, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h3, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h4, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h5, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h6 {
color: #e5e5e5; } .lvca-accordion.lvca-style3 .lvca-panel {
margin: 0;
border-bottom: 1px solid #dcdcdc; }
.lvca-accordion.lvca-style3 .lvca-panel:first-child {
border-top: 1px solid #dcdcdc; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
padding: 20px 50px 20px 5px;
font-size: 14px;
line-height: 22px;
letter-spacing: 1px;
font-weight: bold;
text-transform: uppercase;
color: #666;
margin: 0; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
top: 24px; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content {
padding: 10px 50px 30px 5px; }
.lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title {
color: #333; }
.lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title {
color: #333; }
.lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #333; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel {
border-color: #404040; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
color: #b0b0b0; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
color: #888; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title {
color: #eaeaea; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title:after {
color: #aaa; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title {
color: #eaeaea; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #aaa; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content {
color: #909090; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h1, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h2, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h3, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h4, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h5, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h6 {
color: #e5e5e5; }.slick-slider
{
position: relative;
display: block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}.lvca-carousel .lvca-carousel-item {
position: relative;
}
.lvca-carousel.lvca-container {
max-width: none;
}.lvca-clients {
clear: both;
overflow: hidden;
margin: 0 auto; }
@media (max-width: 479px) {
.lvca-clients .lvca-grid-mobile-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-clients .lvca-grid-tablet-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media only screen and (min-width: 801px) {
.lvca-clients .lvca-grid-desktop-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
.lvca-clients .lvca-client {
position: relative;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
overflow: hidden; }
.lvca-dark-bg .lvca-clients .lvca-client {
border-color: #505050 !important; }
.lvca-clients .lvca-client img {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 100%;
margin: 0;
display: block; }
.lvca-clients .lvca-client .lvca-client-name {
position: absolute;
z-index: 2;
top: 50%;
text-align: center;
width: 100%;
height: 100%;
margin-top: -12px;
color: #fff;
font-size: 18px;
line-height: 26px;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s;
opacity: 0; }
.lvca-clients .lvca-client .lvca-client-name a {
color: #fff;
text-decoration: none; }
.lvca-clients .lvca-client .lvca-image-overlay {
position: absolute;
left: 0;
top: 0;
overflow: hidden;
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-clients .lvca-client:hover .lvca-image-overlay {
opacity: 0.7; }
.lvca-dark-bg .lvca-clients .lvca-client:hover .lvca-image-overlay {
opacity: 0.8; }
.lvca-clients .lvca-client:hover .lvca-client-name {
opacity: 1; }.lvca-heading {
text-align: center;
margin: 0 auto 60px;
max-width: 640px; }
@media only screen and (max-width: 767px) {
.lvca-heading {
margin-bottom: 40px; } }
.lvca-heading .lvca-text {
font-size: 18px;
line-height: 28px;
margin: 0 auto; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-text {
font-size: 15px;
line-height: 26px; } }
.lvca-heading.lvca-alignleft, .lvca-heading.lvca-alignright {
margin: 0; }
.lvca-heading.lvca-alignleft .lvca-text, .lvca-heading.lvca-alignright .lvca-text {
margin: 0; }
.lvca-heading.lvca-alignleft {
text-align: left; }
.lvca-heading.lvca-alignright {
text-align: right; }
.lvca-heading .lvca-title {
font-weight: 700;
font-size: 32px;
line-height: 42px;
margin: 0 auto 20px;
color: #333;
font-weight: bold; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-title {
font-size: 24px;
line-height: 32px; } }
.lvca-dark-bg .lvca-heading .lvca-title {
color: #e5e5e5; }
.lvca-dark-bg .lvca-heading .lvca-subtitle {
color: #B0B0B0; }
.lvca-dark-bg .lvca-heading .lvca-text {
color: #909090; }
.lvca-heading.lvca-alignleft .lvca-title, .lvca-heading.lvca-alignright .lvca-title {
margin: 0 0 20px; }
.lvca-heading .lvca-subtitle {
margin: 0 auto 5px;
color: #888;
font-size: 12px;
line-height: 20px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 2px;
position: relative;
display: inline-block;
padding: 0 10px; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-subtitle {
font-size: 11px;
line-height: 18px; } }
.lvca-heading.lvca-alignleft .lvca-subtitle, .lvca-heading.lvca-alignright .lvca-subtitle {
margin: 0 0 5px;
padding: 0; }
.lvca-heading.lvca-alignleft .lvca-subtitle:before, .lvca-heading.lvca-alignleft .lvca-subtitle:after, .lvca-heading.lvca-alignright .lvca-subtitle:before, .lvca-heading.lvca-alignright .lvca-subtitle:after {
display: none; }
.lvca-heading.lvca-style3 {
margin: 0 auto 30px; }
.lvca-heading.lvca-style3 .lvca-title {
font-size: 22px;
line-height: 32px;
text-transform: uppercase;
letter-spacing: 1px; }
.lvca-heading.lvca-style3 .lvca-title:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lvca-heading.lvca-style3 .lvca-title:after {
margin: 10px auto 20px; }
.lvca-dark-bg .lvca-heading.lvca-style3 .lvca-title:after {
background: #909090; }
@media only screen and (max-width: 767px) {
.lvca-heading.lvca-style3 .lvca-title {
font-size: 16px;
line-height: 24px; } }
.lvca-heading.lvca-style3.lvca-alignleft, .lvca-heading.lvca-style3.lvca-alignright {
margin: 0 0 30px; }
.lvca-heading.lvca-style3.lvca-alignleft .lvca-title:after, .lvca-heading.lvca-style3.lvca-alignright .lvca-title:after {
margin: 10px 0 20px; }.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
visibility: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
display: block; }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
display: block;
-webkit-backface-visibility: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0); }
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
position: absolute; }
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s; }
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
transform: translateY(-100%); }
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
transform: translateY(-100%); }
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s;
-webkit-transform: translateY(0);
transform: translateY(0); }
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
font-family: "Helvetica Neue", sans-serif;
line-height: 1.1em; }
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
text-align: center; } .lvca-odometers {
font-size: 0; }
.lvca-odometers .lvca-odometer {
display: inline-block;
vertical-align: top;
text-align: left;
position: relative;
margin-bottom: 50px; }
.lvca-odometers .lvca-odometer:last-child:after {
border: none; }
.lvca-odometers .lvca-odometer .lvca-prefix, .lvca-odometers .lvca-odometer .lvca-suffix {
display: inline;
font-size: 36px;
line-height: 48px;
color: #333;
vertical-align: middle; }
.lvca-odometers .lvca-odometer .lvca-prefix {
margin-right: 5px;
margin-left: 5px; }
.lvca-odometers .lvca-odometer .lvca-suffix {
margin-left: 5px; }
.lvca-odometers .lvca-odometer .lvca-number {
font-size: 60px;
line-height: 72px;
font-style: normal;
text-transform: none;
letter-spacing: 2px;
font-weight: 900;
color: #333;
margin-bottom: 10px; }
.lvca-odometers .lvca-odometer .lvca-number span {
font-size: 60px; }
.lvca-dark-bg .lvca-odometers .lvca-odometer .lvca-number {
color: #e5e5e5; }
.lvca-odometers .lvca-odometer .lvca-stats-title {
font-size: 18px;
line-height: 28px;
display: inline-block;
color: #888; }
.lvca-dark-bg .lvca-odometers .lvca-odometer .lvca-stats-title {
color: #909090; }
.lvca-odometers .lvca-odometer .lvca-stats-title span {
float: left;
margin-right: 15px; }
.lvca-odometers .lvca-odometer .lvca-stats-title .lvca-icon-wrapper {
font-size: 32px;
margin-right: 10px;
vertical-align: middle;
color: #ccc; }
@media only screen and (max-width: 960px) {
.lvca-odometers .lvca-odometer .lvca-number {
font-size: 48px;
line-height: 56px;
margin-bottom: 0; }
.lvca-odometers .lvca-odometer .lvca-number span {
font-size: 48px; }
.lvca-odometers .lvca-odometer .lvca-stats-title {
font-size: 15px;
line-height: 26px; } }
@media only screen and (max-width: 479px) {
.lvca-odometers .lvca-odometer {
text-align: center; } }.lvca-piechart {
position: relative;
text-align: center;
float: left;
overflow: hidden;
float: left;
padding: 10px; }
.lvca-piechart canvas {
position: relative;
top: 0;
left: 0;
max-width: 100%;
margin: 0 auto; }
.lvca-piechart .lvca-label {
text-align: center;
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 55%;
max-width: 65%;
color: #888; }
.lvca-dark-bg .lvca-piechart .lvca-label {
color: #909090; }
.lvca-piechart .lvca-percentage span {
position: absolute;
top: 25%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
font-size: 60px;
line-height: 60px;
font-weight: 300;
text-align: center;
color: #333;
font-weight: bolder; }
.lvca-dark-bg .lvca-piechart .lvca-percentage span {
color: #e5e5e5; }
.lvca-piechart .lvca-percentage sup {
font-size: 18px;
vertical-align: super; }
.lvca-piechart.dark-bg .lvca-label {
color: #fff; }
.lvca-piechart.dark-bg .lvca-percentage span {
color: #eee; }
@media only screen and (max-width: 479px) {
.lvca-piechart canvas {
margin-bottom: 15px; } }

.lvca-posts-carousel {
clear: both;
max-width: none; }
@media only screen and (min-width: 1024px) {
.lvca-posts-carousel {
max-width: 96%; } }
.lvca-posts-carousel .lvca-posts-carousel-item .hentry {
background: #fff;
border-radius: 6px;
border: none;
padding: 0;
margin: 0;
-webkit-transition: -webkit-box-shadow .25s ease 0s;
transition: -webkit-box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s, -webkit-box-shadow .25s ease 0s;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden; }
.lvca-posts-carousel .lvca-posts-carousel-item .hentry:hover {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image {
position: relative;
overflow: hidden; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .fl-photo-content {
width: 100%; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image img {
width: 100%;
display: block;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
max-width: 100%; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info {
display: block;
text-align: center; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title {
padding: 10px;
margin: 0;
font-size: 22px;
line-height: 34px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title {
font-size: 18px;
line-height: 26px; } }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title a:hover {
border-bottom: 2px solid #ccc; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms a:hover {
color: #fff; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover .lvca-image-info .lvca-post-title, .lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover .lvca-image-info .lvca-terms {
opacity: 1; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 0 auto;
padding: 25px 15px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 16px;
line-height: 24px;
margin-bottom: 10px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title:after, .lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title:before {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a {
color: #333333;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a:hover {
color: #888; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:last-child:after {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-summary {
padding: 0;
margin: 10px auto 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list:after {
text-align: center;
margin: 10px auto 10px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list a {
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .type-post .lvca-entry-text-wrap .entry-summary:before {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more {
margin: 25px 0 0 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):hover {
color: #666; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):after {
margin: 0 7px 0 0; }.lvca-pricing-table .lvca-pricing-plan {
float: left;
padding: 10px; }
.lvca-center {
text-align: center; }
.lvca-pricing-table {
padding: 0; }
.lvca-pricing-table .lvca-top-header {
padding: 15px 0;
background-color: #494949;
border-bottom: 1px solid #2c2b2b; }
.lvca-pricing-table .lvca-top-header h3 {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 20px;
line-height: 32px;
color: #fefefe;
margin: 0; }
.lvca-pricing-table .lvca-top-header img {
margin-top: 15px; }
.lvca-pricing-table .lvca-top-header .lvca-tagline {
display: block;
font-size: 15px;
line-height: 24px;
color: #EDEDED;
text-transform: none;
text-align: center;
margin-bottom: 5px; }
.lvca-pricing-table .lvca-pricing-plan {
background: #fff;
padding: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
margin-bottom: 30px; }
.lvca-pricing-table .lvca-pricing-plan:hover .lvca-purchase {
background: #e5e5e5; }
.lvca-pricing-table .lvca-pricing-plan .lvca-plan-price {
color: #fff;
font-size: 22px;
line-height: 28px;
font-weight: 700;
margin: 0; }
.lvca-pricing-table .lvca-pricing-plan .lvca-plan-price span {
font-size: 22px;
line-height: 32px; }
.lvca-pricing-table .lvca-plan-header {
padding: 30px 0 30px;
background-color: #494949; }
.lvca-pricing-table .lvca-plan-price .lvca-text {
display: inline-block;
padding: 6px 25px;
border-radius: 25px;
background: #2C2B2B; }
.lvca-pricing-table .lvca-plan-price sup {
font-size: 18px;
line-height: 32px;
vertical-align: top;
margin-right: 2px;
position: static; }
.lvca-pricing-table .lvca-plan-details {
padding: 15px 0;
margin: 0;
border: 1px solid #eee; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item {
list-style: none;
display: block;
padding: 6px;
margin: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
text-align: center; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item i {
color: #777;
font-size: 18px;
display: inline;
margin-right: 8px; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-title {
color: #838383;
margin-bottom: 10px; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value-wrap {
display: block; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value-wrap:after {
position: relative;
content: "";
background: #ddd;
width: 120px;
height: 1px;
display: block;
margin: 12px auto 0; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value {
color: #444;
font-size: 24px;
line-height: 32px;
display: inline; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item s {
color: #b4c9d3; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item:last-child .lvca-value-wrap:after {
display: none; }
.lvca-pricing-table .lvca-purchase {
text-align: center;
text-transform: uppercase;
padding: 15px 0;
margin: 0 auto;
background: #f1f1f1;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee; }
.lvca-pricing-table .lvca-purchase a {
padding: 12px 25px;
border-radius: 5px;
letter-spacing: 0;
font-size: 16px;
line-height: 24px;
letter-spacing: 6px;
font-weight: bold; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight {
background: #f5f5f5;
margin-top: -10px; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-plan-details {
border-color: #e5e5e5; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-top-header {
padding: 20px 0; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-pricing-table .lvca-top-header h3 {
color: #28c2ba !important; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-purchase {
padding: 20px 0;
background-color: #e5e5e5;
border-color: #ddd; }.lvca-services.lvca-style1 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: center;
font-size: 96px;
line-height: 1;
margin-bottom: 20px;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services.lvca-style1 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-services.lvca-style1 .lvca-service .lvca-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lvca-services.lvca-style1 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
margin-bottom: 20px; }
.lvca-services.lvca-style1 .lvca-service:hover .lvca-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lvca-services.lvca-style2 .lvca-service .lvca-image-wrapper img, .lvca-services.lvca-style2 .lvca-service .lvca-icon-wrapper span {
float: left;
margin-right: 18px; }
.lvca-services.lvca-style2 .lvca-service .lvca-icon-wrapper span {
font-size: 24px;
line-height: 32px; }
.lvca-services.lvca-style2 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
margin-bottom: 20px; } .lvca-services.lvca-style3 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: left;
font-size: 80px;
line-height: 1;
margin-bottom: 25px;
color: #555; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-icon-wrapper span {
color: #c5c5c5; }
.lvca-services.lvca-style3 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: left;
margin-bottom: 25px; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text {
text-align: left;
max-width: 300px;
margin: 0;
font-size: 14px;
line-height: 32px;
color: #888; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list {
padding: 0;
margin: 0;
border: none; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li {
border-bottom: 1px solid #eee;
position: relative;
padding: 0;
margin: 0;
list-style: none;
line-height: 42px; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:hover {
padding: 0; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li {
border-color: #333; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:before {
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
display: inline-block;
height: auto;
width: auto;
background: none;
float: none;
vertical-align: middle;
margin: 0 15px 0 0;
content: "\e913";
color: #BBBBBB;
font-size: 12px;
line-height: 1; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:before {
color: #606060; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
margin-bottom: 20px; } .lvca-services.lvca-style4 .lvca-service {
margin-bottom: 60px; }
.lvca-services.lvca-style4 .lvca-service .lvca-image-wrapper img, .lvca-services.lvca-style4 .lvca-service .lvca-icon-wrapper span {
display: block;
margin-bottom: 20px;
text-align: left; }
.lvca-services.lvca-style4 .lvca-service .lvca-icon-wrapper span {
font-size: 36px;
line-height: 1;
color: #888; }
.lvca-services.lvca-style4 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px; } .lvca-services.lvca-style5 .lvca-service {
margin-bottom: 80px; }
@media only screen and (max-width: 767px) {
.lvca-services.lvca-style5 .lvca-service {
margin-bottom: 50px; } }
.lvca-services.lvca-style5 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: center;
font-size: 48px;
line-height: 1;
margin-bottom: 15px;
color: #999;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services.lvca-style5 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-services.lvca-style5 .lvca-service .lvca-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lvca-services.lvca-style5 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 16px;
line-height: 26px;
margin-bottom: 10px; }
.lvca-services.lvca-style5 .lvca-service:hover .lvca-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lvca-services .lvca-service {
margin-bottom: 50px; }
.lvca-services .lvca-service .lvca-icon-wrapper span {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services .lvca-service .lvca-service-text {
font-size: 15px;
line-height: 24px; }
.lvca-dark-bg .lvca-services .lvca-service .lvca-service-text {
color: #909090; }
.lvca-dark-bg .lvca-services .lvca-service .lvca-service-text .lvca-title {
color: #e5e5e5; }.lvca-stats-bars .lvca-stats-bar {
width: 100%;
display: block;
margin: 0 0 18px;
overflow: hidden; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-title {
margin: 0;
display: block;
color: #888;
font-style: normal;
font-size: 15px;
text-transform: none;
color: #333;
font-size: 16px;
line-height: 28px; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-title span {
margin-left: 5px; }
.lvca-dark-bg .lvca-stats-bars .lvca-stats-bar .lvca-stats-title {
color: #ddd; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-wrap {
position: relative; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-content {
background: #e55a54;
display: block;
height: 10px;
width: 0;
position: relative;
z-index: 1;
border-radius: 5px; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-bg {
width: 100%;
background: rgba(0, 0, 0, 0.1);
height: 10px;
display: block;
margin-top: -10px;
border-radius: 5px; }
.lvca-dark-bg .lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-bg {
background: rgba(255, 255, 255, 0.1); }@-webkit-keyframes lvca-fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes lvca-fade {
0% {
opacity: 0; }
100% {
opacity: 1; } } .lvca-tabs {
position: relative;
overflow: hidden; }
.lvca-tabs .lvca-tab-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lvca-tabs .lvca-tab-nav .lvca-tab {
text-align: center;
-webkit-box-flex: 0;
box-flex: 0;
-moz-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto; }
.lvca-tabs .lvca-tab-nav .lvca-tab a {
display: block;
text-overflow: ellipsis;
white-space: normal;
padding: 20px 40px;
text-decoration: none;
border: none;
margin: 0;
outline: none;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-tabs .lvca-tab-nav .lvca-tab a {
padding: 20px 25px; } }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span {
font-size: 32px;
font-weight: 400;
vertical-align: middle;
margin-right: 10px; }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-image-wrapper img {
max-width: 24px;
display: inline-block;
vertical-align: middle;
height: auto;
width: auto;
padding: 0;
margin: 0 10px 0 0;
border: none; }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-tab-title {
font-size: 14px;
line-height: 1;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px; }
.lvca-tabs .lvca-tab-panes {
position: relative; }
.lvca-tabs .lvca-tab-panes .lvca-tab-pane {
padding: 40px;
display: none;
overflow: hidden; }
.lvca-tabs .lvca-tab-panes .lvca-tab-pane.lvca-active {
display: block;
-webkit-animation: lvca-fade 0.3s ease-in-out;
animation: lvca-fade 0.3s ease-in-out; } .lvca-no-flexbox .lvca-tab-nav {
display: block; }
.lvca-no-flexbox .lvca-tab-nav .lvca-tab {
min-width: 15%;
display: inline-block; } .lvca-tabs.lvca-vertical {
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.lvca-tabs.lvca-vertical .lvca-tab-nav {
-webkit-box-flex: 1;
box-flex: 1;
-moz-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lvca-tabs.lvca-vertical .lvca-tab-panes {
-webkit-box-flex: 4;
box-flex: 4;
-moz-flex: 4 1 auto;
-ms-flex: 4 1 auto;
flex: 4 1 auto; }
.lvca-tabs.lvca-vertical.lvca-mobile-layout {
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column; } .lvca-tab-mobile-menu {
display: none; position: absolute;
top: 23px;
right: 20px;
background: transparent;
border: none;
z-index: 10; }
.lvca-tab-mobile-menu i {
font-size: 18px;
color: #777;
font-weight: bold; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-mobile-menu {
display: block; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav {
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column;
cursor: pointer; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
text-align: center;
display: none; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav .lvca-tab.lvca-active {
display: block; }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open { }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open .lvca-tab-nav .lvca-tab {
display: block; }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open .lvca-tab-mobile-menu i:before {
content: '\e911'; } .lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab {
border-left: 1px solid #d9d9d9;
border-bottom: 1px solid #e2e2e2;
background: #e9e9e9; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab:first-child {
border-left-color: transparent;
border-radius: 5px 0 0 0; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab:last-child {
border-radius: 0 5px 0 0; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab.lvca-active {
border-bottom: none;
background: #f2f2f2; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a {
color: #777; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a:focus {
color: #333; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style1 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 4px 4px 4px; }
.lvca-tabs.lvca-style1.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
background: #eeeeee; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab {
border-left: none;
border-bottom-color: #d9d9d9; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab:first-child {
border-radius: 5px 5px 0 0; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab:last-child {
border-radius: 0; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab-panes {
border-radius: 0; } .lvca-tabs.lvca-style2 .lvca-tab-nav {
background: #f2f2f2;
border-radius: 5px 5px 0 0;
padding: 0 30px; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab {
padding: 20px 10px;
position: relative; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a {
display: inline-block;
padding: 5px 20px;
border-radius: 34px;
color: #666;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:focus {
color: #888; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 8px;
margin: 0 auto;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #3c3d41; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active a {
background: #838d8f;
color: #fff; }
.lvca-tabs.lvca-style2 .lvca-tab-panes {
background: #3c3d41;
border-radius: 0 0 5px 5px; }
.lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane {
color: #838d8f; }
.lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h1, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h2, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h3, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h4, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h5, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h6 {
color: #fff; }
.lvca-tabs.lvca-style2.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 27px; }
.lvca-tabs.lvca-style2.lvca-mobile-layout .lvca-tab-nav {
padding: 0; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom: 1px solid #e2e2e2; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab:last-child {
border-bottom: none; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active:after {
display: none; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active a {
background: #aaa;
color: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-bottom: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333333; } .lvca-tabs.lvca-style3 .lvca-tab-nav {
background: #3c3d41;
border-radius: 5px 5px 0 0; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab {
position: relative;
border-right: 1px solid #4e4f53; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a {
padding: 20px 30px;
border-radius: 34px;
color: #8f8e93;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:focus {
color: #ccc; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 8px;
margin: 0 auto;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #f2f2f2; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span, .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-image-wrapper img {
margin: 0 auto; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-tab-title {
display: none; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #eeeeee; }
.lvca-tabs.lvca-style3 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 0 5px 5px; }
.lvca-tabs.lvca-style3.lvca-mobile-layout .lvca-tab-nav {
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row;
padding-right: 60px; }
.lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom: 1px solid #4e4f53; }
.lvca-dark-bg .lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom-color: #e5e5e5; }
.lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active:after {
display: none; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav {
background: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab {
border-right: 1px solid #ececec; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a {
color: #969696; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-bottom: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333; } .lvca-tabs.lvca-style4 {
background: #f2f2f2;
border-radius: 5px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav {
border-bottom: 1px solid #dddddd;
margin: 0 40px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab {
position: relative;
z-index: 1;
margin-right: 20px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:last-child {
margin-right: 0; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab a {
color: #888;
padding: 30px 20px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: transparent;
-webkit-transition: background .3s ease-in-out 0s;
transition: background .3s ease-in-out 0s; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:hover a {
color: #565656; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active:before {
background: #f94213;
height: 2px; }
.lvca-tabs.lvca-style4 .lvca-tab-pane {
padding: 40px; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav {
cursor: pointer;
padding: 0;
margin: 0;
border: none; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
margin: 0;
border-bottom: 1px solid #e0e0e0; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
border-left: 1px solid #404040;
border-right: 1px solid #404040;
border-bottom-color: #404040; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab:first-child {
border-top: 1px solid #404040; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
padding: 20px 25px; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab:before {
display: none; }
.lvca-tabs.lvca-style4.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active {
border-left: 2px solid #f94213;
border-right: 2px solid #f94213; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
border-top: 1px solid #404040; }
.lvca-dark-bg .lvca-tabs.lvca-style4 {
background: transparent; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav {
margin: 0;
border-bottom: 1px solid #2a2a2a; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab a {
color: #707070; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:hover a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #e5e5e5; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane {
padding: 40px 0 0;
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style5 .lvca-tab-nav a {
padding: 20px 50px;
color: #777;
position: relative;
z-index: 1; }
.lvca-tabs.lvca-style5 .lvca-tab-nav a:after {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
background-color: #e9e9e9;
content: '';
-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
-webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
transition: background-color 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, background-color 0.3s;
transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
-webkit-transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-perspective-origin: 50% 100%;
perspective-origin: 50% 100%; }
.lvca-tabs.lvca-style5 .lvca-tab-nav a:hover, .lvca-tabs.lvca-style5 .lvca-tab-nav a:focus {
color: #333; }
.lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a:after {
background-color: #f2f2f2;
-webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
transform: perspective(900px) rotate3d(1, 0, 0, 0deg); }
.lvca-tabs.lvca-style5 .lvca-tab-panes {
background: #f2f2f2; }
.lvca-tabs.lvca-style5.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
background: #f2f2f2;
border-bottom: 1px solid #e5e5e5; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a:focus {
color: #dddddd; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; } .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab {
text-align: left; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
padding: 5px 2px;
color: #666;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
display: inline-block; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a:focus, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a:focus {
color: #333333; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab.lvca-active a, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab.lvca-active a {
border-color: #f94213;
color: #333; }
.lvca-tabs.lvca-style6 .lvca-tab-pane, .lvca-tabs.lvca-style7 .lvca-tab-pane {
padding: 40px 0 0; }
.lvca-tabs.lvca-style6 .lvca-tab-nav {
margin: 0 auto;
text-align: left; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab {
margin-right: 50px; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab:last-child {
margin-right: 0; }
.lvca-tabs.lvca-style6 .lvca-tab-pane {
padding: 40px 0 0; }
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab {
padding: 0 25px 0 0; }
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
max-width: none;
margin: 6px 0; }
@media only screen and (max-width: 479px) {
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
text-align: center; } }
.lvca-tabs.lvca-style7 .lvca-tab-panes {
-webkit-box-flex: 6;
box-flex: 6;
-moz-flex: 6 1 auto;
-ms-flex: 6 1 auto;
flex: 6 1 auto; }
.lvca-tabs.lvca-style7 .lvca-tab-panes .lvca-tab-pane {
padding: 0 0 0 20px; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-mobile-menu, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 22px; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-nav .lvca-tab, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
padding: 12px 0;
width: 100%;
text-align: center; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-nav .lvca-tab a, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
margin: 0; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-pane, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-pane {
padding: 30px 0 0; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab:hover a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab:hover a {
color: #dddddd; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab.lvca-active a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #eaeaea; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane {
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h6, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab {
margin: 2px 0; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a {
padding: 15px 30px;
border-radius: 4px;
background: #f2f2f2;
color: #777777;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-left: 3px solid transparent;
text-align: left; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a:focus {
color: #333333; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333;
border-left-color: #f94213; }
.lvca-tabs.lvca-style8 .lvca-tab-pane {
padding: 0 0 0 40px; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 18px; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
text-align: left; }
.lvca-tabs.lvca-style8.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active a {
border-color: transparent !important; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-pane {
padding: 30px 0 0; }
.lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane {
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style9 {
background: #f2f2f2;
border-radius: 5px; }
.lvca-tabs.lvca-style9 .lvca-tab-nav {
border-right: 1px solid #dddddd; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab {
border-bottom: 1px solid #d8d8d8;
background: #e9e9e9; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab.lvca-active {
margin-right: -1px;
background: #f2f2f2; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a {
padding: 20px 30px;
color: #777; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a:focus {
color: #333; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style9 .lvca-tab-panes {
-webkit-box-flex: 5;
box-flex: 5;
-moz-flex: 5 1 auto;
-ms-flex: 5 1 auto;
flex: 5 1 auto; }
.lvca-tabs.lvca-style9.lvca-mobile-layout .lvca-tab-nav {
border-right: none; }
.lvca-tabs.lvca-style9.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
background: #eeeeee;
border: none; } .lvca-tabs.lvca-style10 .lvca-tab-nav {
background: #3c3d41;
border-radius: 5px 0 0 5px; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab {
position: relative;
border-bottom: 1px solid #4e4f53;
padding: 0; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab:last-child {
border-bottom: none; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a {
padding: 20px;
color: #8f8e93;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:focus {
color: #ccc; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
top: 32px;
right: 0;
height: 8px;
margin: 0 auto;
border-top: 8px solid transparent;
border-right: 8px solid #f2f2f2;
border-bottom: 8px solid transparent; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span, .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-image-wrapper {
margin: 0 auto; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-tab-title {
display: none; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #fff; }
.lvca-tabs.lvca-style10 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 5px 5px 0; }
.lvca-tabs.lvca-style10.lvca-mobile-layout {
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row; }
.lvca-tabs.lvca-style10.lvca-mobile-layout .lvca-tab-mobile-menu {
display: none; }
.lvca-tabs.lvca-style10.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
display: block; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav {
background: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab {
border-bottom: 1px solid #ececec; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab:last-child {
border-bottom: none; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a {
color: #969696; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-right: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333; }.lvca-team-members .lvca-team-member .lvca-social-list {
margin-top: 20px; }
.lvca-team-members .lvca-team-member .lvca-social-list .lvca-social-list-item {
display: inline;
margin: 0 15px 0 0; }
.lvca-team-members .lvca-team-member .lvca-team-member-details {
font-size: 15px;
line-height: 24px; }
.lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px; }
.lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-team-member-position {
font-size: 15px;
line-height: 24px;
font-style: italic;
color: #888;
margin-bottom: 10px; } .lvca-team-members.lvca-style1 .lvca-team-member-wrapper {
float: left;
padding: 10px; }
.lvca-team-members.lvca-style1 .lvca-team-member {
max-width: 320px;
margin: 0 auto 40px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper {
text-align: center;
position: relative; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper img {
max-width: 100%;
margin: 0 auto 30px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list {
position: absolute;
height: 100%;
width: 100%;
top: 40%;
z-index: 2; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list {
position: relative;
top: 0; } }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i {
font-size: 26px;
color: #fff;
opacity: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i:hover {
color: #ccc; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i {
color: inherit;
opacity: 1; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i:hover {
color: inherit; } }
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); } }
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper .lvca-social-list i {
opacity: 1; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-team-member-text {
text-align: center;
max-width: 650px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-team-member-text .lvca-title {
margin-bottom: 10px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-social-list {
margin: 10px auto; } .lvca-team-members.lvca-style2 {
position: relative;
max-width: 960px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper {
clear: both;
margin-top: 100px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:first-child {
margin-top: 0; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-image-wrapper {
float: left;
position: relative; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-image-wrapper img {
max-width: 320px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text {
margin: 10px 0 0;
vertical-align: middle;
padding-top: 20px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-title {
margin-bottom: 5px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-team-member-details {
margin: 10px 0 10px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-social-list i {
font-size: 24px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:hover .lvca-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(odd) .lvca-image-wrapper {
margin-right: 50px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-image-wrapper {
float: right;
margin-left: 50px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-title, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-team-member-position, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-team-member-details, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-social-list {
text-align: right; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper {
margin-top: 75px; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text {
width: 100%;
float: none; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper {
text-align: center; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper img {
margin: 0 auto 20px; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text {
max-width: 400px;
margin: 0 auto;
padding-top: 0; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-title, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-team-member-position, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-team-member-details, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-social-list {
text-align: center !important; } }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-details {
color: #909090; }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-title {
color: #e5e5e5; }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-team-member-position {
color: #505050; }.lvca-testimonials .lvca-testimonial {
margin-bottom: 50px; }
.lvca-testimonials .lvca-testimonial-text {
background: #ffffff;
border: 1px solid #dbdbdb;
border-radius: 30px;
text-align: center;
position: relative;
padding: 20px;
margin-bottom: 40px;
font-style: italic;
font-size: 15px;
line-height: 24px;
color: #888;
text-align: center;
max-width: 450px; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-text {
color: #666;
background: #eee; }
.lvca-testimonials .lvca-testimonial-text:after {
content: '';
display: block;
background: #fff;
border-left: 1px solid #dbdbdb;
border-bottom: 1px solid #dbdbdb;
background: #ffffff;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: skew(0deg, -44deg);
width: 24px;
height: 24px;
position: absolute;
bottom: -12px;
left: 40px;
margin: auto; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-text:after {
background: #eee; }
.lvca-testimonials .lvca-testimonial-user {
display: table; }
.lvca-testimonials .lvca-testimonial-user .lvca-image-wrapper {
display: table-cell; }
.lvca-testimonials .lvca-testimonial-user .lvca-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 20px; }
.lvca-testimonials .lvca-testimonial-user .lvca-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-user .lvca-text {
color: #909090; }
.lvca-testimonials .lvca-testimonial-user .lvca-text .lvca-author-name {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 15px;
line-height: 24px;
margin-bottom: 5px;
color: #333; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-user .lvca-text .lvca-author-name {
color: #e5e5e5; }.lvca-flex-container a:hover,
.lvca-flex-slider a:hover {
outline: none;
}
.lvca-slides,
.lvca-slides > li,
.lvca-flex-control-nav,
.lvca-flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.lvca-flex-pauseplay span {
text-transform: capitalize;
} .lvca-flexslider {
margin: 0;
padding: 0;
}
.lvca-flexslider .lvca-slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.lvca-flexslider .lvca-slides img {
width: 100%;
display: block;
}
html[xmlns] .lvca-flexslider .lvca-slides {
display: block;
}
* html .lvca-flexslider .lvca-slides {
height: 1%;
}
.no-js .lvca-flexslider .lvca-slides > li:first-child {
display: block;
} .lvca-flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.lvca-flexslider .lvca-slides {
zoom: 1;
overflow: hidden;
}
.lvca-flexslider .lvca-slides img {
height: auto;
-moz-user-select: none;
}
.lvca-flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.loading .lvca-flex-viewport {
max-height: 300px;
}
.carousel li {
margin-right: 5px;
}
.lvca-flex-direction-nav {
*height: 0;
}
.lvca-flex-direction-nav a {
text-decoration: none;
display: block;
width: 40px;
height: 40px;
margin: -20px 0 0;
position: absolute;
top: 50%;
z-index: 10;
overflow: hidden;
opacity: 0;
cursor: pointer;
color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
a.lvca-flex-prev { font-size: 40px;  color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.lvca-flex-direction-nav a.lvca-flex-next:before {
content: '\f002';
}
.lvca-flex-direction-nav .lvca-flex-prev {
left: -50px;
}
.lvca-flex-direction-nav .lvca-flex-next {
right: -50px;
text-align: right;
}
.lvca-flex-direction-nav .lvca-flex-disabled {
opacity: 0!important;
filter: alpha(opacity=0);
cursor: default;
z-index: -1;
}
.lvca-flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.lvca-flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: '\f004';
}
.lvca-flex-pauseplay a:hover {
opacity: 1;
}
.lvca-flex-pauseplay a.lvca-flex-play:before {
content: '\f003';
}
.lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
}
.lvca-flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.lvca-flex-control-paging li a {
width: 11px;
height: 11px;
display: block;
background: #666;
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
text-indent: -9999px;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
border-radius: 20px;
}
.lvca-flex-control-paging li a:hover {
background: #333;
background: rgba(0, 0, 0, 0.7);
}
.lvca-flex-control-paging li a.lvca-flex-active {
background: #000;
background: rgba(0, 0, 0, 0.9);
cursor: default;
}
.lvca-flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.lvca-flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.lvca-flex-control-thumbs img {
width: 100%;
height: auto;
display: block;
opacity: .7;
cursor: pointer;
-moz-user-select: none;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.lvca-flex-control-thumbs img:hover {
opacity: 1;
}
.lvca-flex-control-thumbs .lvca-flex-active {
opacity: 1;
cursor: default;
} @media screen and (max-width: 860px) {
.lvca-flex-direction-nav .lvca-flex-prev {
opacity: 1;
left: 10px;
}
.lvca-flex-direction-nav .lvca-flex-next {
opacity: 1;
right: 10px;
}
}.lvca-testimonials-slider {
position: relative; }
.lvca-testimonials-slider.lvca-container {
max-width: 900px;
margin: 0 auto; }
.lvca-testimonials-slider .lvca-testimonial-text {
text-align: center;
max-width: 750px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 32px;
font-style: italic;
color: #666; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-text {
color: #ccc; }
.lvca-testimonials-slider .lvca-testimonial-text i {
color: #ccc;
font-size: 32px;
display: block;
margin-bottom: 35px;
background: none;
width: auto;
height: auto; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-text i {
color: #ddd; }
.lvca-testimonials-slider .lvca-testimonial-user {
display: table;
margin: 0 auto; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-image-wrapper {
display: table-cell; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 15px; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-user .lvca-text {
color: #909090; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-author-name {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 15px;
line-height: 24px;
margin-bottom: 5px; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-author-name {
color: #e5e5e5; }

.lvca-portfolio-wrap {
clear: both;
overflow: hidden; }
.lvca-portfolio-wrap .lvca-portfolio-header {
position: relative;
max-width: 1140px;
margin: 0 auto 30px;
overflow: hidden;
clear: both;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; }
.lvca-portfolio-wrap .lvca-portfolio-header.lvca-no-heading {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-portfolio-header {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; } }
.lvca-portfolio-wrap .lvca-heading {
display: inline-block;
text-align: left;
max-width: none;
font-size: 32px;
line-height: 44px;
text-transform: uppercase;
letter-spacing: 1px;
color: #333;
margin: 0 100px 0 0; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-heading {
color: #e5e5e5; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-heading {
margin-bottom: 30px; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter {
display: block;
margin: 0;
padding: 0;
-webkit-align-self: center;
align-self: center;
-ms-flex-item-align: center; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-taxonomy-filter {
-webkit-align-self: flex-start;
align-self: flex-start;
-ms-flex-item-align: start; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item {
position: relative;
display: inline-block;
margin: 0 0 15px 0;
padding: 0;
font-style: normal;
border-bottom: 1px solid #ddd; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item {
border-color: #444; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
font-size: 15px;
line-height: 24px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
display: block;
color: #777;
padding: 0 15px 15px; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
color: #999; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a:hover {
color: #222; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a:hover {
color: #fff; }
@media only screen and (max-width: 479px) {
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
padding: 0 10px 8px; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active a {
color: #222; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active a {
color: #fff; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
border-bottom: 3px solid #f94213;
width: 100%; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item:last-child {
margin-right: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .hentry {
margin: 0;
padding: 0;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image {
position: relative;
overflow: hidden; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image img {
display: block;
width: 100%;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info {
display: block;
text-align: center; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title {
padding: 10px;
margin: 0;
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title {
font-size: 18px;
line-height: 26px; } }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title a:hover {
border-bottom: 1px solid #ccc; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms a:hover {
color: #fff; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover .lvca-image-info .lvca-post-title, .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover .lvca-image-info .lvca-terms {
opacity: 1; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 20px auto 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title {
font-size: 18px;
line-height: 26px;
font-weight: normal;
margin-bottom: 10px; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title:after, .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title:before {
display: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
color: #333; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a:hover {
color: #888; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a {
color: #e0e0e0; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a:hover {
color: #fff; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:last-child:after {
display: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span {
color: #707070; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary {
margin: 15px auto 0;
padding: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary {
color: #999; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary:before {
background: #505050; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more {
margin: 25px 0 0 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):hover {
color: #666; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):after {
margin: 0 7px 0 0; }.aligncenter, 
.alignnone, 
.alignright, 
.alignleft {
display: block; margin: 1.6em auto; clear: both;
}
.aligncenter:first-child, 
.alignnone:first-child, 
.alignright:first-child, 
.alignleft:first-child {
margin-top: 0;
}
.wp-caption {
margin-bottom: 1.6em; max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block; margin: 0;
}
.wp-caption-text {
color: #aaa; font-size: 11px; letter-spacing:  .04em; padding: 0.8em 0 0;
}
.aligncenter .wp-caption-text {
text-align: center;
} @media screen and (min-width: 768px) {
.alignnone {
margin: 3em 0; 
}
.aligncenter {
margin: 2em auto; 
}
.alignright {
float:right; margin: 12px 0 28px 34px;
}
.alignleft {
float: left; margin: 12px 34px 28px 0;
}
.alignright,
.alignleft {
max-width: 50%;
}
.alignright .wp-caption-text,
.alignleft .wp-caption-text {
max-width: 230px;
}
} @media screen and (min-width: 1400px) { 
.is-post-media-overflow .layout-fixed .aligncenter:not(.full),
.is-post-media-overflow .layout-fixed .media-wrap,
.is-post-media-overflow .layout-fixed .owl-carousel,
.is-post-media-overflow .layout-fixed .gallery {
max-width: 166%; width: 166%; margin-left: -33%;
}
.is-post-media-overflow .layout-fixed .alignright,
.is-post-media-overflow .layout-fixed .alignleft {
max-width: 66%;
}
.is-post-media-overflow .layout-fixed .alignright {
margin-right: -33%;
}
.is-post-media-overflow .layout-fixed .alignleft {
margin-left: -33%;
}	
}