@charset "UTF-8";
 .animated-3s {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated {
-webkit-animation-duration: 0.6s;
animation-duration: 0.6s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
-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 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;
} * {
margin: 0px;
padding: 0px;
}
body {
background: #FFF;
font-weight: normal;
position: relative;
font-size: 14px;
font-family: 'Raleway', sans-serif;
} #wrap {
position: relative;
width: 100%;
overflow: hidden;
} h1, h2, h3, h4, h5, h6 {
font-weight: normal;
color: #252525;
font-family: 'Raleway', sans-serif;
font-weight: bold;
letter-spacing: 0.5px;
text-transform: uppercase;
}
h1 {
font-size: 42px;
}
h2 {
font-size: 36px;
}
h3 {
font-size: 30px;
}
h4 {
font-size: 22px;
}
h5 {
font-size: 18px;
}
h6 {
font-size: 16px;
font-weight: bold;
}
p {
font-family: inherit;
font-weight: 400;
color: #6f6f6f;
line-height: 24px;
text-rendering: optimizeLegibility;
}
a {
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
text-decoration: none !important;
}
img {
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
display: inline-block !important;
}
ul {
margin-bottom: 0px;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: #141414;
}
.font-raleway {
font-family: 'Raleway', sans-serif;
}
.font-roboto {
font-family: 'Roboto', sans-serif;
}
.font-ubuntu {
font-family: 'Ubuntu';
}
p.intro-small {
font-style: italic;
color: #f5f5f5;
width: 80%;
margin: 0 auto;
}
.text-transform-none {
text-transform: none !important;
}
.text-white {
color: #fff !important;
}
.text-bold {
font-weight: bold !important;
}
.text-normal {
font-weight: normal !important;
}
.font-12px {
font-size: 12px !important;
}
.font-14px {
font-size: 14px !important;
}
.font-16px {
font-size: 16px !important;
}
.font-18px {
font-size: 18px !important;
}
.font-20px {
font-size: 20px !important;
}
.font-bold {
font-weight: bold !important;
}
.font-normal {
font-weight: normal !important;
}
.white-text {
color: #fff !important;
}
.font-italic {
font-style: italic;
}
.font-bold {
font-weight: bold !important;
}
a:hover, a:focus {
color: #F66605;
}
.primary-color {
color: #F66605 !important;
}
.primary-color-2 {
color: #ffc107 !important;
}
.border-bottom-1 {
border-bottom: 1px solid #ededed;
}
.position-center-center {
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.white-bg {
background: #fff !important;
}
.relative {
position: relative;
}
.line-height-24 {
line-height: 24px !important;
}
.line-height-22 {
line-height: 22px !important;
}
.line-height-26 {
line-height: 26px !important;
}
.dark-text p {
color: #141414;
}
.light-gray-bg {
background: #f6f7f8 !important;
}
.customcolor1 {
color: #448aff;
} .btn {
border: none;
color: #fff;
display: inline-block;
padding: 11px 30px;
//padding-top: 10px;
border-radius: 0px;
text-transform: uppercase;
font-weight: bold;
font-family: 'Raleway', sans-serif;
font-size: 12px;
background: #3a3a3a;
letter-spacing: 1.5px;
border: 2px solid #3a3a3a;
}
.subcribe .btn{
border: 2px solid #fff; 
}
.btn:hover {
background: #F66605;
color: #fff;
border: 2px solid #F66605;
}
.btn-blank {
background: none;
border-color: #fff;
}
.btn-blank:hover {
background: #F66605;
}
.btn-yellow {
background: #ffc107;
color: #333333;
border: none;
}
.btn-yellow:hover {
background: #344248;
color: #fff;
}
.btn-blue {
background: #ffbe00;
color: #fff;
font-size: 13px;
border: none;
}
.btn-blue:hover {
background: #344248;
color: #fff;
border-color: #344248;
}
.btn-white {
border: 2px solid #fff;
color: #fff;
background: none;
}
.btn-white:hover {
background: #fff;
color: #4c4f5e;
border-color: #fff;
}
.parallax-bg {
background-size: cover !important;
}
section {
position: relative;
overflow: hidden;
width: 100%;
background: #fff;
}
.text-shadow {
text-shadow: 3px 0px 5px rgba(0,0,0,0.5);
}
.text-shadow-1 {
text-shadow: 2px 3px 0 rgba(0,0,0,0.5);
} .heading {
margin: 0 auto;
margin-bottom: 60px;
}
.heading span {
color: #8a8a8a;
font-weight: normal;
font-style: italic;
letter-spacing: 1px;
font-family: 'Ubuntu';
line-height: 32px;
width: 80%;
font-size: 16px;
margin: 0 auto;
display: inline-block;
}
.heading h3 {
font-size: 32px;
margin: 0px;
font-family: 'Roboto', sans-serif;
margin-top: 0px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.heading hr {
width: 80px;
height: 2px;
border: none;
margin: 30px auto;
background: #3a3a3a;
}
hr.main {
width: 50px;
height: 3px;
border: none;
margin: 15px 0;
background: #F66605;
}
.heading p {
font-size: 15px;
line-height: 24px;
color: #777777;
width: 65%;
margin: 0 auto;
letter-spacing: 1px;
}
.heading.white h3 {
color: #fff;
}
.heading.white span {
color: #fff;
}
.heading.white hr {
background: #fff;
} .top-bar {
}
.top-info:before {
content: "";
position: absolute;
left: 0px;
width: 30%;
height: 46px;
background: #fff url(//maisa.mx/wp-content/themes/acerill/images/top-bar.png) right top no-repeat;
}
.top-info {
display: inline-block;
width: 100%;
float: left;
border-top: 5px solid #141414;
background: #141414;
height: 45px;
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.top-info .personal-info {
color: #999999;
float: left;
}
.top-info .personal-info p {
color: #999999;
margin: 0px;
font-family: 'Ubuntu';
font-size: 10px;
}
.top-info .personal-info li {
display: inline-block;
border-right: 1px solid rgba(255,255,255,0.2);
padding: 8px 20px;
}
.top-info .personal-info li i {
margin-right: 5px;
}
.top-info .social {
float: right;
margin: 0px;
padding: 0px;
border-left: 1px solid rgba(255,255,255,0.2);
}
.top-info .social li {
float: left;
display: inline-block;
margin: 0px;
padding: 0px;
}
.top-info .social li a {
border-right: 1px solid rgba(255,255,255,0.2);
width: 40px;
height: 35px;
line-height: 35px;
padding: 0px;
display: inline-block;
text-align: center;
color: #aaaaaa;
}
.top-info .social li a:hover {
color: #fff;
background: #F66605;
} header {
position: relative;
width: 100%;
z-index: 9999;
background: #fff;
}
header .navbar {
background: #3a3a3a;
border: none;
margin: 0px;
padding: 0px;
border-radius: 0px;
text-align: center;
width: 100%;
float: left;
}
header .logo {
float: left;
position: relative;
}
header .logo a {
margin-top: 1px;
margin-bottom: 1px;
display: inline-block;
}
header .logo img {
z-index: 3;
position: relative;
}
header .ownmenu {
float: left;
padding: 5px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
}
header .navbar {
display: inline-block;
}
header .navbar li {
display: inline-block;
float: left;
position: relative;
margin: 0 5px;
}
header .navbar li a {
float: left;
font-family: 'Raleway', sans-serif;
font-size: 13px;
color: #fff;
padding: 25px 12px;
letter-spacing: 0.5px;
font-weight: 600;
text-transform: uppercase;
}
.nav>li>a:focus, .nav>li>a:hover {
background: #F66605;
}
header .navbar li a:hover {
}
header .navbar li a:before {
position: absolute;
height: 10px;
width: 0;
margin: 0 auto;
top: 0px;
left: 0px;
right: 0px;
content: "";
background: #F66605;
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-ms-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
header .navbar li a:hover:before {
width: 100%;
}
header .navbar li.active a:before {
width: 100%;
}
header .quotes {
float: right;
}
header .quotes a {
font-size: 18px;
color: #fff;
display: inline-block;
padding: 0px 30px;
text-transform: uppercase;
background: #F66605;
color: #fff;
float: right;
font-weight: 500;
height: 68px;
font-family: 'Roboto', sans-serif;
line-height: 68px;
display: inline-block;
}
header .quotes a i {
margin-right: 10px;
}
header .quotes a:hover {
background: #141414;
color: #fff;
}
.ownmenu ul.dropdown {
background: #141414;
padding: 0px;
}
.ownmenu ul.dropdown li {
margin: 0px;
}
.ownmenu ul.dropdown li {
position: relative;
z-index: 2;
}
.ownmenu ul.dropdown li a {
z-index: 1;
position: relative;
}
.ownmenu ul.dropdown li a:before {
background: #F66605;
content: "";
width: 0px;
height: 100%;
top: 0px;
margin:0px;
z-index: -1;
left: 0px;
}
.ownmenu ul.dropdown li a:hover:before {
width: 100%;
}
.ownmenu ul.dropdown li a {
padding: 0px 20px;
font-size: 12px;
line-height: 40px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-info-con {
float: right;
width: 70%;
padding-top: 30px;
background: #fff;
position: relative;
z-index: 3;
text-align: right;
}
.top-info-con ul {
display: inline-block;
}
.top-info-con ul li {
display: inline-block;
width: 35%;
text-align: left;
margin-right: 20px;
}
.top-info-con ul li.fst {
width: 50%;
border: none;
}
.top-info-con ul li:nth-last-child(1) {
margin: 0px;
}
.top-info-con li a {
font-size: 13px;
text-transform: uppercase;
font-weight: 400;
font-family: 'Roboto', sans-serif;
}
.top-info-con .icon {
height: 51px;
width: 51px;
border: 6px solid #F66605;
color: #3a3a3a;
text-align: center;
line-height: 51px;
display: inline-block;
border-radius: 50%;
font-size: 18px;
}
.top-info-con h5 {
font-weight: 600;
color: #222222;
margin-top: 10px;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 4px;
letter-spacing: 1px;
} .sub-bnr {
background: url(//maisa.mx/wp-content/themes/acerill/images/sub-bnr-bg.jpg) no-repeat;
background-size: cover !important;
min-height: 350px;
text-align: center;
position: relative;
}
.sub-bnr h4 {
color: #fff;
font-size: 38px;
font-weight: 600;
font-family: 'Roboto', sans-serif;
letter-spacing: 1.5px;
margin: 0px;
margin-bottom: 60px;
text-transform: uppercase;
}
.sub-bnr hr {
margin: 20px auto;
}
.sub-bnr img {
position: absolute;
top: -55%;
left: 0px;
right: 0px;
margin: 0 auto;
z-index: -1;
}
.sub-bnr .breadcrumb {
background: none;
margin: 0px;
padding: 0px;
}
.sub-bnr h6 {
display: inline-block;
color: #fff;
font-weight: 500;
font-size: 16px;
float: left;
line-height: 58px;
margin: 0px;
letter-spacing: 1px;
}
.sub-bnr .breadcrumb li {
color: #fff;
letter-spacing: 1px;
text-transform: none;
color: #F66605;
line-height: 58px;
font-size: 16px;
font-weight: normal;
font-family: 'Ubuntu';
font-size: 13px;
}
.sub-bnr .breadcrumb li a {
color: #fff;
text-transform: none;
color: #F66605;
font-size: 16px;
font-weight: normal;
font-family: 'Ubuntu';
font-size: 13px;
}
.sub-bnr .breadcrumb>li+li:before {
color: #F66605;
}
.bread {
position: absolute;
bottom: 0px;
width: 100%;
left: 0px;
height: 58px;
background: rgba(0,0,0,0.5);
} .welcome p {
font-size: 15px;
line-height: 28px;
}
.welcome {
}
.welcome article {
position: relative;
overflow: hidden;
}
.welcome .infro-con {
position: absolute;
background: rgba(80,80,80,0.90);
height: 105px;
width: 100%;
z-index: 5;
bottom: 50px;
width: 80%;
right: 0px;
overflow: hidden;
padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 20px;
border-left: 2px solid #F66605;
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-ms-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.welcome article:hover .infro-con {
height: auto;
}
.welcome .infro-con h5 {
margin-bottom: 2px;
color: #F66605;
font-weight: normal;
}
.welcome .infro-con span {
font-style: italic;
font-family: 'Ubuntu';
font-size: 15px;
color: #fff;
margin-bottom: 35px;
display: inline-block;
}
.welcome .infro-con p {
color: #fff;
font-family: 'Ubuntu';
}
.welcome .infro-con .number {
font-size: 20px;
display: inline-block;
padding: 15px 70px;
color: #fff;
margin-top: 20px;
font-weight: bold;
background: #F66605;
border-radius: 50px;
margin-right: 30px;
} .promos {
background: #3a3a3a;
height: auto;
}
.promos p {
font-size: 17px;
color: #F66605;
}
.promos h4 {
margin-top: 0px;
margin-bottom: 20px;
letter-spacing: 2px;
color: #F66605;
font-weight:600;
}  .services .icon {
display: inline-block;
width: 95px;
}
.services article {
background: #1f1f1f;
padding: 40px 30px;
padding-top: 40px;
border-radius: 4px;
border: 1px solid #F66605;
margin-bottom: 30px;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
min-height: 150px;
}
.services.style-2 article {
background: none;
}
.services article:hover {
border: 1px solid #3a3a3a;
}
.services li article p {
color: #999999;
font-size: 14px;
line-height: 24px;
margin: 0px;
}
.services h6 {
color: #F66605;
font-size: 18px;
margin-top: 5px;
letter-spacing: 1px;
font-weight: 600;
margin-bottom: 10px;
} .req-quote {
background: #f6f7f8;
}
.quote-img {
margin-left: -120px;
}
.req-quote form li {
margin-top: 20px;
}
.req-quote form li label {
width: 100%;
display: inline-block;
font-weight: normal;
color: #fff;
font-size: 15px;
font-family: 'Ubuntu';
font-style: italic;
}
.req-quote li input {
width: 100%;
border: 1px solid #e4e4e4;
color: #777777;
}
.req-quote form li .form-control {
border-radius: 0px;
height: 40px;
border-radius: 0px;
padding: 0 20px;
color: #777777;
margin-top: 10px;
letter-spacing: 1px;
border-radius: 4px;
border: 1px solid #e4e4e4;
}
.req-quote form li textarea {
height: 150px !important;
border: 1px solid #e4e4e4;
padding: 10px 15px !important;
font-family: 'Ubuntu';
font-style: italic;
}
.req-quote h4 {
font-weight: normal;
margin-top: 13px;
font-size: 28px;
letter-spacing: 1px;
}
.req-quote select {
width: 100%;
}
.req-quote h4 {
font-weight: bold;
font-size: 26px;
}
.req-quote p {
}
.req-quote .btn {
background: #3a3a3a;
float: right;
border: none;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
border: 2px solid #3a3a3a;
}
.req-quote .btn:hover {
background: #F66605;
border: 2px solid #F66605;
}
.req-quote .radio {
width: 10%;
padding: 0px;
margin: 0px;
display: inline-block;
padding-left: 20px;
margin-right: 20px;
margin-top: 10px;
}
.req-quote .heading {
margin-bottom: 10px;
}
.req-quote .heading span {
font-style: normal;
}
.qoute-img {
position: relative;
z-index: 8;
} .section-full {
background: #f6f6f6;
}
.section-full li.bg {
background: url(//maisa.mx/wp-content/themes/acerill/images/ser-bg.jpg) no-repeat;
background-size: cover;
}
.some-latest.section-full li article {
padding: 50px;
}
.some-latest.section-full li h3 {
margin-top: 0px;
}
.section-full li.bg h3 {
color: #fff;
}
.section-full li.bg p {
color: #fff;
} .why-choose {
}
.why-choose .icon {
height: 65px;
width: 65px;
font-size: 30px;
border-radius: 50%;
background: #f0f0f0;
text-align: center;
line-height: 60px;
display: inline-block;
color: #F66605;
margin-right: 10px;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
}
.why-choose li {
margin-bottom: 30px;
}
.why-choose li:hover .icon {
background: #222222;
}
.why-choose h6 {
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
margin-top: 10px;
margin-bottom: 20px;
}
.why-choose p {
font-family: 'Ubuntu';
font-size: 14px;
line-height: 28px;
font-weight: normal;
}
.gallery {
background: url(//maisa.mx/wp-content/themes/acerill/images/gallery-bg.jpg) no-repeat;
background-size: cover;
}
.over-hover {
position: absolute;
top: 0px;
}
.gallery .owl-controls {
text-align: center;
}
.gallery .owl-nav {
color: #fff;
text-align: center;
border: 1px solid #fff;
display: inline-block;
}
.gallery .owl-nav div {
display: inline-block;
padding: 5px 20px;
}
.gallery .owl-dots {
display: none;
} .some-latest {
background: #f6f6f6;
float:left;
}
.some-latest li {
padding: 0px;
}
.some-latest li article {
padding: 10px 40px;
padding-top: 30px;
}
.some-latest li p {
font-family: 'Ubuntu';
font-size: 15px;
line-height: 32px;
}
.some-latest li h3 {
float: left;
font-size: 28px;
font-weight: 600;
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
.some-latest li span {
font-size: 15px;
color: #F66605;
letter-spacing: 1px;
margin-top: 10px;
margin-bottom: 10px;
display: inline-block;
font-weight: 600;
text-transform: uppercase;
} .shipper {
background: #3a3a3a;
margin-top: -50px;
}
.shipper .ship {
background: url(//maisa.mx/wp-content/themes/acerill/images/sender-img.jpg) no-repeat;
background-size: cover;
}
.shipper h4 {
color: #fff;
margin-bottom: 20px;
}
.shipper p {
color: #fff;
font-size: 17px;
}
.shipper .orr {
height: 74px;
width: 74px;
border-radius: 50%;
text-align: center;
border: 4px solid rgba(255,255,255,0.3);
line-height: 66px;
font-weight: bold;
background: #222222;
color: #fff;
position: absolute;
left: 0px;
right: 0px;
margin: 0 auto;
top: 50%;
margin-top: -30px;
font-size: 21px;
} .process {
position: relative;
}
.process:before {
position: absolute;
left: 0px;
width: 80%;
content: "";
border-top: 1px dashed #e1e1e1;
height: 2px;
margin: 0 auto;
top: 20px;
right: 0px
}
.process li:hover span {
background: #4c4f5e;
}
.process li:hover .icon {
border: 2px solid #4c4f5e;
}
.process li {
text-align: center;
position: relative;
z-index: 1;
}
.process .icon {
height: 123px;
width: 123px;
display: inline-block;
border: 2px solid #F66605;
border-radius: 50%;
line-height: 120px;
background: #f9f9f9;
margin-bottom: 20px;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
}
.process .bar {
margin-top: 50px;
}
.process .bar h6 {
color: #444444;
font-size: 14px;
}
.process .bar:before {
position: absolute;
left: 0px;
width: 1px;
content: "";
border-left: 1px dashed #e1e1e1;
height: 50%;
margin: 0 auto;
top: 0px;
right: 0px;
z-index: -1;
}
.process li span {
height: 44px;
width: 44px;
text-align: center;
color: #fff;
display: inline-block;
border-radius: 50%;
background: #F66605;
line-height: 40px;
border: 2px solid #d6d7da;
font-weight: bold;
font-size: 14px;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
transition: 0.4s ease-in-out;
}
iframe.video {
border: none;
width: 100%;
height: 350px;
}
.best-one p {
font-size: 15px;
line-height: 28px;
}
.best-one ul {
margin-top: 50px;
}
.best-one ul li {
position: relative;
padding-left: 20px;
background: url(//maisa.mx/wp-content/themes/acerill/images/list-icon.jpg) center left no-repeat;
}
.best-one ul li:before {
position: absolute;
left: 0px;
} .latest-work {
background: url(//maisa.mx/wp-content/themes/acerill/images/bg/bg-portfolio.jpg) no-repeat;
background-size: cover;
}
.portfolio-wrapper {
position: relative;
}
.latest-work .filter {
display: inline-block;
width: 100%;
position: absolute;
top: -110px;
right: 0px;
text-align: right;
}
.latest-work .filter li {
display: inline-block;
}
.latest-work .filter li {
color: #fff;
margin-right: 10px;
}
.latest-work .filter li a {
color: #fff;
font-weight: 400;
line-height: 22px;
font-size: 15px;
padding: 10px 10px;
}
.latest-work .filter li:nth-last-child(1) {
margin-right: 0px;
}
.latest-work .filter li:nth-last-child(1) a {
padding-right: 0px;
}
.latest-work .filter li a:hover {
color: #ffc107
}
.latest-work .filter li a.active {
color: #ffc107
}
.latest-work .items.row {
margin: 0 -5px;
}
.latest-work .col-4 .item {
width: 25%;
padding: 5px;
}
.gal-item .hover-info {
position: absolute;
background: rgba(0,0,0,0.8);
z-index: 9;
opacity: 0;
height: 100%;
width: 100%;
top: 0px;
padding: 20px;
overflow: hidden;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.gal-item .hover-info h6 {
font-weight: bold;
color: #fff;
margin: 0px;
margin-bottom: 6px;
font-size: 14px;
letter-spacing: 1px;
}
.gal-item .hover-info p {
color: #F66605;
margin: 0px;
font-size: 13px;
}
.gal-item .hover-info a {
color: rgba(255,255,255,0.9);
font-size: 14px;
opacity: 0.6;
height: 44px;
width: 44px;
margin: 0 10px;
display: inline-block;
border: 1px solid #fff;
text-align: center;
line-height: 42px;
border-radius: 50%;
}
.gal-item .info-down {
position: absolute;
bottom: -100%;
left: 20px;
right: 20px;
text-align: center;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.gal-item .position-center-center {
margin-top: -150%;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.gal-item .hover-info:hover .position-center-center {
margin-top: 0%;
}
.gal-item .hover-info:hover .info-down {
bottom: 20px;
}
.gal-item .hover-info a:hover {
color: #fff;
opacity: 1;
}
.gal-item:hover .hover-info a {
color: #fff;
right: 20px;
}
.gal-item:hover .hover-info {
opacity: 1;
}
.gal-item:hover img {
transform: scale(1.1);
}
.gal-item {
position: relative;
overflow: hidden;
width: 100%;
margin-bottom: 30px;
}
.light-port .filter li a {
color: #313f46;
}
.light-port .filter li {
color: #313f46;
}
.project-detail {
}
.blog-post .side-bar hr {
margin: 20px 0;
} .work-detail p {
font-size: 15px;
line-height: 28px;
margin-bottom: 20px;
} .pagination {
padding-top: 30px;
border: none !important;
display: inline-block;
width: 100%;
margin: 0 !important;
text-align: center;
}
.pagination ul li {
border: none;
}
.pagination>li {
display: inline-block;
}
.pagination>li>a, .pagination>li>span {
border: none;
border-radius: 4px !important;
padding: 0px;
height: 42px;
width: 42px;
text-align: center;
line-height: 41px;
color: #777777;
font-weight: bold;
margin: 0px;
font-size: 16px;
background: #f2f2f2;
}
.pagination>li>a:hover {
background: #F66605;
color: #fff;
border-color: #F66605;
} .num-process {
margin-top: 30px;
}
.num-process .icon span {
height: 26px;
width: 26px;
line-height: 26px;
border-radius: 50%;
text-align: center;
color: #fff;
background: #ffbe00;
font-size: 12px;
display: inline-block;
margin-bottom: 10px;
}
.we-are-good article {
border: 1px solid #ececec;
padding: 35px 20px;
position: relative;
overflow: hidden;
}
.we-are-good article h6 {
margin: 0px;
}
.we-are-good article {
margin-bottom: 30px;
}
.we-are-good article .icon {
margin-right: 10px;
margin-top: 5px;
}
.we-are-good article p {
margin: 0px;
}
.we-are-good .go {
position: absolute;
right: 0px;
bottom: 0px;
display: inline-block;
height: 45px;
width: 45px;
color: #fff;
z-index: 1;
padding-top: 25px;
padding-left: 35px;
}
.we-are-good .go:before {
position: absolute;
height: 45px;
width: 45px;
content: "";
background: #ffbe00;
float: left;
top: 23px;
left: 23px;
z-index: -1;
-ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg);
} .testi {
}
.testi-name {
position: relative;
z-index: 2;
margin-left: 15px;
}
.testi .media-left .avatar {
width: 85px;
margin-right: 0px;
display: inline-block;
}
.testi p {
color: #9e9e9e;
}
.testi .quote {
font-size: 40px;
color: rgba(255,255,255,0.2);
position: absolute;
left: 0px;
top: 0px;
}
.testi .media-left .avatar img {
position: relative;
z-index: 9;
border-radius: 50%;
}
.testi h5 {
font-size: 17px;
color: #ffbe00;
margin-bottom: 10px;
margin-top: 20px;
font-weight: 600;
text-transform: none;
letter-spacing: 1px;
}
.testi .owl-nav {
}
.testi .owl-nav div.owl-prev {
display: inline-block !important;
color: #344248;
margin: 0 15px;
height: 50px;
width: 32px;
border-radius: 4px;
border: 1px solid #ececec;
line-height: 48px;
text-align: center;
position: absolute;
top: 50%;
left: -60px;
margin-top: -50px;
}
.testi .owl-nav div.owl-next {
display: inline-block !important;
color: #344248;
margin: 0 15px;
height: 50px;
width: 32px;
border-radius: 4px;
border: 1px solid #ececec;
line-height: 48px;
text-align: center;
position: absolute;
top: 50%;
right: -60px;
margin-top: -50px;
}
.testi .owl-nav div.owl-next:hover {
background: #3a3a3a;
border-color: #3a3a3a;
color: #fff;
}
.testi .owl-nav div.owl-prev:hover {
background: #3a3a3a;
border-color: #3a3a3a;
color: #fff;
}
.testi .owl-dots {
position: absolute;
bottom: -50px;
width: 100%;
text-align: center;
}
.testi .owl-dots div {
height: 6px;
width: 6px;
display: inline-block;
background: #b2d3e9;
margin-bottom: 0px;
margin: 0 2px;
}
.testi .owl-dots .owl-dot.active {
background: #3a3a3a;
}
.testi .owl-dots .owl-dot span {
margin: 0px;
}
.testi span {
display: inline-block;
width: 100%;
color: #333333 !important;
margin-bottom: 0px;
font-size: 14px;
font-family: 'Ubuntu';
font-style: italic;
}
.testi .media-body p {
color: #9e9e9e;
font-size: 16px;
}
.light-gray-bg .in-testi {
background: #fff;
}
.in-testi {
background: #f4f4f4;
padding: 40px;
text-align: left;
position: relative;
margin-bottom: 30px;
margin-top: 5px;
}
.light-gray-bg .in-testi:before {
color: #fff;
}
.in-testi:before {
content: "\f0d7";
position: absolute;
font-family: 'FontAwesome';
bottom: -55px;
color: #f4f4f4;
font-size: 70px;
}
.in-testi p {
font-family: 'Ubuntu';
text-align: left;
color: #555555;
font-size: 15px;
font-style: italic;
line-height: 32px;
}
.in-testi i {
position: absolute;
top: -5px;
font-size: 20px;
color: #F66605;
}
.in-testi .avatar {
}
.stars {
margin-top: 20px;
}
.stars i {
margin: 0 3px;
}
.testi .media-body span {
color: #b0b7ff;
}
.texti-slide {
}
.testimonial.page .testi {
margin-bottom: 80px;
} .fleets li {
margin-bottom: 30px;
text-align: center;
}
.fleets .gal-item {
margin-bottom: 0px;
}
.fleets li h5 {
margin: 0px;
padding: 15px 0;
font-size: 15px;
border-bottom: 1px solid #8a8a8a;
font-weight: 600;
text-transform: uppercase
} .team {
display: inline-block;
width: 100%;
}
.team .team-detail {
display: inline-block;
width: 100%;
margin-top: -1px;
padding: 20px 15px;
background: #2c2c2e;
text-align: center;
position: relative;
z-index: 9;
color: #2c2c2e;
}
.team .team-detail h5 {
font-size: 18px;
color: #fff;
font-weight: 600;
}
.team .team-detail p {
color: #fff;
font-family: 'Ubuntu';
}
.team .team-detail hr {
margin: 15px auto;
}
.team .team-detail span {
position: relative;
z-index: 9;
display: inline-block;
margin: 10px 0;
margin-top: 0px;
font-size: 10px;
text-transform: uppercase;
font-style: italic;
letter-spacing: 1px;
font-family: 'Ubuntu';
color: #F66605;
} .blog article {
margin-bottom: 30px;
padding-bottom: 0px;
background: #f6f6f6;
}
.blog .post-info {
padding: 30px;
padding-top: 50px;
position: relative;
}
.blog .post-info span {
display: inline-block;
color: #ffc300;
margin-top: 10px;
font-size: 12px;
text-transform: uppercase;
font-style: italic;
font-weight: 500;
margin-bottom: 10px;
font-family: 'Ubuntu';
}
.blog .post-info span a{
color: #ffc300;
}
.blog .post-info hr {
margin: 10px 0;
background: #444444;
}
.blog .tittle-post {
font-size: 15px;
font-weight: bold;
display: inline-block;
width: 100%;
letter-spacing: 1px;
line-height: 26px;
color: #444444;
margin-top: 0px;
text-transform: uppercase;
}
.blog .post-info p {
font-family: 'Ubuntu';
font-size: 15px;
line-height: 32px;
}
.blog .post-info .read-more {
border-bottom: 1px dotted #F66605;
display: inline-block;
float: right;
text-transform: uppercase;
margin-top: 20px;
margin-right: 10px;
font-weight: bold;
color: #444444;
font-size: 11px;
}
.blog .icons li {
margin-top: 20px;
margin-right: 10px;
display: inline-block;
}
.blog .btn {
}
.blog .btn:hover {
}
.blog .tag-post {
width: 60px;
height: 60px;
float: left;
text-align: center;
line-height: 51px;
background: #3a3a3a;
border: 3px solid #fff;
position: absolute;
top: -30px;
z-index: 999;
}
.port-paging li {
display: inline-block;
text-transform: uppercase;
}
.port-paging a {
color: #fff;
font-size: 12px;
margin: 0 10px;
}
.port-paging a i {
margin: 0 5px;
}
.port-paging a .fa-times {
height: 35px;
width: 35px;
border: 1px solid rgba(255,255,255,0.3);
display: inline-block;
line-height: 33px;
text-align: center;
}
.paging-news {
border-bottom: 1px solid #f0f0f0;
border-top: 1px solid #f0f0f0;
margin-top: 30px;
display: inline-block;
width: 100%;
background: #fbfbfb;
padding: 20px 20px;
}
.paging-news li {
display: inline-block;
text-transform: uppercase;
}
.paging-news li a {
font-size: 12px;
}
.blog-single .stare-ev {
display: inline-block;
width: 100%;
border-bottom: 1px solid #e8e8e8;
padding-bottom: 20px;
} .blog-single .tags {
float: left;
}
.blog-single .tags h5 {
margin-top: 10px;
}
.blog-single .tags li {
display: inline-block;
}
.blog-single .blog-post {
margin-bottom: 0px;
border: none;
padding-bottom: 20px;
}
.blog-single .pager {
border-bottom: 1px solid #e8e8e8;
padding-bottom: 20px;
}
.blog-single .tags li a {
}
.blog-single .social_icons {
display: inline-block;
}
.blog-single .social_icons h6 {
font-size: 13px;
}
.blog-single .social_icons li {
margin-right: 5px;
}
.blog-single .social_icons a {
font-size: 14px;
height: 36px;
width: 36px;
border-radius: 50%;
border: 1px solid #333333;
line-height: 34px;
color: #333333;
display: inline-block;
text-align: center;
margin: 0px;
} .clients li {
text-align: center;
}
.clients .style-2 li {
padding: 0px;
border: none;
}
.clients .style-2 li a {
border-right: none;
border-top: none;
border-left: none;
}
.clients .owl-nav div.owl-prev {
display: inline-block !important;
color: #344248;
margin: 0 15px;
height: 62px;
width: 32px;
border-radius: 4px;
border: 1px solid #ececec;
line-height: 58px;
text-align: center;
position: absolute;
top: 50%;
left: -100px;
margin-top: -30px;
}
.clients .owl-nav div.owl-next {
display: inline-block !important;
color: #344248;
margin: 0 15px;
height: 62px;
width: 32px;
border-radius: 4px;
border: 1px solid #ececec;
line-height: 58px;
text-align: center;
position: absolute;
top: 50%;
right: -100px;
margin-top: -30px;
}
.clients .owl-nav div.owl-next:hover {
background: #344248;
border-color: #344248;
color: #fff;
}
.clients .owl-nav div.owl-prev:hover {
background: #344248;
border-color: #344248;
color: #fff;
} footer p {
font-family: 'Ubuntu';
font-size: 15px;
line-height: 26px;
color: #fff;
}
footer {
padding: 10px;
background: #191919;
padding-bottom: 40px;
}
footer h5 {
color: #fff;
text-transform: uppercase;
color: #fff;
font-weight: normal;
margin: 0px;
font-size: 18px;
margin-bottom: 0px;
}
footer hr {
height: 3px;
border: none;
width: 50px;
margin-top: 20px;
margin-bottom: 30px;
background: #3a3a3a;
}
footer .loc-info p {
margin-bottom: 20px;
text-transform: uppercase;
font-size: 13px;
}
footer .loc-info p i {
width: 28px;
float: left;
font-size: 20px;
margin-top: 6px;
margin-bottom: 10px;
}
footer .tweet a {
color: #28a9e2;
}
footer .tweet li {
padding-left: 40px;
margin-bottom: 30px;
}
footer .tweet li:before {
content: "\f099";
font-family: FontAwesome;
padding: 0px;
color: #414141;
float: left;
position: absolute;
left: 0px;
font-size: 26px;
padding: 0px 15px;
font-weight: 100;
}
footer .tweet span {
color: #fff;
}
footer p {
color: #fff;
font-weight: normal;
font-size: 14px;
color: #eeeeee;
}
footer .links a {
font-family: 'Lato';
font-size: 14px;
color: #fff;
line-height: 32px;
display: inline-block;
width: 100%;
}
footer .recent-come {
}
footer .img-post {
height: 59px;
width: 59px;
float: left;
}
footer .text-post {
float: right;
width: 72%;
}
footer .recent-come li a {
color: #fff;
font-size: 12px;
font-size: 600;
margin-top: 0px;
text-transform: uppercase;
}
footer .recent-come li {
border-bottom: 1px solid #373737;
display: inline-block;
width: 100%;
margin-top: 15px;
padding-bottom: 15px;
}
footer .recent-come li:nth-child(1) {
margin-top: 0px;
}
footer .recent-come li span {
font-weight: 600;
color: #ffc300;
font-size: 11px;
display: inline-block;
width: 100%;
}
footer .recent-come li span a:hover{
color: #ffc300;
}
footer .links a:hover {
color: #ffdd00;
}
footer .subcribe {
display: inline-block;
width: 100%;
background: #f78a25;
padding: 20px 30px;
margin-bottom: 60px;
}
footer .subcribe h4 {
color: #fff;
font-weight: 400;
}
footer .subcribe p {
margin-bottom: 30px;
}
footer .subcribe input {
display: inline-block;
width: 75%;
height: 44px;
line-height: 44px;
padding: 0 20px;
color: #fff;
background: none;
text-transform: uppercase;
font-size: 12px;
border: 1px solid #fff;
}
footer .subcribe .form-control {
border-radius: 0px;
}
footer .subcribe .btn {
margin-top: 0px;
}
footer button {
background: #002b5e;
color: #fff;
font-size: 12px;
text-transform: uppercase;
line-height: 34px;
float: right;
margin-top: -34px;
position: relative;
z-index: 1;
border: none;
padding: 0 10px;
}
.rights {
background: #111111;
padding: 20px 0;
text-transform: uppercase;
text-align: center;
}
.rights p {
font-size: 11px;
font-weight: 400;
color: #fff;
text-transform: uppercase;
margin: 0px;
}
footer .social_icons {
display: inline-block;
margin-top: 20px;
}
footer .social_icons li {
margin-right: 5px;
}
footer .social_icons a {
font-size: 14px;
height: 36px;
width: 36px !important;
border-radius: 50%;
border: 1px solid #fff;
line-height: 34px;
color: #fff;
display: inline-block;
text-align: center;
} .who-we {
}
.who-we h3 {
font-size: 36px;
margin-bottom: 40px;
margin-top: 0px;
}
.who-we p {
font-size: 14px;
}
.who-we .btn {
padding: 10px 30px;
font-size: 12px;
outline: none;
margin-top: 30px;
}
.who-we .btn-yellow {
padding: 10px 30px;
font-size: 12px;
outline: none;
margin-top: 30px;
margin-left: 20px;
background: none;
border: 2px solid #ffc107;
}
.who-we .btn-yellow:hover {
background: #ffc107;
}
.list-style {
margin-top: 30px;
}
.list-style li {
position: relative;
padding-left: 20px;
line-height: 30px;
float: left;
width: 50%;
color: #6f6f6f;
}
.list-style li:before {
position: absolute;
left: 0px;
content: "\f105";
font-size: 14px;
color: #5091ff;
font-family: 'FontAwesome';
}
.offer-services li {
float: left;
display: inline-block;
width: 20%;
position: relative;
text-align: center;
padding-top: 70px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.offer-services li:hover {
padding-top: 0px;
padding-bottom: 70px;
}
.offer-services li h5 {
text-transform: uppercase;
color: #fff;
font-weight: normal;
margin-top: 20px;
letter-spacing: 1px;
}
.offer-services li p {
color: #fff;
letter-spacing: 1px;
}
.offer-services li .img-responsive {
width: 100%;
}
.offer-services li a {
color: #448aff;
background: #f9f9f9;
height: 70px;
position: absolute;
width: 100%;
bottom: 0px;
line-height: 70px;
left: 0px;
font-weight: bold;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Roboto Slab', serif;
z-index: -1;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity: 0;
}
.offer-services li .position-center-center {
margin-top: 35px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.offer-services li:hover .position-center-center {
margin-top: -35px;
}
.offer-services li a:hover {
color: #f9f9f9;
background: #448aff;
}
.offer-services li:hover a {
z-index: 1;
opacity: 1;
} .team ul li {
position: relative;
}
.team ul li article {
position: relative;
border: 1px solid #ececec;
position: relative;
overflow: hidden;
}
.team ul li article h6 {
color: #fff;
margin: 0px;
margin-bottom: 5px;
}
.team .team-hover {
position: absolute;
top: 0px;
height: 100%;
width: 100%;
left: -100%;
background: rgba(51,51,51,0.9);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.team .team-hover span {
margin: 10px 0;
font-weight: bold;
margin-bottom: 20px;
}
.team .position-center-center {
width: 100%;
padding: 0 20px;
}
.team ul li article p {
color: #fff;
line-height: 24px;
}
.team ul li article span {
color: #ffc107;
font-size: 12px;
display: inline-block;
width: 100%;
font-weight: bold;
}
.team .social li {
margin: 0px;
padding: 0px;
}
.team .social li a {
font-size: 14px;
color: #fff;
height: 40px;
width: 40px;
border-radius: 0px;
border-color: transparent;
display: inline-block;
text-align: center;
line-height: 36px;
}
.team .social li a:hover {
border-color: #fff !important;
}
.team .team-name {
position: absolute;
bottom: 0px;
width: 100%;
padding: 20px;
left: 0px;
text-align: right;
background: rgba(51,51,51,0.9);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.team ul li article:hover .team-name {
left: 100%;
}
.team ul li article:hover .team-hover {
left: 0px;
}
.contact-page #map {
height: 600px;
} .contact-form .error {
border: 1px solid red;
}
.contact-form .error:before {
content: "\f071";
font-family: 'FontAwesome';
position: absolute;
color: red;
}
.success-msg {
background: #fff;
border: 1px solid #ABD0A8;
color: #589051;
margin-bottom: 30px;
width: 100%;
display: inline-block;
text-align: center;
padding: 11px 16px;
border-radius: 4px;
display: none;
}
.success-msg i {
padding: 10px;
border-radius: 50%;
border: 1px solid #ABD0A8;
margin-right: 10px;
}
.contact-page .heading hr {
margin: 30px 0;
}
.contact-page h3 {
font-weight: normal;
font-size: 24px;
margin-bottom: 0px;
}
.timing {
background: #fbfbfc;
padding: 30px;
border: 1px solid #e4e4e4;
margin-top: 30px;
}
.timing ul li p {
margin: 0px;
}
.timing ul li {
border-bottom: 1px solid #e8e8e9;
padding: 15px 0;
}
.timing ul li span {
float: right;
}
.timing ul li:nth-last-child(1) {
border-bottom: none;
padding-bottom: 0px;
}
.contact-page p {
font-size: 15px;
color: #777777;
font-family: 'Ubuntu'
} .contact-form label {
display: inline-block;
width: 100%;
font-weight: normal;
font-size: 13px;
margin-bottom: 20px;
color: #777777;
font-family: 'Ubuntu';
font-style: italic;
}
.contact-form label input {
border: 1px solid #e4e4e4;
height: 40px;
padding: 0 20px;
border-radius: 4px;
width: 100%;
background: #fff;
box-shadow: none !important;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.contact-form textarea {
display: inline-block;
width: 100%;
position: relative;
padding: 10px 20px;
border: 1px solid #e4e4e4;
height: 200px;
border-radius: 4px;
background: #fff;
box-shadow: none !important;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.contact-form input:focus {
border: 1px solid #4c4f5e !important;
}
.contact-form textarea:focus {
border: 1px solid #4c4f5e !important;
} .procsss {
position: absolute;
top: -150px;
z-index: 999;
background: none;
}
.procsss ul {
background: rgba(0,0,0,0.5);
padding: 30px 30px;
}
.procsss ul li h6 {
text-transform: uppercase;
font-size: 20px;
letter-spacing: 1px;
color: #fff;
}
.procsss ul li p {
color: #fff;
margin: 0px;
}
.procsss .numb {
display: inline-block;
height: 45px;
width: 45px;
background: #ffc107;
border-radius: 50%;
line-height: 45px;
text-align: center;
color: #fff;
font-size: 20px;
color: #fff;
margin-right: 10px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.procsss li:hover .numb {
background: #fff;
color: #ffc107;
}
.cate li {
position: relative;
}
.cate li:before {
}
.cate li {
line-height: 50px;
}
.cate li a {
font-family: 'Raleway', sans-serif;
font-size: 14px;
color: #777777;
display: inline-block;
width: 100%;
font-weight: 500;
}
.cate li span {
float: right;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.cate li a:hover {
color: #3a3a3a;
}
.cate.archive li:before {
display: none;
}
.cate.archive li {
line-height: 45px;
padding-left: 0px;
}
.news-post blockquote p{
color:#fff;
line-height: 30px;
font-style: italic;
letter-spacing: 1px;
font-weight: bold;
}
.news-post blockquote {
color: #fff;
background: #F66605;
font-size: 20px;
border: none;
text-align: left;
line-height: 30px;
font-style: italic;
letter-spacing: 1px;
margin-top: 50px;
font-weight: bold;
line-height: 36px;
padding: 30px 30px;
padding-left: 80px;
margin-left: 50px;
margin-bottom: 50px;
}
.news-post blockquote i {
position: absolute;
left: 40px;
text-align: center;
line-height: 82px;
font-size: 40px;
height: 82px;
width: 82px;
border-radius: 50%;
background: #fff;
color: #F66605;
}
.comments .media-body h4 {
color: #222222;
}
.comments .media-body h4 span {
font-size: 12px;
color: #777777;
margin-left: 20px;
display: inline-block;
width: 100%;
}
.comments .media-body a {
float: right;
margin-top: -20px;
}
.blog-single .comments{
float:left;
}
.comments {
margin-top: 30px;
}
.comments .media-list {
margin-bottom: 30px;
}
.comments .media-list li {
}
.comments .media-left {
margin-right: 20px;
}
.comments .media-left a {
width: 100px;
display: inline-block;
}
.comments .media-body {
padding: 20px 30px;
border: 1px solid #e9e9e9;
position: relative;
}
.comments h4 {
font-weight: 500;
font-size: 24px;
}
.comments .media p {
margin-top: 25px;
font-size: 14px;
line-height: 24px;
}
.comments .media h6 span {
font-size: 11px;
color: #a1b1bc;
margin: 0;
margin-top: 10px;
margin-left: 10px;
font-family: 'Ubuntu';
font-weight: normal;
text-transform: uppercase;
display: inline-block;
}
.comments .media {
margin-top: 30px;
}
.comments .media h6 {
font-weight: 400;
color: #333333;
font-size: 16px;
font-family: 'Roboto', sans-serif;
}
.comments .btn.raply {
float: right;
font-size: 11px;
right: 0px;
padding: 0px;
font-weight: 600;
color: #efaa15 !important;
background: none !important;
text-transform: uppercase;
border: none;
margin-bottom: 0px;
}
.comments .btn.raply:hover {
background: #F66605;
color: #fff;
}
.comments .media a img {
margin-bottom: 10px;
}
.comments form label {
text-transform: uppercase;
font-weight: normal;
margin-top: 20px;
display: inline-block;
width: 100%;
font-size: 12px;
}
.comments form .form-control {
display: inline-block;
width: 100%;
height: 40px;
margin-top: 5px;
border-radius: 0px;
box-shadow: none;
background: none;
border: 1px solid #e8e8e8;
}
.comments form textarea.form-control {
display: inline-block;
width: 100%;
height: 150px;
}
.pager {
margin-bottom: 80px;
text-transform: uppercase;
border-top: 1px solid #ffbe00;
border-bottom: 1px solid #ffbe00;
padding: 15px 0;
}
.pager a {
font-size: 12px;
border: none;
}
.comments {
margin-bottom: 50px;
}
.admin-info {
border: 1px solid #f2f2f2;
padding: 18px;
}
.admin-info h5 {
margin-bottom: 0px;
font-weight: 500;
}
.admin-info .admin-img {
width: 175px;
display: inline-block;
margin-right: 20px;
}
.social_icons li {
display: inline-block;
color: #989898;
}
.social_icons li a {
color: #989898;
margin: 0 5px;
} .get-quote label {
display: inline-block;
width: 100%;
text-transform: uppercase;
font-weight: normal;
font-size: 12px;
letter-spacing: 1px;
}
.get-quote h3 {
margin: 0px;
}
.get-quote label input {
border-radius: 0px;
box-shadow: none;
border: 1px solid #ededed;
margin-top: 10px;
height: 40px;
margin-bottom: 30px;
} .appoinment {
background: url(//maisa.mx/wp-content/themes/acerill/images/bg/bg-2.jpg) no-repeat;
}
.appoinment {
}
.appoinment form {
margin-top: 80px;
}
.appoinment label {
width: 100%;
font-weight: normal;
font-size: 11px;
text-transform: uppercase;
margin-bottom: 30px;
display: inline-block;
}
.appoinment input {
height: 40px;
font-weight: normal;
font-size: 11px;
text-transform: uppercase;
padding-top: 8px;
border-radius: 0px;
border: 1px solid #e2e2e2;
}
.appoinment textarea {
height: 110px;
font-weight: normal;
font-size: 11px;
text-transform: uppercase;
padding-top: 8px;
border-radius: 0px;
border: 1px solid #e2e2e2;
}
.appoinment .btn {
background: #448aff;
border: none;
color: #fff;
font-size: 12px;
margin-bottom: 50px;
}
.ser-single .list-style li {
width: 100%;
} .accordion {
}
.accordion.gray-bg {
background: #f3f3f3;
}
.accordion .panel-default > .panel-heading .panel-title a:before {
content: "\f3d0";
font-family: "Ionicons";
color: #FFF;
padding: 0px;
color: #fff;
height: 25px;
width: 25px;
border-radius: 50%;
background: #F66605;
text-align: center;
line-height: 25px;
float: right;
position: absolute;
right: 15px;
font-size: 12px;
position: absolute;
left: 20px;
}
.accordion .panel-default > .panel-heading .panel-title a.collapsed:before {
content: "\f3d3";
font-family: "Ionicons";
background: #ebebeb;
color: #F66605;
}
.accordion .panel-default > .panel-heading {
background-color: #fff;
padding: 0px;
border-radius: 0px;
overflow: hidden;
}
.accordion .panel-default > .panel-heading a {
text-decoration: none;
font-size: 18px;
width: 100%;
font-family: 'Raleway', sans-serif;
font-weight: 600;
padding: 10px;
color: #636363;
background: #fafafa;
padding: 15px 0px;
padding-left: 70px;
line-height: 20px;
display: inline-block;
text-transform: none;
border: 1px solid #ececec;
}
.accordion .panel {
box-shadow: none;
border-radius: 0px;
margin-bottom: 15px;
position: relative;
border: none;
}
.accordion .panel-body p {
margin: 0px;
}
.accordion .panel-body {
color: #b8b8b8;
padding: 20px;
line-height: 28px;
font-size: 15px;
}
.accordion .panel-default>.panel-heading+.panel-collapse>.panel-body {
border: none;
}
.latest-work .filter.tabs {
height: auto;
min-height: auto;
background: none;
text-align: center;
}
.latest-work .filter.tabs {
margin-bottom: 50px;
}
.latest-work .filter.tabs li {
display: inline-block;
margin-bottom: 10px;
margin: 0 5px;
}
.latest-work .filter.tabs li a {
color: #999999;
padding: 8px 20px;
border: 2px solid #999999;
}
.latest-work .filter.tabs li a.active {
color: #ffc107;
border: 2px solid #ffc107;
}
.side-tittle {
font-size: 20px !important;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0px;
color: #333333;
font-family: 'Roboto', sans-serif;
}
.side-bar hr {
margin-bottom: 30px;
margin-top: 20px;
}
.tags a {
font-size: 11px;
color: #fff;
font-weight: 600;
background: #989898;
padding: 6px 20px;
padding-top: 7px;
display: inline-block;
margin-right: 5px;
margin-bottom: 5px;
text-transform: uppercase;
}
.tags li {
display: inline-block;
float: left;
}
.tags a:hover {
background: #efaa15;
}
.flickr-steam {
margin: 0 -5px;
display: inline-block;
width: 100%;
}
.flickr-steam li {
padding: 0 5px;
float: left;
width: 25%;
margin-bottom: 10px;
}
.flickr-steam li img {
width: 100%;
} .papu-post {
}
.papu-post .media-left {
margin-right: 0px;
}
.papu-post .media-left img {
width: 100%;
}
.papu-post .media-left a {
width: 82px;
margin-right: 10px;
display: inline-block;
}
.papu-post span {
color: #F66605;
letter-spacing: 0px;
font-size: 12px;
text-transform: uppercase;
font-family: 'Ubuntu';
}
.papu-post li {
border-bottom: 1px solid #ececec;
padding: 20px 0;
margin: 0px;
padding-top: 0px;
margin-bottom: 20px;
}
.papu-post .media-heading {
display: inline-block;
width: 100%;
color: #777777;
margin-top: 0px;
font-size: 14px;
font-weight: 500;
letter-spacing: 0px;
font-family: 'Ubuntu';
}
.search input {
display: inline-block;
width: 100%;
height: 35px;
background: #fff;
border: 1px solid #ebebeb;
}
.search button {
float: right;
margin-top: 10px;
line-height: 35px;
margin-right: 0px;
margin-top: -35px;
position: relative;
z-index: 1;
border-radius: 50%;
border: none;
color: #313f46;
width: 35px;
height: 35px;
font-size: 16px;
background: none;
}
.side-bar #map {
height: 320px;
width: 100%;
}
.promo {
background: url(//maisa.mx/wp-content/themes/acerill/images/bg/promo-bg.jpg) no-repeat;
background-size: cover;
}
.promo .overlay {
background: rgba(52,66,72,0.95);
padding: 100px 0;
}
.promo .overlay:before {
content: "";
position: absolute;
right: 0px;
left: 100%;
width: 100%;
height: 100%;
top: 0px;
background: rgba(52,66,72,0.95);
}
.promo h4 {
color: #fff;
font-weight: normal;
display: inline-block;
margin: 0px;
margin-bottom: 15px;
}
.promo .overlay:after {
position: absolute;
top: 0px;
left: -340px;
width: 0;
content: "";
height: 0;
border-bottom: 340px solid rgba(52,66,72,0.95);
border-left: 340px solid transparent;
}
.promo p {
color: #fff;
margin-bottom: 30px;
} .pricing {
}
.pricing ul li article {
background: #f9f9f9;
text-align: center;
padding: 50px 0;
}
.pricing ul li h5 {
font-weight: normal;
margin-bottom: 50px;
}
.pricing ul li .price-info {
color: #969595;
letter-spacing: 0.5px;
line-height: 40px;
}
.pricing ul li .price {
font-size: 50px;
margin-top: 50px;
}
.pricing ul li .month {
font-size: 12px;
}
.curency {
} #tabs .tab-pane {
padding: 36px 30px;
border: none;
}
#tabs .nav-tabs > li {
border: none;
margin: 0px;
padding: 0px;
float: left;
border: none;
width: 33.3333%;
}
#tabs .nav-tabs > li a {
border: none;
float: left;
width: 100%;
text-align: center;
padding: 15px 30px;
font-size: 13px;
font-family: 'Raleway', sans-serif;
border-radius: 0px;
text-transform: uppercase;
border-top: 2px solid #fff;
}
#tabs .nav-tabs > li.active a {
border-top: 2px solid #ffbe00;
color: #ffbe00;
}
#tabs .nav-tabs > li:hover a {
border-top: 2px solid #ffbe00;
background: none;
color: #ffbe00;
}
#tabs .nav-tabs {
border: none;
border-bottom: none;
}
.error-page {
text-align: center;
}
.error-page h3 {
font-size: 32px;
font-weight: normal;
}
.error-page p {
width: 70%;
margin: 0 auto;
font-family: 'Ubuntu';
font-size: 15px;
line-height: 32px;
}
.cont-info {
position: absolute;
left: 25%;
top: 100px;
background: #fff;
padding: 35px;
border-right: 3px solid #1076bc;
width: 330px;
}
.cont-info li p {
font-family: 'Ubuntu';
font-size: 15px;
color: #999999;
}
.cont-info li {
padding: 20px 0;
border-bottom: 1px solid #ededed;
}
.cont-info li:nth-last-child(1) {
border-bottom: none;
padding-bottom: 0px;
}
.cont-info li i {
font-size: 30px;
width: 50px;
text-align: center;
color: #6183c1;
}
article > img{
width:100%;
height:auto;
}
.post-info p img {
height: auto;
}
.team img {
width: 100%;
height: auto;
}
//___________________________________________
.calendar_wrap {
width: 100%;
}
.calendar_wrap > table {
width: 100%;
}
#wp-calendar > caption {
font-size: 15px;
text-align: center;
text-transform: uppercase;
width: 100%;
}
#wp-calendar > thead {
width: 100%;
}
#wp-calendar th {
text-align: center;
}
#wp-calendar tr {
text-align: center;
}
.cat-item {
float: right;
width: 100%;
}
.cat-item a {
float: left;
font-weight: 500;
width: 90%;
}
.form-control {
float: left;
width: 100%;
}
.input-group-btn.searching-form > button {
margin: 0;
position: absolute;
right: 5px;
top: 0;
z-index: 1111111111;
}
.input-group {
width: 100%;
}
#monster-widget-placeholder-1 a {
float: left;
width: 90%;
}
.screen-reader-text {
font-weight: 500;
width: 100%;
}
#archives-dropdown--1 > select {
float: left;
width: 100%;
}
#archives-dropdown--1, #cat, #archives-dropdown-3 {
height: 30px;
margin-top: 5px;
padding: 0 2px;
width: 100%;
}
.widget_pages .page_item  a, .widget > li a {
float: left;
font-weight: 500;
line-height: 25px;
}
.textwidget select {
font-weight: 500;
height: 30px;
padding: 0 2px;
width: 100%;
}
.loc-info p {
}
.textwidget strong {
float: left;
font-weight: 500;
margin-top: 10px;
width: 100%;
}
.textwidget img {
height: auto;
margin-top: 10px;
width: 100%;
}
.wp-caption-text {
margin-top: 10px;
}
.tagcloud a {
background: #989898 none repeat scroll 0 0;
color: #fff;
float: left;
font-weight: 600;
margin-left: 5px;
padding: 7px 20px 6px;
text-align: center;
}
.widget-title.clearfix {
height: auto;
}
.img-post img {
}
.recent-come > li {
float: left;
margin-bottom: 10px;
width: 100%;
}
.img-post {
float: left;
}
.img-post img {
height: auto;
width: 100%;
}
.text-post {
float: left;
margin: 0 9px;
padding: 7px 0;
width: 74%;
}
.text-post > a {
width: 100%;
}
.postform {
float: left;
font-weight: 500;
height: 30px;
margin-top: 10px;
padding: 0 2px;
width: 100%;
}
.widget_meta {
width: 100%;
}
.widget_meta li {
float: left;
width: 100%;
}
.widget_pages .page_item {
float: left;
width: 100%;
}
#recent-posts-3 a {
float: left;
width: 100%;
}
#rss-2 li {
float: left;
width: 200%;
}
.rsswidget {
width: 100%;
}
.rssSummary {
float: left;
width: 100%;
}
.widget-title.col-md-3 li {
float: left;
margin-bottom: 10px;
width: 100%;
}
.widget-title.col-md-3 a {
color: #fff;
float: left;
width: 80%;
}
.col-md-3 .widget-title li {
float: left;
margin-bottom: 10px;
width: 100%;
}
.col-md-3 .widget-title li a {
width: 100%;
}
.col-md-3 > .widget-title > ul > li a {
}
.col-md-3 .widget_archive li a {
width: 100% !important;
}
footer .widget.col-md-3 li a {
font-weight: 500;
margin-bottom: 10px;
width: 80%;
}
.widget_recent_entries .col-md-3 ul li a {
float: left;
width: 100%;
}
.widget_rss .col-md-3 li a.rsswidget {
float: left;
width: 100%;
}
.widget_rss > ul > li a.rsswidget {
width: 100%;
}
.widget_rss .col-md-3 > a.rss-date {
float: left;
width: 100%;
}
.widget_rss.col-md-3 > ul > li .rss-date {
float: left;
margin-bottom: 5px;
width: 100%;
}
.widget_rss.col-md-3 > ul > li .city {
float: left;
margin: 5px 0;
width: 100%;
}
.widget.col-md-3 h5 {
margin: 5px;
}
footer > .tagcloud {
float: left;
width: 100%;
}
footer .tagcloud {
float: left;
width: 100%;
}
.tag-link-6 {
}
footer .tagcloud > a {
margin-bottom: 5px;
}
footer select {
float: left;
height: 30px;
padding: 2px;
width: 100%;
}
footer .widget_recent_entries ul li a {
margin-bottom: 5px !important;
width: 100% !important;
}
footer .widget_recent_entries ul li .post-date {
float: left;
margin-bottom: 5px;
width: 100%;
}
footer .widget ul li a, footer .widget, footer .widget ul li, footer li {
//color: #fff;
color: #fff;
font-size: 12px;
margin-top: 0;
text-transform: uppercase;
}
.side-bar a, .side-bar ul, .side-bar li, .side-bar label, .side-bar select, .side-bar span, .side-bar td {
color: #6f6f6f;
font-family: inherit;
font-weight: 400;
line-height: 24px;
text-rendering: optimizelegibility;
}
.side-bar .widget_tag_cloud a {
color: #fff;
}
.side-bar th{
color: #333333;
}
.side-bar ul > p > i {
margin-right: 10px;
}
.side-bar ul > p {
line-height: 20px;
}
.side-bar h5{
color: #333333;
font-family: "Roboto",sans-serif;
font-size: 20px !important;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0;
}
footer .widget-title > h5{
color: #fff;
font-size: 18px;
font-weight: normal;
margin: 0;
text-transform: uppercase;
}
footer .text-post {
margin: 0;
}
footer ul li a:hover,footer ul li a:focus,
.side-bar ul li a:hover,.side-bar ul li a:focus{
color: #F66605;
}
footer select{
color: #333333;
} table {
border:1px solid #f0f0f0;
color:#888888;
float:left;
font-family:'Raleway', sans-serif;
font-style:italic;
margin:20px 0;
width:100% ;
}
caption {
border-left:1px solid #F0F0F0;
border-right:1px solid #F0F0F0;
border-top:1px solid #F0F0F0;
font-size:17px;
font-weight:700;
letter-spacing:0.3px;
line-height:30px;
text-transform:uppercase;
}
thead {
text-align:center;
color:#333;
}
thead {
color:#333333;
}
th {
border: 1px solid #f0f0f0;
font-size: 20px;
font-weight: 600;
letter-spacing: 0.4px;
padding: 10px;
text-align: center;
}
td {
border: 1px solid #f0f0f0;
font-size: 15px;
font-weight: 500;
line-height: 20px;
padding: 7px 0;
text-align: center;
text-transform: capitalize;
}
dt {
font-size: 16px;
font-style: italic;
}
dd, dt {
line-height: 23px;
}
dd {
font-size: 13px;
font-style: italic;
letter-spacing: 1px;
}
.post-info ul, .post-info ol {
line-height: 24px;
padding-left: 20px;
}
.post-info > ul li, ol li {
color: #666666;
font-family: 'Raleway', sans-serif;
}
.news-post > article > img {
max-width: 100%;
width: auto;
position: relative;
}
img {
height: auto;
}
.alignleft {
float: left;
margin: 10px 12px 0px 0;
}
.media-list ul.children{
margin-left: 110px;
}
nav.navbar{
display: none;
}
.pagination .scroll-buttons li {
display: inline-block;
}
.pagination .scroll-buttons li a, .pagination .scroll-buttons li span
{
font-family: "Ubuntu";
font-size: 15px;
background: #f6f6f6 none repeat scroll 0 0;
border-radius: 3px;
padding: 5px 10px;
}
.pagination .scroll-buttons li span.current{
background: #3a3a3a;
color:#fff;
}
.tagcloud > a {
margin-bottom: 6px;
} .blog article,
.blog .post-info {
float: left;
width: 100%;
} .blog .tag-post.post {
float: left;
height: initial;
line-height: initial;
position: relative;
top: 0;
width: 100%;
}
.blog .tag-post p {color: #ffffff;}
.blog .tag-post a {color: #efefef;}
article > img {
max-width: 100%;
width: auto;
}
.blog article {text-align: center;}
.blog article .post-info {text-align: initial;}
.blog article.sticky {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: 2px solid #f8f8f8;
}
.blog article.sticky .post-info {
padding-left: 100px;
padding-top: 30px;
}
.blog article.sticky .tag-post {
left: 20px;
top: 0;
}
.alignright {
float: right;
margin-left: 10px;
}
.alignleft {
float: left;
margin-right: 10px;
}
.post-info p img,
.alignnone, 
.alignnone > img {max-width: 100%;}
figcaption.wp-caption-text {
background: #ffffff none repeat scroll 0 0;
float: left;
margin-bottom: 10px;
margin-top: 0;
padding: 13px 15px;
width: 100%;
} .blog-single ul ul, 
.blog-single ol ol,
.blog-page  ul ul,
.blog-page ol ol{padding-left: 20px;}
.blog .post-info .mejs-audio .mejs-currenttime {margin-top: 0;}
iframe {
float: left;
width: 100%;
}
.widget ul ul {padding-left: 20px;}
.blog-single .post-info ul li, .blog-page .page-content ul li, .media-list .media-body ul li{
list-style:disc;
}
.blog-single .post-info ol li, .blog-page .page-content ol li, .media-list .media-body ol li {
list-style:decimal;
}
.blog-page .page-content ul, .blog-page .page-content ol, .media-list .media-body ol li{
margin-left: 20px;
}
#respond > form > ul > li {
list-style: outside none none;
padding-left: 0px;
}