@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;
} @-webkit-keyframes fadeInLeftSmall {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftSmall {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftSmall {
-webkit-animation-name: fadeInLeftSmall;
animation-name: fadeInLeftSmall;
}
@-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;
}
}
@-webkit-keyframes fadeInRightSmall {
from {
opacity: 0;
-webkit-transform: translate3d(40px, 0, 0);
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightSmall {
from {
opacity: 0;
-webkit-transform: translate3d(40px, 0, 0);
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightSmall {
-webkit-animation-name: fadeInRightSmall;
animation-name: fadeInRightSmall;
}
@-webkit-keyframes fadeOut_to_1 {
from {
opacity: 1;
}
to {
opacity: 0.1;
}
}
@keyframes fadeOut_to_1 {
from {
opacity: 1;
}
to {
opacity: 0.1;
}
}
.fadeOut_to_1 {
-webkit-animation-name: fadeOut_to_1;
animation-name: fadeOut_to_1;
}.lae-flex-container a:hover,
.lae-flex-slider a:hover {
outline: none;
}
.lae-slides,
.lae-slides > li,
.lae-flex-control-nav,
.lae-flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.lae-flex-pauseplay span {
text-transform: capitalize;
} .lae-flexslider {
margin: 0;
padding: 0;
}
.lae-flexslider .lae-slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.lae-flexslider .lae-slides img {
width: 100%;
display: block;
}
html[xmlns] .lae-flexslider .lae-slides {
display: block;
}
* html .lae-flexslider .lae-slides {
height: 1%;
}
.no-js .lae-flexslider .lae-slides > li:first-child {
display: block;
} .lae-flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.lae-flexslider .lae-slides {
zoom: 1;
overflow: hidden;
}
.lae-flexslider .lae-slides img {
height: auto;
-moz-user-select: none;
}
.lae-flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.loading .lae-flex-viewport {
max-height: 300px;
}
.carousel li {
margin-right: 5px;
}
.lae-flex-direction-nav {
*height: 0;
}
.lae-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.lae-flex-prev { font-size: 40px;  color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.lae-flex-direction-nav a.lae-flex-next:before {
content: '\f002';
}
.lae-flex-direction-nav .lae-flex-prev {
left: -50px;
}
.lae-flex-direction-nav .lae-flex-next {
right: -50px;
text-align: right;
}
.lae-flex-direction-nav .lae-flex-disabled {
opacity: 0!important;
filter: alpha(opacity=0);
cursor: default;
z-index: -1;
}
.lae-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;
}
.lae-flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: '\f004';
}
.lae-flex-pauseplay a:hover {
opacity: 1;
}
.lae-flex-pauseplay a.lae-flex-play:before {
content: '\f003';
}
.lae-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
}
.lae-flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.lae-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;
}
.lae-flex-control-paging li a:hover {
background: #333;
background: rgba(0, 0, 0, 0.7);
}
.lae-flex-control-paging li a.lae-flex-active {
background: #000;
background: rgba(0, 0, 0, 0.9);
cursor: default;
}
.lae-flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.lae-flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.lae-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;
}
.lae-flex-control-thumbs img:hover {
opacity: 1;
}
.lae-flex-control-thumbs .lae-flex-active {
opacity: 1;
cursor: default;
} @media screen and (max-width: 860px) {
.lae-flex-direction-nav .lae-flex-prev {
opacity: 1;
left: 10px;
}
.lae-flex-direction-nav .lae-flex-next {
opacity: 1;
right: 10px;
}
}  .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;
margin-left: auto;
margin-right: auto;
}
.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;
}@font-face {
font-family: 'lae-icomoon';
src:
url(//baseball888.com/wp-content/plugins/addons-for-elementor-premium/assets/css/fonts/lae-icomoon.ttf?cdhgky) format('truetype'),
url(//baseball888.com/wp-content/plugins/addons-for-elementor-premium/assets/css/fonts/lae-icomoon.woff?cdhgky) format('woff'),
url(//baseball888.com/wp-content/plugins/addons-for-elementor-premium/assets/css/fonts/lae-icomoon.svg?cdhgky#lae-icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lae-icon-"], [class*=" lae-icon-"] { font-family: 'lae-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;
}
.lae-icon-arrow-left:before {
content: "\e900";
}
.lae-icon-arrow-right:before {
content: "\e901";
}
.lae-icon-aim:before {
content: "\e902";
}
.lae-icon-behance:before {
content: "\e903";
}
.lae-icon-dribbble:before {
content: "\e904";
}
.lae-icon-facebook:before {
content: "\e905";
}
.lae-icon-flickr:before {
content: "\e906";
}
.lae-icon-googleplus:before {
content: "\e907";
}
.lae-icon-linkedin:before {
content: "\e908";
}
.lae-icon-pinterest:before {
content: "\e909";
}
.lae-icon-skype:before {
content: "\e90a";
}
.lae-icon-twitter:before {
content: "\e90b";
}
.lae-icon-vimeo:before {
content: "\e90c";
}
.lae-icon-zerply:before {
content: "\e90d";
}
.lae-icon-quote:before {
content: "\e90e";
}
.lae-icon-video-play:before {
content: "\e90f";
}
.lae-icon-email:before {
content: "\e910";
}
.lae-icon-close:before {
content: "\e911";
}
.lae-icon-plus:before {
content: "\e912";
}
.lae-icon-arrow-right-toggle:before {
content: "\e913";
}
.lae-icon-menu:before {
content: "\e914";
}
.lae-icon-menu-2:before {
content: "\e915";
}
.lae-icon-fit-to:before {
content: "\e916";
}
.lae-icon-full-screen:before {
content: "\e917";
}
.lae-icon-arrow-left2:before {
content: "\e918";
}
.lae-icon-arrow-left3:before {
content: "\e919";
}
.lae-icon-arrow-right2:before {
content: "\e91a";
}
.lae-icon-arrow-right3:before {
content: "\e91b";
}
.lae-icon-start:before {
content: "\e91c";
}
.lae-icon-instagram:before {
content: "\ea92";
}
.lae-icon-heart:before {
content: "\e91d";
}
.lae-icon-love:before {
content: "\e91d";
}
.lae-icon-like:before {
content: "\e91d";
}
.lae-icon-retweet:before {
content: "\e91e";
}
.lae-icon-arrows:before {
content: "\e91e";
}
.lae-icon-loop:before {
content: "\e91e";
}
.lae-icon-reload:before {
content: "\e91e";
}
.lae-icon-play2:before {
content: "\ea15";
}
.lae-icon-play3:before {
content: "\ea1c";
}
.lae-icon-twitter2:before {
content: "\ea96";
}.panel-grid .widget {
overflow: initial; }
.lae-container, .lae-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lae-container *, .lae-container *::after, .lae-container *::before, .lae-grid-container *, .lae-grid-container *::after, .lae-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lae-container ol, .lae-container ul, .lae-container ol > li, .lae-container ul > li, .lae-container ol:hover, .lae-container ul:hover, .lae-container ul > li:hover, .lae-container ol > li:hover, .lae-container ol > li > a, .lae-container ul > li > a, .lae-container ol > li > a:hover, .lae-container ul > li > a:hover, .lae-container img, .lae-grid-container ol, .lae-grid-container ul, .lae-grid-container ol > li, .lae-grid-container ul > li, .lae-grid-container ol:hover, .lae-grid-container ul:hover, .lae-grid-container ul > li:hover, .lae-grid-container ol > li:hover, .lae-grid-container ol > li > a, .lae-grid-container ul > li > a, .lae-grid-container ol > li > a:hover, .lae-grid-container ul > li > a:hover, .lae-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lae-container ol:before, .lae-container ol:after, .lae-container ul:before, .lae-container ul:after, .lae-container ol > li:before, .lae-container ol > li:after, .lae-container ul > li:before, .lae-container ul > li:after, .lae-container ol:hover:before, .lae-container ol:hover:after, .lae-container ul:hover:before, .lae-container ul:hover:after, .lae-container ul > li:hover:before, .lae-container ul > li:hover:after, .lae-container ol > li:hover:before, .lae-container ol > li:hover:after, .lae-container ol > li > a:before, .lae-container ol > li > a:after, .lae-container ul > li > a:before, .lae-container ul > li > a:after, .lae-container ol > li > a:hover:before, .lae-container ol > li > a:hover:after, .lae-container ul > li > a:hover:before, .lae-container ul > li > a:hover:after, .lae-container img:before, .lae-container img:after, .lae-grid-container ol:before, .lae-grid-container ol:after, .lae-grid-container ul:before, .lae-grid-container ul:after, .lae-grid-container ol > li:before, .lae-grid-container ol > li:after, .lae-grid-container ul > li:before, .lae-grid-container ul > li:after, .lae-grid-container ol:hover:before, .lae-grid-container ol:hover:after, .lae-grid-container ul:hover:before, .lae-grid-container ul:hover:after, .lae-grid-container ul > li:hover:before, .lae-grid-container ul > li:hover:after, .lae-grid-container ol > li:hover:before, .lae-grid-container ol > li:hover:after, .lae-grid-container ol > li > a:before, .lae-grid-container ol > li > a:after, .lae-grid-container ul > li > a:before, .lae-grid-container ul > li > a:after, .lae-grid-container ol > li > a:hover:before, .lae-grid-container ol > li > a:hover:after, .lae-grid-container ul > li > a:hover:before, .lae-grid-container ul > li > a:hover:after, .lae-grid-container img:before, .lae-grid-container img:after {
display: none; }
.lae-container a, .lae-grid-container a {
text-decoration: initial; }
.lae-container img, .lae-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lae-container {
margin-left: auto;
margin-right: auto; }
.lae-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lae-center {
text-align: center; }
.lae-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lae-grid-container::after {
clear: both;
content: "";
display: block; }
.lae-grid-container .lae-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lae-grid-container.lae-grid-mobile-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.lae-grid-container.lae-grid-mobile-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.lae-grid-container.lae-grid-mobile-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.lae-grid-container.lae-grid-mobile-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.lae-grid-container.lae-grid-mobile-6 .lae-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lae-grid-container.lae-grid-tablet-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.lae-grid-container.lae-grid-tablet-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.lae-grid-container.lae-grid-tablet-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.lae-grid-container.lae-grid-tablet-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.lae-grid-container.lae-grid-tablet-6 .lae-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lae-grid-container.lae-grid-desktop-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.lae-grid-container.lae-grid-desktop-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.lae-grid-container.lae-grid-desktop-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.lae-grid-container.lae-grid-desktop-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.lae-grid-container.lae-grid-desktop-6 .lae-grid-item:nth-child(6n+1) {
clear: left; } }
.lae-grid-container.lae-grid-mobile-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lae-grid-container.lae-grid-tablet-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lae-grid-container.lae-grid-desktop-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lae-gapless-grid .lae-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lae-gapless-grid .lae-masonry { }
.lae-gapless-grid .lae-masonry .lae-grid-item {
clear: none !important; }
.lae-gapless-grid .lae-masonry .lae-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lae-gapless-grid .lae-masonry.lae-grid-tablet-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lae-gapless-grid .lae-masonry.lae-grid-desktop-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lae-container .lae-thumbnailslider.lae-flexslider {
margin-top: 15px; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide {
margin: 0 5px 0 0; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide img:hover {
opacity: 1; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide.lae-flex-active-slide img {
opacity: 1;
cursor: default; }
.lae-container .lae-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lae-container .lae-flex-direction-nav li {
position: initial; }
.lae-container .lae-flex-direction-nav a, .lae-container .lae-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lae-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; }
.lae-container .lae-flex-direction-nav a:before, .lae-container .lae-flex-direction-nav a:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lae-dark-bg .lae-container .lae-flex-direction-nav a, .lae-dark-bg .lae-container .lae-flex-direction-nav a:hover {
color: #888; }
.lae-dark-bg .lae-container .lae-flex-direction-nav a:hover, .lae-dark-bg .lae-container .lae-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lae-container .lae-flex-direction-nav a, .lae-container .lae-flex-direction-nav a:hover {
display: none; } }
.lae-container .lae-flex-direction-nav a.lae-flex-prev {
left: -30px; }
.lae-container .lae-flex-direction-nav a.lae-flex-prev:before {
content: "\e900"; }
.lae-container .lae-flex-direction-nav a.lae-flex-next {
right: -30px; }
.lae-container .lae-flex-direction-nav a.lae-flex-next:before {
content: "\e901"; }
.lae-container .lae-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lae-container .lae-flex-control-nav li, .lae-container .lae-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lae-container .lae-flex-control-nav li a, .lae-container .lae-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; }
.lae-dark-bg .lae-container .lae-flex-control-nav li a, .lae-dark-bg .lae-container .lae-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lae-container .lae-flex-control-nav li a.lae-flex-active, .lae-container .lae-flex-control-nav li a:hover.lae-flex-active, .lae-container .lae-flex-control-nav li a:hover {
background: none; }
.lae-container .lae-flex-control-nav li a.lae-flex-active, .lae-container .lae-flex-control-nav li a:hover.lae-flex-active {
width: 14px;
height: 14px; }
.lae-container .lae-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lae-container .lae-flex-control-thumbs {
bottom: -80px; } }
.lae-container .lae-flex-control-thumbs li {
width: auto;
float: none; }
.lae-container .lae-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lae-container .lae-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://baseball888.com/wp-content/plugins/addons-for-elementor-premium/assets/css/ajax-loader.gif) center center no-repeat; }
.lae-container button.slick-prev, .lae-container button.slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.lae-container button.slick-prev, .lae-container button.slick-prev:before, .lae-container button.slick-prev:after, .lae-container button.slick-next, .lae-container button.slick-next:before, .lae-container button.slick-next:after {
text-shadow: none;
background: none !important;
border: none;
padding: 0;
opacity: 1;
font-family: 'lae-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; }
.lae-container button.slick-prev:before, .lae-container button.slick-next:before {
margin: 2px;
vertical-align: middle; }
.lae-container button.slick-prev:hover:before, .lae-container button.slick-prev:hover:after, .lae-container button.slick-next:hover:before, .lae-container button.slick-next:hover:after {
color: #888 !important; }
.lae-dark-bg .lae-container button.slick-prev:before, .lae-dark-bg .lae-container button.slick-prev:after, .lae-dark-bg .lae-container button.slick-next:before, .lae-dark-bg .lae-container button.slick-next:after {
color: #888 !important; }
.lae-dark-bg .lae-container button.slick-prev:hover:before, .lae-dark-bg .lae-container button.slick-prev:hover:after, .lae-dark-bg .lae-container button.slick-next:hover:before, .lae-dark-bg .lae-container button.slick-next:hover:after {
color: #aaa !important;
background: none !important; }
@media only screen and (max-width: 1024px) {
.lae-container button.slick-prev, .lae-container button.slick-next {
display: none !important; } }
.lae-container button.slick-prev {
left: -40px; }
.lae-container button.slick-prev:before {
content: "\e900"; }
.lae-container button.slick-next {
right: -40px; }
.lae-container button.slick-next:before {
content: "\e901"; }
.lae-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lae-container ul.slick-dots li {
margin: 0 8px 0 0 !important;
padding: 0 !important;
display: inline-block;
font-size: 0; }
.lae-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; }
.lae-dark-bg .lae-container ul.slick-dots li button {
background: #888 !important;
border-color: #888 !important; }
.lae-container ul.slick-dots li button:hover, .lae-container ul.slick-dots li.slick-active button {
background: none !important;
border-color: #aaa !important; }
.lae-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lae-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) {
.lae-widget-heading {
font-size: 32px;
line-height: 44px; } } input.lae-button, button.lae-button, a.lae-button, .lae-button:active, .lae-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.lae-button.lae-rounded, button.lae-button.lae-rounded, a.lae-button.lae-rounded, .lae-button:active.lae-rounded, .lae-button:visited.lae-rounded {
border-radius: 999px; }
input.lae-button.lae-large, button.lae-button.lae-large, a.lae-button.lae-large, .lae-button:active.lae-large, .lae-button:visited.lae-large {
padding: 20px 60px; }
input.lae-button.lae-small, button.lae-button.lae-small, a.lae-button.lae-small, .lae-button:active.lae-small, .lae-button:visited.lae-small {
padding: 12px 25px;
font-size: 11px; }
input.lae-button:hover, button.lae-button:hover, a.lae-button:hover, .lae-button:active:hover, .lae-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
.lae-button.lae-black {
background-color: #363636; }
.lae-button.lae-black:hover {
background-color: #434343; }
.lae-button.lae-blue {
background-color: #46a5d5; }
.lae-button.lae-blue:hover {
background-color: #5bafda; }
.lae-button.lae-cyan {
background-color: #57c0dc; }
.lae-button.lae-cyan:hover {
background-color: #6cc8e0; }
.lae-button.lae-green {
background-color: #00a57d; }
.lae-button.lae-green:hover {
background-color: #00bf90; }
.lae-button.lae-orange {
background-color: #e87151; }
.lae-button.lae-orange:hover {
background-color: #eb8368; }
.lae-button.lae-pink {
background-color: #dd5679; }
.lae-button.lae-pink:hover {
background-color: #e16b8a; }
.lae-button.lae-red {
background-color: #da4f49; }
.lae-button.lae-red:hover {
background-color: #de635e; }
.lae-button.lae-teal {
background-color: #28c2ba; }
.lae-button.lae-teal:hover {
background-color: #2fd4cc; }
.lae-button.lae-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lae-button.lae-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lae-button.lae-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lae-button.lae-semitrans:hover {
background-color: #fff;
color: #333 !important; }.lae-team-members {
clear: both; }
.lae-team-members .lae-team-member .lae-social-list {
margin-top: 20px; }
.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item {
display: inline;
margin: 0 15px 0 0; }
.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item i {
color: #999;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item i:hover {
color: #666; }
.lae-team-members .lae-team-member .lae-team-member-details {
font-size: 15px;
line-height: 24px; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-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; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-title-link .lae-title {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-title-link:hover .lae-title {
color: #666; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position {
font-size: 15px;
line-height: 24px;
font-style: italic;
color: #888;
margin-bottom: 10px; } .lae-team-members-style1 .lae-team-member-wrapper {
float: left;
padding: 10px; }
.lae-team-members-style1 .lae-team-member {
max-width: 320px;
margin: 0 auto 40px; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper {
text-align: center;
position: relative; }
.lae-team-members-style1 .lae-team-member .lae-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; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list {
position: absolute;
width: 100%;
top: 40%;
z-index: 2; }
@media only screen and (max-width: 767px) {
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list {
position: relative;
top: 0; } }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-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; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
color: #ccc; }
@media only screen and (max-width: 767px) {
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
color: #999;
opacity: 1; }
.lae-dark-bg .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
color: #888; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
color: #666; }
.lae-dark-bg .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
color: #ccc; } }
.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
@media only screen and (max-width: 767px) {
.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); } }
.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper .lae-social-list i {
opacity: 1; }
.lae-team-members-style1 .lae-team-member .lae-team-member-text {
text-align: center;
max-width: 650px; }
.lae-team-members-style1 .lae-team-member .lae-team-member-text .lae-title {
margin-bottom: 10px; }
.lae-team-members-style1 .lae-team-member .lae-social-list {
margin: 10px auto; } .lae-team-members-style2 {
position: relative;
max-width: 960px; }
.lae-team-members-style2 .lae-team-member-wrapper {
clear: both;
margin-top: 100px; }
.lae-team-members-style2 .lae-team-member-wrapper:first-child {
margin-top: 0; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-image-wrapper {
float: left;
position: relative; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-image-wrapper img {
max-width: 320px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text {
margin: 10px 0 0;
vertical-align: middle;
padding-top: 20px; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-title {
margin-bottom: 5px; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-team-member-details {
margin: 10px 0 10px; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-social-list i {
font-size: 24px; }
.lae-team-members-style2 .lae-team-member-wrapper:hover .lae-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); }
.lae-team-members-style2 .lae-team-member-wrapper:nth-child(odd) .lae-image-wrapper {
margin-right: 50px; }
.lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-image-wrapper {
float: right;
margin-left: 50px; }
.lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-title, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-team-member-position, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-team-member-details, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-social-list {
text-align: right; }
@media only screen and (max-width: 767px) {
.lae-team-members-style2 .lae-team-member-wrapper {
margin-top: 75px; }
.lae-team-members-style2 .lae-team-member .lae-image-wrapper, .lae-team-members-style2 .lae-team-member .lae-team-member-text {
width: 100%;
float: none; }
.lae-team-members-style2 .lae-team-member .lae-image-wrapper {
text-align: center; }
.lae-team-members-style2 .lae-team-member .lae-image-wrapper img {
margin: 0 auto 20px; }
.lae-team-members-style2 .lae-team-member .lae-team-member-text {
max-width: 400px;
margin: 0 auto;
padding-top: 0; }
.lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-title, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-team-member-position, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-team-member-details, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-social-list {
text-align: center !important; } }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-details {
color: #909090; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title, .lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title-link .lae-title {
color: #e5e5e5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title-link:hover .lae-title {
color: #b5b5b5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position {
color: #a5a5a5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-social-list i {
color: #aaa; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-social-list i:hover {
color: #ccc; } .lae-testimonials {
clear: both; }
.lae-testimonials .lae-testimonial {
margin-bottom: 50px; }
.lae-testimonials .lae-testimonial-text {
background: #ffffff;
border: 1px solid #dbdbdb;
border-radius: 30px;
text-align: center;
position: relative;
padding: 20px 20px 0;
margin-bottom: 40px;
font-style: italic;
font-size: 15px;
line-height: 24px;
color: #888;
text-align: center;
max-width: 450px; }
.lae-dark-bg .lae-testimonials .lae-testimonial-text {
color: #666;
background: #eee; }
.lae-testimonials .lae-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; }
.lae-dark-bg .lae-testimonials .lae-testimonial-text:after {
background: #eee; }
.lae-testimonials .lae-testimonial-user {
display: table; }
.lae-testimonials .lae-testimonial-user .lae-image-wrapper {
display: table-cell; }
.lae-testimonials .lae-testimonial-user .lae-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 20px; }
.lae-testimonials .lae-testimonial-user .lae-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lae-dark-bg .lae-testimonials .lae-testimonial-user .lae-text {
color: #909090; }
.lae-testimonials .lae-testimonial-user .lae-text .lae-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; }
.lae-dark-bg .lae-testimonials .lae-testimonial-user .lae-text .lae-author-name {
color: #e5e5e5; } .lae-testimonials-slider {
clear: both;
position: relative; }
.lae-testimonials-slider.lae-container {
max-width: 900px;
margin: 0 auto; }
.lae-testimonials-slider .lae-testimonial-text {
text-align: center;
max-width: 750px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 32px;
font-style: italic;
color: #666; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-text {
color: #ccc; }
.lae-testimonials-slider .lae-testimonial-text i {
color: #ccc;
font-size: 32px;
display: block;
margin-bottom: 35px;
background: none;
width: auto;
height: auto; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-text i {
color: #ddd; }
.lae-testimonials-slider .lae-testimonial-user {
display: table;
margin: 0 auto; }
.lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper {
display: table-cell; }
.lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 15px; }
.lae-testimonials-slider .lae-testimonial-user .lae-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-user .lae-text {
color: #909090; }
.lae-testimonials-slider .lae-testimonial-user .lae-text .lae-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; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-user .lae-text .lae-author-name {
color: #e5e5e5; } .lae-stats-bars {
clear: both; }
.lae-stats-bars .lae-stats-bar {
width: 100%;
display: block;
margin: 0 0 18px;
overflow: hidden; }
.lae-stats-bars .lae-stats-bar .lae-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; }
.lae-stats-bars .lae-stats-bar .lae-stats-title span {
margin-left: 5px; }
.lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-title {
color: #ddd; }
.lae-stats-bars .lae-stats-bar .lae-stats-bar-wrap {
position: relative; }
.lae-stats-bars .lae-stats-bar .lae-stats-bar-content {
background: #e55a54;
display: block;
height: 10px;
width: 0;
position: relative;
z-index: 1;
border-radius: 5px; }
.lae-stats-bars .lae-stats-bar .lae-stats-bar-bg {
width: 100%;
background: rgba(0, 0, 0, 0.1);
height: 10px;
display: block;
margin-top: -10px;
border-radius: 5px; }
.lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-bar-bg {
background: rgba(255, 255, 255, 0.1); } .lae-piecharts {
clear: both; }
.lae-piechart {
position: relative;
text-align: center;
float: left;
overflow: hidden;
float: left;
padding: 10px; }
.lae-piechart canvas {
position: relative;
top: 0;
left: 0;
max-width: 100%;
margin: 0 auto; }
.lae-piechart .lae-label {
text-align: center;
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 55%;
max-width: 65%;
color: #888; }
.lae-dark-bg .lae-piechart .lae-label {
color: #909090; }
.lae-piechart .lae-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; }
.lae-dark-bg .lae-piechart .lae-percentage span {
color: #e5e5e5; }
.lae-piechart .lae-percentage sup {
font-size: 18px;
vertical-align: middle; }
.lae-piechart.dark-bg .lae-label {
color: #fff; }
.lae-piechart.dark-bg .lae-percentage span {
color: #eee; }
@media only screen and (max-width: 479px) {
.lae-piechart canvas {
margin-bottom: 15px; } } .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; } .lae-odometers {
clear: both;
font-size: 0; }
.lae-odometers .lae-odometer {
display: inline-block;
vertical-align: top;
text-align: left;
position: relative;
margin-bottom: 50px; }
.lae-odometers .lae-odometer:last-child:after {
border: none; }
.lae-odometers .lae-odometer .lae-prefix, .lae-odometers .lae-odometer .lae-suffix {
display: inline;
font-size: 36px;
line-height: 48px;
color: #333;
vertical-align: middle; }
.lae-dark-bg .lae-odometers .lae-odometer .lae-prefix, .lae-dark-bg .lae-odometers .lae-odometer .lae-suffix {
color: #e5e5e5; }
.lae-odometers .lae-odometer .lae-prefix {
margin-right: 5px;
margin-left: 5px; }
.lae-odometers .lae-odometer .lae-suffix {
margin-left: 5px; }
.lae-odometers .lae-odometer .lae-number {
font-size: 60px;
line-height: 72px;
font-style: normal;
text-transform: none;
letter-spacing: 2px;
font-weight: 900;
color: #333;
margin-bottom: 10px; }
.lae-odometers .lae-odometer .lae-number span {
font-size: 60px; }
.lae-dark-bg .lae-odometers .lae-odometer .lae-number {
color: #e5e5e5; }
.lae-odometers .lae-odometer .lae-stats-title {
font-size: 18px;
line-height: 28px;
display: inline-block;
color: #888; }
.lae-dark-bg .lae-odometers .lae-odometer .lae-stats-title {
color: #909090; }
.lae-odometers .lae-odometer .lae-stats-title span {
float: left;
margin-right: 15px; }
.lae-odometers .lae-odometer .lae-stats-title .lae-icon-wrapper {
font-size: 32px;
margin-right: 10px;
vertical-align: middle;
color: #ccc; }
@media only screen and (max-width: 960px) {
.lae-odometers .lae-odometer .lae-number {
font-size: 48px;
line-height: 56px;
margin-bottom: 0; }
.lae-odometers .lae-odometer .lae-number span {
font-size: 48px; }
.lae-odometers .lae-odometer .lae-stats-title {
font-size: 15px;
line-height: 26px; } }
@media only screen and (max-width: 479px) {
.lae-odometers .lae-odometer {
text-align: center; } } .lae-pricing-table {
clear: both; }
.lae-pricing-table .lae-pricing-plan {
float: left;
padding: 10px; }
.lae-center {
text-align: center; }
.lae-pricing-table {
padding: 0; }
.lae-pricing-table .lae-top-header {
padding: 15px 0;
background-color: #494949;
border-bottom: 1px solid #2c2b2b; }
.lae-pricing-table .lae-top-header .lae-plan-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: 20px;
line-height: 32px;
color: #fefefe;
margin: 0; }
.lae-pricing-table .lae-top-header img {
margin-top: 15px; }
.lae-pricing-table .lae-top-header .lae-tagline {
display: block;
font-size: 15px;
line-height: 24px;
color: #EDEDED;
text-transform: none;
text-align: center;
margin-bottom: 5px; }
.lae-pricing-table .lae-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; }
.lae-pricing-table .lae-pricing-plan:hover .lae-purchase {
background: #e5e5e5; }
.lae-pricing-table .lae-pricing-plan .lae-plan-price {
color: #fff;
font-size: 22px;
line-height: 28px;
font-weight: 700;
margin: 0; }
.lae-pricing-table .lae-pricing-plan .lae-plan-price span {
font-size: 22px;
line-height: 32px; }
.lae-pricing-table .lae-plan-header {
padding: 30px 0 30px;
background-color: #494949; }
.lae-pricing-table .lae-plan-price .lae-text {
display: inline-block;
padding: 6px 25px;
border-radius: 25px;
background: #2C2B2B; }
.lae-pricing-table .lae-plan-price sup {
font-size: 18px;
line-height: 32px;
vertical-align: top;
margin-right: 2px;
position: static; }
.lae-pricing-table .lae-plan-details {
padding: 15px 0;
margin: 0;
border: 1px solid #eee; }
.lae-pricing-table .lae-plan-details .lae-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; }
.lae-pricing-table .lae-plan-details .lae-pricing-item i {
color: #777;
font-size: 18px;
display: inline;
margin-right: 8px; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-title {
color: #838383;
margin-bottom: 10px; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap {
display: block; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap:after {
position: relative;
content: "";
background: #ddd;
width: 120px;
height: 1px;
display: block;
margin: 12px auto 0; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value {
color: #444;
font-size: 24px;
line-height: 32px;
display: inline; }
.lae-pricing-table .lae-plan-details .lae-pricing-item s {
color: #b4c9d3; }
.lae-pricing-table .lae-plan-details .lae-pricing-item:last-child .lae-value-wrap:after {
display: none; }
.lae-pricing-table .lae-purchase {
text-align: center;
text-transform: uppercase;
padding: 15px;
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; }
.lae-pricing-table .lae-purchase a {
padding: 12px 25px;
border-radius: 5px;
letter-spacing: 0;
font-size: 16px;
line-height: 24px;
letter-spacing: 6px;
font-weight: bold; }
.lae-pricing-table .lae-pricing-plan.lae-highlight {
background: #f5f5f5;
margin-top: -10px; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-plan-details {
border-color: #e5e5e5; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-top-header {
padding: 20px 0; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-pricing-table .lae-top-header .lae-plan-name {
color: #28c2ba; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-purchase {
padding: 20px 0;
background-color: #e5e5e5;
border-color: #ddd; }  .lae-services {
clear: both; }
.lae-services .lae-service {
margin-bottom: 50px; }
.lae-services .lae-service .lae-icon-wrapper span {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lae-services .lae-service .lae-icon-wrapper span:hover {
color: #555; }
.lae-dark-bg .lae-services .lae-service .lae-icon-wrapper span:hover {
color: #d5d5d5; }
.lae-services .lae-service .lae-service-text {
font-size: 15px;
line-height: 24px; }
.lae-dark-bg .lae-services .lae-service .lae-service-text {
color: #909090; }
.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title {
color: #e5e5e5; }
.lae-services .lae-service .lae-service-text .lae-title-link .lae-title {
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
.lae-services .lae-service .lae-service-text .lae-title-link:hover .lae-title {
color: #666; }
.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title-link:hover .lae-title {
color: #c5c5c5; } .lae-services-style1 .lae-service .lae-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;
color: #888; }
.lae-dark-bg .lae-services-style1 .lae-service .lae-icon-wrapper span {
color: #a5a5a5; }
.lae-dark-bg .lae-services-style1 .lae-service .lae-icon-wrapper span:hover {
color: #c5c5c5; }
.lae-services-style1 .lae-service .lae-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; }
.lae-services-style1 .lae-service .lae-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lae-services-style1 .lae-service .lae-service-text .lae-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; }
.lae-services-style1 .lae-service:hover .lae-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lae-services-style2 .lae-service .lae-image-wrapper img, .lae-services-style2 .lae-service .lae-icon-wrapper span {
float: left;
margin-right: 18px;
color: #888; }
.lae-dark-bg .lae-services-style2 .lae-service .lae-image-wrapper img, .lae-dark-bg .lae-services-style2 .lae-service .lae-icon-wrapper span {
color: #a5a5a5; }
.lae-dark-bg .lae-services-style2 .lae-service .lae-image-wrapper img:hover, .lae-dark-bg .lae-services-style2 .lae-service .lae-icon-wrapper span:hover {
color: #c5c5c5; }
.lae-services-style2 .lae-service .lae-icon-wrapper span {
font-size: 24px;
line-height: 32px; }
.lae-services-style2 .lae-service .lae-service-text .lae-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; } .lae-services-style3 .lae-service .lae-icon-wrapper span {
display: block;
text-align: left;
font-size: 80px;
line-height: 1;
margin-bottom: 25px;
color: #555; }
.lae-services-style3 .lae-service .lae-icon-wrapper span:hover {
color: #888; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper span {
color: #c5c5c5; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper span:hover {
color: #e5e5e5; }
.lae-services-style3 .lae-service .lae-image-wrapper img {
display: block;
max-width: 100%;
text-align: left;
margin-bottom: 25px; }
.lae-services-style3 .lae-service .lae-service-text {
text-align: left;
max-width: 300px;
margin: 0;
font-size: 14px;
line-height: 32px;
color: #888; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list {
padding: 0;
margin: 0;
border: none; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li {
border-bottom: 1px solid #eee;
position: relative;
padding: 0;
margin: 0;
list-style: none;
line-height: 42px; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:hover {
padding: 0; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li {
border-color: #333; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
font-family: 'lae-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; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
color: #606060; }
.lae-services-style3 .lae-service .lae-service-text .lae-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; } .lae-posts-carousel {
clear: both;
max-width: none; }
@media only screen and (min-width: 1024px) {
.lae-posts-carousel {
max-width: 96%; } }
.lae-posts-carousel .lae-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; }
.lae-posts-carousel .lae-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); }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image {
position: relative;
overflow: hidden; }
.lae-posts-carousel .lae-posts-carousel-item .lae-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%; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info {
display: block;
text-align: center; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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%); }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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) {
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title {
font-size: 18px;
line-height: 26px; } }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title a:hover {
border-bottom: 2px solid #ccc; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms a:hover {
color: #fff; }
.lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-post-title, .lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-terms {
opacity: 1; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 0 auto;
padding: 25px 15px; }
.lae-posts-carousel .lae-posts-carousel-item .lae-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; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:after, .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:before {
display: none; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a {
color: #333333;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a:hover {
color: #888; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:last-child:after {
display: none; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary {
padding: 0;
margin: 10px auto 0; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after {
text-align: center;
margin: 10px auto 10px; }
.lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list a {
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel .lae-posts-carousel-item .type-post .lae-entry-text-wrap .entry-summary:before {
display: none; } .lae-clients {
clear: both;
overflow: hidden;
margin: 0 auto; }
@media (max-width: 479px) {
.lae-clients .lae-grid-mobile-1 .lae-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-1 .lae-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-2 .lae-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-2 .lae-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-3 .lae-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-3 .lae-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-4 .lae-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-4 .lae-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-5 .lae-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-5 .lae-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-6 .lae-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-6 .lae-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media (min-width: 480px) and (max-width: 800px) {
.lae-clients .lae-grid-tablet-1 .lae-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-1 .lae-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-2 .lae-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-2 .lae-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-3 .lae-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-3 .lae-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-4 .lae-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-4 .lae-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-5 .lae-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-5 .lae-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-6 .lae-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-6 .lae-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media only screen and (min-width: 801px) {
.lae-clients .lae-grid-desktop-1 .lae-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-1 .lae-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-2 .lae-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-2 .lae-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-3 .lae-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-3 .lae-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-4 .lae-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-4 .lae-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-5 .lae-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-5 .lae-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-6 .lae-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-6 .lae-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
.lae-clients .lae-client {
position: relative;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
overflow: hidden; }
.lae-dark-bg .lae-clients .lae-client {
border-color: #505050 !important; }
.lae-clients .lae-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; }
.lae-clients .lae-client .lae-client-name {
position: absolute;
z-index: 2;
top: 50%;
left: 0;
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; }
.lae-clients .lae-client .lae-client-name a {
color: #fff;
text-decoration: none; }
.lae-clients .lae-client .lae-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; }
.lae-clients .lae-client:hover .lae-image-overlay {
opacity: 0.7; }
.lae-dark-bg .lae-clients .lae-client:hover .lae-image-overlay {
opacity: 0.8; }
.lae-clients .lae-client:hover .lae-client-name {
opacity: 1; } .lae-carousel .lae-carousel-item {
position: relative; }
.lae-carousel.lae-container {
max-width: none; } input.lae-button.lae-with-icon span, input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon span, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon span, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active span, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited span, .lae-button.lae-with-icon:visited img.lae-thumbnail {
margin-right: 15px; }
input.lae-button.lae-with-icon span, button.lae-button.lae-with-icon span, a.lae-button.lae-with-icon span, .lae-button.lae-with-icon:active span, .lae-button.lae-with-icon:visited span {
color: #fff;
font-size: 24px;
vertical-align: middle;
line-height: 1; }
input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited img.lae-thumbnail {
display: inline !important;
vertical-align: middle;
max-width: 50px; } .lae-heading {
text-align: center;
margin: 0 auto 60px;
max-width: 640px; }
@media only screen and (max-width: 767px) {
.lae-heading {
margin-bottom: 40px; } }
.lae-heading .lae-text {
font-size: 18px;
line-height: 28px;
margin: 0 auto; }
@media only screen and (max-width: 767px) {
.lae-heading .lae-text {
font-size: 15px;
line-height: 26px; } }
.lae-heading.lae-alignleft, .lae-heading.lae-alignright {
margin: 0; }
.lae-heading.lae-alignleft .lae-text, .lae-heading.lae-alignright .lae-text {
margin: 0; }
.lae-heading.lae-alignleft {
text-align: left; }
.lae-heading.lae-alignright {
text-align: right;
max-width: none; }
.lae-heading .lae-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) {
.lae-heading .lae-title {
font-size: 24px;
line-height: 32px; } }
.lae-dark-bg .lae-heading .lae-title {
color: #e5e5e5; }
.lae-dark-bg .lae-heading .lae-subtitle {
color: #B0B0B0; }
.lae-dark-bg .lae-heading .lae-text {
color: #909090; }
.lae-heading.lae-alignleft .lae-title, .lae-heading.lae-alignright .lae-title {
margin: 0 0 20px; }
.lae-heading .lae-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) {
.lae-heading .lae-subtitle {
font-size: 11px;
line-height: 18px; } }
.lae-heading.lae-alignleft .lae-subtitle, .lae-heading.lae-alignright .lae-subtitle {
margin: 0 0 5px;
padding: 0; }
.lae-heading.lae-alignleft .lae-subtitle:before, .lae-heading.lae-alignleft .lae-subtitle:after, .lae-heading.lae-alignright .lae-subtitle:before, .lae-heading.lae-alignright .lae-subtitle:after {
display: none; }
.lae-heading.lae-style3 {
margin: 0 auto 30px; }
.lae-heading.lae-style3 .lae-title {
font-size: 22px;
line-height: 32px;
text-transform: uppercase;
letter-spacing: 1px; }
.lae-heading.lae-style3 .lae-title:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lae-heading.lae-style3 .lae-title:after {
margin: 10px auto 20px; }
.lae-dark-bg .lae-heading.lae-style3 .lae-title:after {
background: #909090; }
@media only screen and (max-width: 767px) {
.lae-heading.lae-style3 .lae-title {
font-size: 16px;
line-height: 24px; } }
.lae-heading.lae-style3.lae-alignleft, .lae-heading.lae-style3.lae-alignright {
margin: 0 0 30px; }
.lae-heading.lae-style3.lae-alignleft .lae-title:after, .lae-heading.lae-style3.lae-alignright .lae-title:after {
margin: 10px 0 20px; } .lae-portfolio-wrap {
clear: both;
overflow: hidden; }
.lae-portfolio-wrap .lae-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; }
.lae-portfolio-wrap .lae-portfolio-header.lae-no-heading {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
@media only screen and (max-width: 800px) {
.lae-portfolio-wrap .lae-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; } }
.lae-portfolio-wrap .lae-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; }
.lae-dark-bg .lae-portfolio-wrap .lae-heading {
color: #e5e5e5; }
@media only screen and (max-width: 800px) {
.lae-portfolio-wrap .lae-heading {
margin-bottom: 30px; } }
.lae-portfolio-wrap .lae-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) {
.lae-portfolio-wrap .lae-taxonomy-filter {
-webkit-align-self: flex-start;
align-self: flex-start;
-ms-flex-item-align: start; } }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item {
position: relative;
display: inline-block;
margin: 0 0 15px 0;
padding: 0;
font-style: normal;
border-bottom: 1px solid #ddd; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item {
border-color: #444; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-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; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
color: #999; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a:hover {
color: #222; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a:hover {
color: #fff; }
@media only screen and (max-width: 479px) {
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
padding: 0 10px 8px; } }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a {
color: #222; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a {
color: #fff; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
border-bottom: 3px solid #f94213;
width: 100%; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item:last-child {
margin-right: 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .hentry {
margin: 0;
padding: 0;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image {
position: relative;
overflow: hidden; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image img {
display: block;
width: 100%;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info {
display: block;
text-align: center; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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%); }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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) {
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title {
font-size: 18px;
line-height: 26px; } }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title a:hover {
border-bottom: 1px solid #ccc; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms a:hover {
color: #fff; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info .lae-post-title, .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info .lae-terms {
opacity: 1; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 20px auto 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title {
font-size: 18px;
line-height: 26px;
font-weight: normal;
margin-bottom: 10px; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:after, .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:before {
display: none; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
color: #333; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover {
color: #888; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a {
color: #e0e0e0; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover {
color: #fff; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:last-child:after {
display: none; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span {
color: #707070; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary {
margin: 15px auto 0;
padding: 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary {
color: #999; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before {
background: #505050; }.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var( --container-widget-align-self,initial );--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer,.e-con>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{min-height:22px;min-width:22px;position:relative}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{height:22px;inset:0;margin:auto;padding:0;position:absolute;width:22px}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}