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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-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(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.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(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.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-duration: 0.75s;
animation-duration: 0.75s;
-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-animation-duration: 0.75s;
animation-duration: 0.75s;
-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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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-duration: 2s;
animation-duration: 2s;
-webkit-animation-name: hinge;
animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox;
} @-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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 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;
}.owl-carousel .animated {
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
z-index: 0;
}
.owl-carousel .owl-animated-out {
z-index: 1;
}
.owl-carousel .fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} .owl-height {
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
} .owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent; position: relative;
z-index: 1;
}
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.owl-carousel.owl-loaded {
display: block;
}
.owl-carousel.owl-loading {
opacity: 0;
display: block;
}
.owl-carousel.owl-hidden {
opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
display: none;
}
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.owl-carousel .owl-item img {
display: block;
width: 100%;
-webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
}
.owl-carousel .owl-grab {
cursor: move;
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.owl-carousel.owl-rtl {
direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
float: right;
} .no-js .owl-carousel {
display: block;
} .owl-carousel .owl-item .owl-lazy {
opacity: 0;
-webkit-transition: opacity 400ms ease;
-moz-transition: opacity 400ms ease;
-ms-transition: opacity 400ms ease;
-o-transition: opacity 400ms ease;
transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
transform-style: preserve-3d;
} .owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000;
}
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
-webkit-transition: scale 100ms ease;
-moz-transition: scale 100ms ease;
-ms-transition: scale 100ms ease;
-o-transition: scale 100ms ease;
transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
-webkit-transition: scale(1.3, 1.3);
-moz-transition: scale(1.3, 1.3);
-ms-transition: scale(1.3, 1.3);
-o-transition: scale(1.3, 1.3);
transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none;
}
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
-webkit-transition: opacity 400ms ease;
-moz-transition: opacity 400ms ease;
-ms-transition: opacity 400ms ease;
-o-transition: opacity 400ms ease;
transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8; }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #CCC; }
.mfp-preloader a:hover {
color: #FFF; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
padding: 0 0 18px 10px;
color: #FFF;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
opacity: 1; }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px; }
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px; }
.mfp-arrow-right:before {
border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000; } img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; } .mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444; }
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px; }
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos]{pointer-events:none}[data-aos].aos-animate{pointer-events:auto}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}@media screen{html:not(.no-js) [data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;-webkit-transform:none;transform:none}html:not(.no-js) [data-aos=fade-up]{-webkit-transform:translate3d(0,100px,0);transform:translate3d(0,100px,0)}html:not(.no-js) [data-aos=fade-down]{-webkit-transform:translate3d(0,-100px,0);transform:translate3d(0,-100px,0)}html:not(.no-js) [data-aos=fade-right]{-webkit-transform:translate3d(-100px,0,0);transform:translate3d(-100px,0,0)}html:not(.no-js) [data-aos=fade-left]{-webkit-transform:translate3d(100px,0,0);transform:translate3d(100px,0,0)}html:not(.no-js) [data-aos=fade-up-right]{-webkit-transform:translate3d(-100px,100px,0);transform:translate3d(-100px,100px,0)}html:not(.no-js) [data-aos=fade-up-left]{-webkit-transform:translate3d(100px,100px,0);transform:translate3d(100px,100px,0)}html:not(.no-js) [data-aos=fade-down-right]{-webkit-transform:translate3d(-100px,-100px,0);transform:translate3d(-100px,-100px,0)}html:not(.no-js) [data-aos=fade-down-left]{-webkit-transform:translate3d(100px,-100px,0);transform:translate3d(100px,-100px,0)}html:not(.no-js) [data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}html:not(.no-js) [data-aos=zoom-in]{-webkit-transform:scale(.6);transform:scale(.6)}html:not(.no-js) [data-aos=zoom-in-up]{-webkit-transform:translate3d(0,100px,0) scale(.6);transform:translate3d(0,100px,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-down]{-webkit-transform:translate3d(0,-100px,0) scale(.6);transform:translate3d(0,-100px,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-right]{-webkit-transform:translate3d(-100px,0,0) scale(.6);transform:translate3d(-100px,0,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-left]{-webkit-transform:translate3d(100px,0,0) scale(.6);transform:translate3d(100px,0,0) scale(.6)}html:not(.no-js) [data-aos=zoom-out]{-webkit-transform:scale(1.2);transform:scale(1.2)}html:not(.no-js) [data-aos=zoom-out-up]{-webkit-transform:translate3d(0,100px,0) scale(1.2);transform:translate3d(0,100px,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-down]{-webkit-transform:translate3d(0,-100px,0) scale(1.2);transform:translate3d(0,-100px,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-right]{-webkit-transform:translate3d(-100px,0,0) scale(1.2);transform:translate3d(-100px,0,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-left]{-webkit-transform:translate3d(100px,0,0) scale(1.2);transform:translate3d(100px,0,0) scale(1.2)}html:not(.no-js) [data-aos^=slide][data-aos^=slide]{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;visibility:hidden}html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate{visibility:visible;-webkit-transform:translateZ(0);transform:translateZ(0)}html:not(.no-js) [data-aos=slide-up]{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}html:not(.no-js) [data-aos=slide-down]{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}html:not(.no-js) [data-aos=slide-right]{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}html:not(.no-js) [data-aos=slide-left]{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}html:not(.no-js) [data-aos^=flip][data-aos^=flip]{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}html:not(.no-js) [data-aos=flip-left]{-webkit-transform:perspective(2500px) rotateY(-100deg);transform:perspective(2500px) rotateY(-100deg)}html:not(.no-js) [data-aos=flip-left].aos-animate{-webkit-transform:perspective(2500px) rotateY(0);transform:perspective(2500px) rotateY(0)}html:not(.no-js) [data-aos=flip-right]{-webkit-transform:perspective(2500px) rotateY(100deg);transform:perspective(2500px) rotateY(100deg)}html:not(.no-js) [data-aos=flip-right].aos-animate{-webkit-transform:perspective(2500px) rotateY(0);transform:perspective(2500px) rotateY(0)}html:not(.no-js) [data-aos=flip-up]{-webkit-transform:perspective(2500px) rotateX(-100deg);transform:perspective(2500px) rotateX(-100deg)}html:not(.no-js) [data-aos=flip-up].aos-animate{-webkit-transform:perspective(2500px) rotateX(0);transform:perspective(2500px) rotateX(0)}html:not(.no-js) [data-aos=flip-down]{-webkit-transform:perspective(2500px) rotateX(100deg);transform:perspective(2500px) rotateX(100deg)}html:not(.no-js) [data-aos=flip-down].aos-animate{-webkit-transform:perspective(2500px) rotateX(0);transform:perspective(2500px) rotateX(0)}}
  @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Poppins:400,500,600,700"); .mybtn1 {
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
width: 160px;
height: 50px;
line-height: 50px;
text-align: center;
display: inline-block;
color: #fff;
border: 0px;
cursor: pointer;
background: rgba(255, 255, 255, 0.2);
transition: 0.3s;
overflow: hidden;
position: relative;
z-index: 9;
}
.mybtn1::after {
position: absolute;
content: "";
left: 0;
top: 0;
height: 490%;
width: 180%;
background: #0250c5;
transform: translateX(-120%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0.2s;
}
.mybtn1::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 490%;
width: 180%;
background: #d43f8d;
transform: translateX(-140%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0s;
z-index: 2;
}
.mybtn1:hover {
color: #fff;
}
.mybtn1:hover::after {
transform: translateX(-41%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0s;
}
.mybtn1:hover::before {
transform: translateX(-50%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0.2s;
}
.mybtn1 span {
position: inherit;
z-index: 9;
}
.mybtn2 {
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
width: 160px;
height: 50px;
line-height: 50px;
text-align: center;
display: inline-block;
color: #fff;
border: 0px;
cursor: pointer;
background: rgba(212, 63, 141, 0.2);
color: #000;
transition: 0.3s;
overflow: hidden;
position: relative;
z-index: 9;
}
.mybtn2::after {
position: absolute;
content: "";
left: 0;
top: 0;
height: 490%;
width: 180%;
background: #0250c5;
transform: translateX(-120%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0.2s;
}
.mybtn2::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 490%;
width: 180%;
background: #d43f8d;
transform: translateX(-140%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0s;
z-index: 2;
}
.mybtn2:hover span {
color: #fff !important;
}
.mybtn2:hover::after {
transform: translateX(-41%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0s;
}
.mybtn2:hover::before {
transform: translateX(-50%) translateY(-25%) rotate(45deg);
transition-duration: 0.3s;
transition-timing-function: linear;
transition-delay: 0.2s;
}
.mybtn2 span {
position: inherit;
z-index: 9;
}
.mybtn3 {
padding: 10px 30px;
background: #fff;
border-radius: 4px;
font-size: 16px;
display: inline-block;
border: 1px solid transparent;
position: relative;
text-transform: uppercase;
z-index: 3;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all 0.4s;
cursor: pointer;
outline: none !important;
overflow: hidden;
}
.mybtn3 span {
position: relative;
font-weight: 500;
z-index: 6;
transition-delay: 0s;
}
.mybtn3:before,
.mybtn3:after {
content: "";
width: 0;
height: 100%;
background: #fff;
position: absolute;
left: 0;
top: 0;
transition: width 0.4s;
z-index: 1;
opacity: 0.4;
}
.mybtn3:after {
transition-delay: 0s;
background: #fff;
opacity: 1;
}
.mybtn3:hover:before,
.mybtn3:hover:after {
width: 100%;
}
.mybtn3:hover:after {
transition-delay: 0.2s;
}
.mybtn3:hover span {
transition-delay: 0.2s;
}
.mybtn-bg {
background: #EA384D;
border-color: #EA384D;
color: #fff;
}
.mybtn-bg span {
color: #fff;
}
.mybtn-bg:hover span {
color: #EA384D;
}
.mybtn-light {
background: #fff;
}
.mybtn-light:before,
.mybtn-light:after {
background: #EA384D;
}
.mybtn-light:hover span {
color: #fff !important;
}
.mybtn-light span {
color: #EA384D;
}
.mybtn-bord {
background: transparent;
border: 1px solid #EA384D;
}
.mybtn-bord:before,
.mybtn-bord:after {
background: #EA384D;
}
.mybtn-bord:hover {
border-color: #EA384D;
}
.mybtn-bord:hover span {
color: #fff;
}
@keyframes shapeani1 {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
@keyframes shapeani2 {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
@keyframes shapeani3 {
0% {
transform: translateY(15px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(15px);
}
}
@keyframes b-shadow {
0% {
box-shadow: 0px 0px 0px 20px rgba(59, 38, 219, 0.1), 0px 0px 0px 40px rgba(59, 38, 219, 0.1), 0px 0px 0px 60px rgba(59, 38, 219, 0.1), 0px 0px 0px 80px rgba(59, 38, 219, 0.1), 0px 0px 0px 100px rgba(59, 38, 219, 0.1);
}
50% {
box-shadow: 0px 0px 0px 50px rgba(59, 38, 219, 0.1), 0px 0px 0px 75px rgba(59, 38, 219, 0.1), 0px 0px 0px 100px rgba(59, 38, 219, 0.1), 0px 0px 0px 125px rgba(59, 38, 219, 0.1), 0px 0px 0px 150px rgba(59, 38, 219, 0.1);
}
100% {
box-shadow: 0px 0px 0px 20px rgba(59, 38, 219, 0.1), 0px 0px 0px 40px rgba(59, 38, 219, 0.1), 0px 0px 0px 60px rgba(59, 38, 219, 0.1), 0px 0px 0px 80px rgba(59, 38, 219, 0.1), 0px 0px 0px 100px rgba(59, 38, 219, 0.1);
}
}
.owl-carousel .owl-item img {
width: auto;
display: inline-block;
}
.mix {
display: none;
}
.remove-col-padding {
padding: 0;
}
.navbar-light .navbar-toggler {
border: 0px;
}
.navbar-light .navbar-toggler:focus {
outline: 0px;
}
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.4rem;
padding-left: 0.4rem;
}
.bottomtotop i {
width: 50px;
height: 50px;
line-height: 50px;
position: fixed;
font-size: 14px;
text-align: center;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
border-radius: 50%;
color: #fff;
cursor: pointer;
transform: rotate(-90deg);
bottom: 15px;
right: 15px;
box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
z-index: 999;
transition: all linear 0.3s;
}
.br-10 {
border-radius: 10px;
}
.section-title {
text-align: center;
margin-bottom: 56px;
}
.section-title.extra .title {
margin-bottom: 24px;
}
.section-title.white .subtitle {
color: #fff;
}
.section-title.white .title {
color: #fff;
}
.section-title.white p {
color: rgba(255, 255, 255, 0.7);
}
.section-title .title {
font-size: 40px;
line-height: 50px;
margin-bottom: 13px;
color: #242424;
font-weight: 700;
text-transform: capitalize;
}
.section-title .title span {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.section-title p {
max-width: 650px;
font-size: 16px;
line-height: 26px;
color: #555;
margin: 0 auto;
}
.section-title.darkbg .title {
color: #fff;
}
.section-title.darkbg .title span {
color: #fff;
}
.section-title.darkbg p {
color: rgba(255, 255, 255, 0.95);
}
.background {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #F7F8FC;
z-index: -9999;
}
.input-field {
width: 100%;
height: 50px;
padding: 0 20px;
border-radius: 3px;
color: #555;
margin-bottom: 20px;
}
.input-field::-webkit-input-placeholder { color: #555;
}
.input-field:-moz-placeholder { color: #555;
}
.input-field::-moz-placeholder { color: #555;
}
.input-field:-ms-input-placeholder { color: #555;
}
.input-field.borderd {
border: 1px solid rgba(0, 0, 0, 0.15);
}
.input-field.borderd:focus {
border: 1px solid #d43f8d;
}
.input-field.textarea {
min-height: 140px;
padding: 15px 20px;
resize: none;
}
.input-field.error {
border: 1px solid #0250c5;
}
.input-field.error::-webkit-input-placeholder { color: #0250c5;
}
.input-field.error:-moz-placeholder { color: #0250c5;
}
.input-field.error::-moz-placeholder { color: #0250c5;
}
.input-field.error:-ms-input-placeholder { color: #0250c5;
}
.input-field.error:focus {
border-color: #0250c5;
}
.video-play-btn {
display: inline-block;
width: 70px;
height: 70px;
line-height: 72px;
text-align: center;
font-size: 26px;
background-color: #fff;
border-radius: 50%;
position: relative;
z-index: 1;
}
.video-play-btn:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
z-index: -1;
}
.video-play-btn i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-name: text-color;
animation-direction: alternate;
animation-timing-function: ease-out;
position: inherit;
z-index: 9;
}
.feature-circle-inner {
display: inline-block;
width: 20px;
height: 20px;
text-align: center;
line-height: 20px;
background-color: #fff;
border-radius: 50%;
position: relative;
}
.feature-circle-inner:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 30px;
height: 30px;
background: #fff;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
z-index: -9;
}
.feature-circle-inner i {
font-size: 12px;
font-weight: 900;
color: #0250c5;
}
.discount-circle-inner {
display: inline-block;
width: 100px;
height: 100px;
text-align: center;
background-color: #d43f8d;
border-radius: 50%;
position: relative;
}
.discount-circle-inner:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border-radius: 50%;
border: 3px dashed #fff;
animation: shapeani2 12s linear infinite;
}
.discount-circle-inner:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 120px;
height: 120px;
background: white;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
z-index: -1;
}
.email-success {
display: block;
width: 100%;
}
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
opacity: 0;
}
} .preloader-inner {
position: fixed;
left: 0;
top: 0;
z-index: 9999;
width: 100%;
height: 100%;
display: flex;
align-items: center;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
justify-content: center;
}
.preloader-inner .cancel-preloader {
position: absolute;
bottom: 30px;
right: 30px;
}
.preloader-inner .cancel-preloader a {
background-color: #fff;
font-weight: 600;
text-transform: capitalize;
color: #0250c5;
width: 200px;
height: 50px;
text-align: center;
line-height: 50px;
border-radius: 30px;
display: block;
transition: all 0.3s ease-in;
}
.preloader-inner .cancel-preloader a:hover {
background-color: #00aeff;
color: #fff;
}
.cube-folding {
width: 50px;
height: 50px;
display: inline-block;
transform: rotate(45deg);
font-size: 0;
}
.cube-folding span {
position: relative;
width: 25px;
height: 25px;
transform: scale(1.1);
display: inline-block;
}
.cube-folding span::before {
content: "";
background-color: white;
position: absolute;
left: 0;
top: 0;
display: block;
width: 25px;
height: 25px;
transform-origin: 100% 100%;
animation: folding 2.5s infinite linear both;
}
.cube-folding .leaf2 {
transform: rotateZ(90deg) scale(1.1);
}
.cube-folding .leaf2::before {
animation-delay: 0.3s;
background-color: #f2f2f2;
}
.cube-folding .leaf3 {
transform: rotateZ(270deg) scale(1.1);
}
.cube-folding .leaf3::before {
animation-delay: 0.9s;
background-color: #f2f2f2;
}
.cube-folding .leaf4 {
transform: rotateZ(180deg) scale(1.1);
}
.cube-folding .leaf4::before {
animation-delay: 0.6s;
background-color: #e6e6e6;
}
@keyframes folding {
0%, 10% {
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%, 75% {
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%, 100% {
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
.cube-wrapper {
position: fixed;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -50px;
width: 100px;
height: 100px;
text-align: center;
}
.cube-wrapper:after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -20px;
margin: auto;
width: 90px;
height: 6px;
background-color: rgba(0, 0, 0, 0.1);
filter: blur(2px);
border-radius: 100%;
z-index: 1;
animation: shadow 0.5s ease infinite alternate;
}
.cube-wrapper .loading {
font-size: 16px;
letter-spacing: 0.1em;
display: block;
color: white;
position: relative;
top: 25px;
z-index: 2;
animation: text 0.5s ease infinite alternate;
text-transform: uppercase;
}
@keyframes text {
100% {
top: 35px;
}
}
@keyframes shadow {
100% {
bottom: -18px;
width: 100px;
}
}
.navigation.innerpage {
background: #fff;
border-bottom: 0px;
} .breadcrumb-area {
padding: 177px 0px 117px;
position: relative;
overflow: hidden;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.breadcrumb-area .title {
font-size: 40px;
line-height: 50px;
font-weight: 600;
margin-bottom: 11px;
color: #fff;
}
.breadcrumb-area .title.extra-padding {
margin-bottom: 24px;
}
.breadcrumb-area .breadcrumb-list {
margin: 0px;
padding: 0px;
}
.breadcrumb-area .breadcrumb-list li {
display: inline-block;
}
.breadcrumb-area .breadcrumb-list li span {
margin: 0px 7px;
color: #fff;
}
.breadcrumb-area .breadcrumb-list li a {
font-size: 16px;
transition: all 0.3s ease-in;
color: #fff;
}
.breadcrumb-area .breadcrumb-list li a:hover {
color: #f1f1f1;
}
.breadcrumb-area .breadcrumb-list li a.active {
color: #f1f1f1;
}
.curve {
position: absolute;
z-index: 7;
}
.curve.curve-bottom {
left: 0;
bottom: -1px;
width: 100%;
}
.curve.curve-bottom:after, .curve.curve-bottom:before {
bottom: 0;
}
.curve.curve-top {
left: 0;
top: -1px;
width: 100%;
}
.curve.curve-top:after, .curve.curve-top:before {
top: 0;
border-top: 80px solid #fff;
border-bottom: 0;
}
.curve.curve-top:after {
border-left: 70vw solid transparent;
}
.curve.curve-top:before {
border-right: 30vw solid transparent;
}
.curve:after, .curve:before {
content: "";
width: 0;
height: 0;
border-bottom: 80px solid #fff;
position: absolute;
}
.curve:after {
right: 0;
border-left: 30vw solid transparent;
}
.curve:before {
left: 0;
border-right: 70vw solid transparent;
}
.google_map_wrapper {
border: 10px solid #fff;
box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
} html {
font-family: "Roboto", sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
overflow-x: hidden;
}
body {
font-family: "Roboto", sans-serif;
font-size: 16px;
margin: 0;
color: #555;
overflow-x: hidden;
}
h1 {
font-size: 60px;
line-height: 1.0833333333;
}
h2 {
font-size: 52px;
line-height: 1.4444444444;
}
h3 {
font-size: 26px;
line-height: 1.0833333333;
}
h4 {
font-size: 22px;
line-height: 1.2380952381;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #242424;
font-family: "Poppins", sans-serif;
}
p {
font-size: 16px;
color: #555;
line-height: 1.625;
-webkit-hyphens: auto;
hyphens: auto;
}
a {
color: #242424;
text-decoration: none;
}
a,
a:hover,
a:focus,
a:active {
text-decoration: none;
outline: none;
}
a i {
padding: 0 2px;
}
img {
max-width: 100%;
}
li {
list-style: none;
}
ul {
padding-left: 0px;
} input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
outline: none;
box-shadow: none;
border: 1px solid #ddd;
} .alignleft {
float: left;
}
.alignright {
float: right;
}
.aligncenter {
clear: both;
display: block;
margin: 0 auto 1.75em;
} .navigation {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navigation.stiky-nav {
background: #fff;
border-bottom: 0px;
border-bottom: 0px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}
.navigation.stiky-nav .navbar .navbar-brand img {
filter: unset;
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link {
color: #242424;
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.navigation .navbar {
padding: 0px 0px 0px;
}
.navigation .navbar .navbar-brand {
font-size: 30px;
line-height: 50px;
font-weight: 700;
padding: 0px;
margin-top: -2px;
text-transform: uppercase;
color: #242424;
}
.navigation .navbar .navbar-brand img {
max-width: 170px;
filter: brightness(0) invert(1);
}
.navigation .navbar #mainmenu ul .nav-item .nav-link {
color: #fff;
position: relative;
padding: 25px 10px 25px;
font-size: 16px;
line-height: 26px;
font-weight: 600;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link::before {
position: absolute;
content: " ";
width: 3px;
height: 3px;
left: 50%;
border-radius: 50px;
bottom: 0;
opacity: 0;
transform: translateX(-50%);
background: #fff;
transition: 0.5s;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link:hover::before, .navigation .navbar #mainmenu ul .nav-item .nav-link.active::before {
position: absolute;
content: " ";
width: 70%;
height: 3px;
left: 50%;
transform: translate(-50%);
bottom: 0px;
opacity: 1;
background: #fff;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu {
display: block;
padding: 0px;
margin-top: 0px;
border: 0px;
border-radius: 0px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.06);
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
background: #fff;
padding: 8px 15px;
font-size: 15px;
line-height: 25px;
font-weight: 600;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item i {
font-size: 13px;
margin-right: 4px;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
background: #d43f8d;
color: #fff;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:last-child {
border-bottom: 0px;
}  .hero-area {
position: relative;
padding: 365px 0px 291px;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/heroarea.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.hero-area .bgimg {
position: absolute;
bottom: 0%;
width: auto;
}
.hero-area .left-content .content .title {
font-size: 56px;
line-height: 66px;
color: #fff;
font-weight: 700;
}
.hero-area .left-content .content .subtitle {
font-size: 18px;
line-height: 28px;
color: #ffff;
margin-top: 26px;
}
.hero-area .left-content .content .links {
margin-top: 42px;
padding-right: 15px;
}
.hero-area .left-content .content .links a {
margin-left: 0px;
}
.hero-area .right-img {
text-align: center;
position: relative;
}
.hero-area .right-img .discount-circle {
position: absolute;
left: 80px;
top: -30px;
z-index: 96;
}
.hero-area .right-img .discount-circle .discount-circle-inner {
text-align: center;
}
.hero-area .right-img .discount-circle .discount-circle-inner .price {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 28px;
font-weight: 600;
color: #fff;
line-height: 30px;
text-align: center;
}
.hero-area .right-img .discount-circle .discount-circle-inner .price span {
display: block;
margin-top: 0px;
font-size: 20px;
line-height: 20px;
}
.hero-area .right-img .img {
position: absolute;
top: -95px;
left: 100px;
max-width: 380px;
width: auto;
animation: shapeani3 5s linear infinite;
} .about {
padding: 106px 0px 120px;
position: relative;
}
.about .left-shape2 {
position: absolute;
bottom: 0px;
left: -20px;
top: 200px;
z-index: -9;
}
.about .box {
text-align: center;
background: #F7F9FF;
overflow: hidden;
position: relative;
transition: all 0.3s ease-in;
}
.about .box::after {
position: absolute;
content: "";
bottom: 0px;
left: 0px;
height: 4px;
width: 0%;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
transition: all 0.3s ease-in;
}
.about .box .inner-box {
width: 100%;
position: relative;
z-index: 99;
padding: 27px 25px 35px;
transition: 0.3s ease-in;
}
.about .box .inner-box .icon {
font-size: 55px;
}
.about .box .inner-box .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease-in;
}
.about .box .inner-box .title {
font-size: 24px;
line-height: 34px;
font-weight: 600;
color: #242424;
margin: 9px 0px 22px;
transition: all 0.3s ease-in;
}
.about .box .inner-box .text {
margin-bottom: 0px;
transition: all 0.3s ease-in;
}
.about .box:hover {
transform: translateY(-5px) !important;
box-shadow: 0px 20px 20px 2px rgba(0, 0, 0, 0.1);
}
.about .box:hover::after {
width: 100%;
} .whaybest {
position: relative;
padding: 60px 0px 83px;
background: #F7F9FF;
}
.whaybest .row-one {
margin-bottom: 55px;
}
.whaybest .info .info-title {
font-size: 40px;
line-height: 50px;
font-weight: 700;
color: #242424;
margin-bottom: 23px;
display: block;
}
.whaybest .info .info-title span {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.whaybest .about-img {
text-align: center;
padding: 0px 90px;
align-self: center;
}
.whaybest .about-img img {
animation: shapeani3 5s linear infinite;
}
.whaybest .feature-list {
padding-left: 0px;
margin-top: 59px;
display: flex;
flex-wrap: wrap;
}
.whaybest .feature-list li {
max-width: 50%;
flex: 50%;
padding-left: 15px;
padding-right: 15px;
list-style: none;
cursor: pointer;
margin-bottom: 8px;
}
.whaybest .feature-list li:last-child {
margin-bottom: 0px;
}
.whaybest .feature-list li .icon {
margin-bottom: 14px;
}
.whaybest .feature-list li .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 55px;
line-height: 65px;
}
.whaybest .feature-list li .content {
flex: 1;
}
.whaybest .feature-list li .content h4 {
font-size: 24px;
line-height: 34px;
font-weight: 600;
margin-bottom: 5px;
}
.whaybest .feature-list li .content p {
font-size: 16px;
line-height: 26px;
}
.whaybest .feature-list li:hover .icon::after {
border-color: #d43f8d;
animation: shapeani2 10s linear infinite;
} .feature {
padding: 110px 0px 95px;
position: relative;
}
.feature .section-title {
margin-bottom: 47px;
}
.feature .left-feature .feature-box .icon {
margin-left: 20px;
}
.feature .left-feature .feature-box .details {
text-align: right;
}
.feature .right-feature .center-feature {
text-align: center;
justify-content: center;
}
.feature .right-feature .feature-box .icon {
margin-right: 20px;
}
.feature .right-feature .feature-box .details {
text-align: left;
}
.feature .feature-box {
margin-bottom: 30px;
background: #fff;
display: flex;
transition: all 0.3s ease-in;
position: relative;
}
.feature .feature-box .icon-area {
display: flex;
}
.feature .feature-box .icon-area .icon {
align-self: center;
}
.feature .feature-box .icon {
width: 70px;
height: 70px;
margin-right: 20px;
text-align: center;
line-height: 70px;
font-size: 55px;
border-radius: 50%;
position: relative;
}
.feature .feature-box .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.feature .feature-box .details {
flex: 1;
}
.feature .feature-box .details .title {
font-size: 24px;
line-height: 34px;
font-weight: 600;
color: #242424;
margin: 26px 0px 19px;
}
.feature .feature-box .details .text {
font-size: 16px;
line-height: 26px;
margin-bottom: 8px;
}
.feature .feature-box .feature-circle {
opacity: 0;
transition: all 0.3s ease-in;
z-index: 95;
}
.feature .feature-box:hover .feature-circle {
opacity: 1;
}
.feature .feature-box1 .feature-circle {
position: absolute;
right: -90px;
top: 170px;
}
.feature .feature-box2 .feature-circle {
position: absolute;
right: -90px;
top: 80px;
}
.feature .feature-box3 .feature-circle {
position: absolute;
right: -90px;
top: -5px;
}
.feature .feature-box4 .feature-circle {
position: absolute;
left: -120px;
right: auto;
top: 110px;
}
.feature .feature-box5 .feature-circle {
position: absolute;
left: -100px;
top: 80px;
}
.feature .feature-box6 .feature-circle {
position: absolute;
left: -130px;
top: 50px;
} .video {
padding: 0px 0px 0px;
background: #F7F9FF;
position: relative;
}
.video .right-shape2 {
position: absolute;
right: 0px;
top: 0px;
}
.video .section-title .title {
margin-bottom: 24px;
}
.video .video-wrapper {
position: relative;
}
.video .video-wrapper .video-box {
position: relative;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
padding: 243px 0px;
z-index: 99;
border-radius: 5px;
position: relative;
overflow: hidden;
}
.video .video-wrapper .video-box::after {
position: absolute;
content: " ";
width: 100%;
height: 100%;
background-color: #f9f9f9;
background-image: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/video.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
top: 0;
left: 0;
z-index: -1;
}
.video .video-wrapper .video-box .overly {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
opacity: 0.5;
}
.video .video-wrapper .video-box .play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.video .fun-box .inner-content {
padding: 40px 20px 30px;
background: #fff;
position: relative;
margin-bottom: 30px;
text-align: center;
border-radius: 3px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.06);
}
.video .fun-box .inner-content .icon {
font-size: 45px;
width: 80px;
height: 80px;
border-radius: 50%;
text-align: center;
line-height: 80px;
display: inline-block;
position: relative;
}
.video .fun-box .inner-content .icon::after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px dashed #ffff;
animation: shapeani2 10s linear infinite;
}
.video .fun-box .inner-content .categori {
font-size: 20px;
line-height: 30px;
font-weight: 600;
margin-top: 25px;
}
.video .fun-box .inner-content1 {
background: #0250c5;
}
.video .fun-box .inner-content1 .icon i {
color: #fff;
}
.video .fun-box .inner-content1 .categori {
color: #fff;
}
.video .fun-box .inner-content4 {
background: #d43f8d;
}
.video .fun-box .inner-content4 .icon i {
color: #fff;
}
.video .fun-box .inner-content4 .categori {
color: #fff;
}
.video .fun-box .inner-content2 {
margin-top: 30px;
}
.video .fun-box .inner-content2 .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.video .fun-box .inner-content2 .icon::after {
border: 1px dashed #0250c5;
}
.video .fun-box .inner-content3 {
margin-top: -30px;
}
.video .fun-box .inner-content3 .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.video .fun-box .inner-content3 .icon::after {
border: 1px dashed #d43f8d;
} .dealofweek {
padding: 106px 0px 120px;
background: #F7F9FF;
position: relative;
}
.dealofweek .deal-slider-area {
background: #fff;
border-radius: 3px;
padding: 40px 40px 40px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.06);
}
.dealofweek .deal-slider-area .content .left-area {
text-align: center;
padding: 0px 50px;
}
.dealofweek .deal-slider-area .content .right-area {
align-self: center;
}
.dealofweek .deal-slider-area .content .right-area .stars {
padding-left: 0px;
margin-bottom: 5px;
}
.dealofweek .deal-slider-area .content .right-area .stars li {
display: inline-block;
font-size: 14px;
color: #f9bd22;
}
.dealofweek .deal-slider-area .content .right-area .name {
font-size: 24px;
line-height: 34px;
margin-bottom: 9px;
font-weight: 600;
}
.dealofweek .deal-slider-area .content .right-area .description {
margin-bottom: 16px;
}
.dealofweek .deal-slider-area .content .right-area .price {
margin-top: 25px;
}
.dealofweek .deal-slider-area .content .right-area .price p span {
font-size: 30px;
line-height: 30px;
font-weight: 900;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 0px;
}
.dealofweek .deal-slider-area .content .right-area .price del {
font-size: 18px;
line-height: 18px;
font-weight: 600;
margin-left: 10px;
color: #555;
}
.dealofweek .deal-slider-area .content .right-area .links {
display: inline-block;
margin-top: 30px;
}
.dealofweek .deal-slider-area .content .right-area .links .mybtn1 {
background: rgba(212, 63, 141, 0.2);
color: #000;
transition: all 0.3s linear;
}
.dealofweek .deal-slider-area .content .right-area .links .mybtn1:hover {
color: #fff;
}
.dealofweek .deal-slider-area .content .right-area .deal-counter {
margin-top: 10px;
}
.dealofweek .deal-slider-area .content .right-area .deal-counter span {
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
padding: 8px 20px;
border-radius: 3px;
display: inline-block;
margin-right: 10px;
font-weight: 700;
font-size: 24px;
line-height: 24px;
color: #242424;
}
.dealofweek .deal-slider-area .content .right-area .deal-counter span:last-child {
margin-right: 0px;
}
.dealofweek .deal-slider-area .content .right-area .deal-counter span small {
display: block;
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #555;
} .pricing {
padding: 106px 0px 120px;
position: relative;
}
.pricing .product-slider .item .single-product {
background: rgba(2, 80, 197, 0.05);
text-align: center;
}
.pricing .product-slider .item .single-product .img {
text-align: center;
background: rgba(212, 63, 141, 0.2);
padding: 30px 30px 24px;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.pricing .product-slider .item .single-product .img .links {
display: inline-block;
position: absolute;
top: 101%;
left: 0;
text-align: center;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease-in;
opacity: 0;
}
.pricing .product-slider .item .single-product .img .links .mybtn1 {
background: rgba(255, 255, 255, 0.8);
color: #000;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s linear;
}
.pricing .product-slider .item .single-product .img .links .mybtn1:hover {
color: #fff;
}
.pricing .product-slider .item .single-product .content {
padding: 25px 27px;
}
.pricing .product-slider .item .single-product .content .stars {
padding-left: 0px;
margin-bottom: 10px;
}
.pricing .product-slider .item .single-product .content .stars li {
display: inline-block;
font-size: 14px;
color: #56eb00;
}
.pricing .product-slider .item .single-product .content .title {
font-size: 20px;
line-height: 30px;
font-weight: 600;
margin-bottom: 0px;
}
.pricing .product-slider .item .single-product .content .price {
margin-bottom: 0px;
}
.pricing .product-slider .item .single-product .content .price .new-price {
display: inline-block;
font-size: 26px;
line-height: 36px;
font-weight: 700;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-right: 7px;
letter-spacing: -1px;
margin-bottom: 5px;
}
.pricing .product-slider .item .single-product .content .price small {
font-size: 18px;
font-weight: 700;
color: #888;
display: inline-block;
}
.pricing .product-slider .item .single-product:hover .img .links {
top: 0px;
opacity: 1;
}
.pricing .product-slider .owl-controls {
display: block;
text-align: center;
margin-top: 40px;
}
.pricing .product-slider .owl-controls .owl-nav {
display: inline-block;
}
.pricing .product-slider .owl-controls .owl-nav div {
width: 40px;
height: 40px;
display: inline-block;
line-height: 41px;
text-align: center;
margin: 0px 5px;
border-radius: 50%;
font-size: 22px;
transition: all 0.3s ease-in;
background: rgba(2, 80, 197, 0.05);
color: #242424;
}
.pricing .product-slider .owl-controls .owl-nav div:hover {
background: #0250c5;
color: #fff;
}  .testimonial-area {
padding: 106px 0px 120px;
position: relative;
background: #F7F9FF;
}
.testimonial-area .section-title {
margin-bottom: 50px;
}
.testimonial-area .testimonial-img {
position: relative;
}
.testimonial-area .testimonial-img img {
position: absolute;
border-radius: 50%;
border: 4px solid #fff;
box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}
.testimonial-area .testimonial-img .img1 {
width: 60px;
height: 60px;
top: 67px;
left: -110px;
animation: shapeani1 3.1s linear infinite;
}
.testimonial-area .testimonial-img .img2 {
width: 75px;
height: 75px;
top: 160px;
left: -200px;
animation: shapeani1 3.5s linear infinite;
}
.testimonial-area .testimonial-img .img3 {
width: 60px;
height: 60px;
top: 270px;
left: -110px;
animation: shapeani1 3.2s linear infinite;
}
.testimonial-area .testimonial-img .img4 {
width: 60px;
height: 60px;
top: 67px;
right: -110px;
animation: shapeani1 3.2s linear infinite;
}
.testimonial-area .testimonial-img .img5 {
width: 75px;
height: 75px;
top: 160px;
right: -200px;
animation: shapeani1 3.5s linear infinite;
}
.testimonial-area .testimonial-img .img6 {
width: 60px;
height: 60px;
top: 270px;
right: -110px;
animation: shapeani1 3.1s linear infinite;
}
.testimonial-area .testimonial-slider .owl-stage-outer {
overflow: hidden;
}
.testimonial-area .testimonial-slider .client {
margin: 65px 30px 65px;
padding: 85px 30px 27px;
text-align: center;
position: relative;
background: #fff;
box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.1);
transition: 0.3s ease-in;
}
.testimonial-area .testimonial-slider .client .client-image {
position: absolute;
width: 120px;
height: 120px;
padding: 15px;
top: -60px;
left: 50%;
transform: translateX(-50%);
border-radius: 50%;
overflow: hidden;
display: inline-block;
margin-bottom: 16px;
}
.testimonial-area .testimonial-slider .client .client-image::after {
position: absolute;
content: " ";
width: 100%;
height: 100%;
border-radius: 50%;
top: 0;
left: 0;
z-index: -1;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
transform: rotate(85deg);
}
.testimonial-area .testimonial-slider .client .client-image img {
width: 100%;
border-radius: 50%;
}
.testimonial-area .testimonial-slider .client .client-say {
margin-bottom: 19px;
}
.testimonial-area .testimonial-slider .client .client-name {
color: #242424;
font-size: 20px;
font-weight: 600;
line-height: 28px;
margin-bottom: 0px;
text-transform: uppercase;
}
.testimonial-area .testimonial-slider .client .client-name a {
color: #242424;
font-size: 20px;
font-weight: 600;
line-height: 30px;
text-transform: capitalize;
}
.testimonial-area .testimonial-slider .client .designation {
color: #555;
font-size: 14px;
line-height: 24px;
margin-bottom: 0px;
}
.testimonial-area .testimonial-slider .owl-controls {
display: block;
text-align: center;
margin-top: -24px;
position: relative;
z-index: 91;
}
.testimonial-area .testimonial-slider .owl-controls .owl-nav {
display: inline-block;
}
.testimonial-area .testimonial-slider .owl-controls .owl-nav div {
width: 40px;
height: 40px;
display: inline-block;
line-height: 41px;
text-align: center;
margin: 0px 5px;
border-radius: 50%;
font-size: 22px;
transition: all 0.3s ease-in;
background: rgba(2, 80, 197, 0.07);
color: #242424;
}
.testimonial-area .testimonial-slider .owl-controls .owl-nav div:hover {
background: #0250c5;
color: #fff;
}  .faq {
padding: 110px 0px 100px;
position: relative;
background: #F7F9FF;
}
.faq .right-shape {
position: absolute;
right: 0;
top: 350px;
}
.faq .accordion .panel {
margin-bottom: 20px;
background: #fff;
border-radius: 3px;
box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
position: relative;
}
.faq .accordion .panel::after {
position: absolute;
content: " ";
top: 0;
left: 0;
height: 100%;
width: 4px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.faq .accordion .panel .panel-body {
padding: 4px 20px 7px;
}
.faq .accordion .panel-title {
display: block;
width: 100%;
background: #fff;
padding: 15px 40px 15px 20px;
font-size: 18px;
font-weight: 600;
margin-bottom: 0px;
color: #242424;
position: relative;
border-radius: 3px;
cursor: pointer;
}
.faq .accordion .panel-title::after {
position: absolute;
content: "";
width: 40px;
height: 100%;
border-radius: 3px 0px 0px 3px;
right: 0;
top: 0;
text-align: center;
}
.faq .accordion .panel-title::before {
position: absolute;
font-family: "Font Awesome 5 Free";
content: "";
right: 0;
top: 50%;
transform: translateY(-50%);
width: 40px;
text-align: center;
z-index: 1;
font-size: 12px;
transition: 0.3s ease-in;
width: 22px;
height: 22px;
border: 1px solid rgba(0, 0, 0, 0.5);
line-height: 22px;
border-radius: 50%;
color: #555;
margin-right: 10px;
}
.faq .accordion .panel-title[aria-expanded=true]::before {
font-family: "Font Awesome 5 Free";
content: "";
}
.faq .faq-img {
align-self: center;
} .contact {
padding: 106px 0px 90px;
position: relative;
}
.contact .info-box {
background: #fff;
margin-bottom: 30px;
padding: 30px 30px 22px;
position: relative;
cursor: pointer;
text-align: center;
box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
}
.contact .info-box .left {
margin-bottom: 25px;
}
.contact .info-box .left .icon {
font-size: 30px;
width: 70px;
height: 70px;
border-radius: 50%;
text-align: center;
line-height: 70px;
display: inline-block;
position: relative;
}
.contact .info-box .left .icon::after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px dashed #0250c5;
animation: shapeani2 10s linear infinite;
}
.contact .info-box .left .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.contact .info-box .right {
text-align: center;
}
.contact .info-box .right .content p {
margin-bottom: 0px;
}
.contact .info-box:hover .left .icon::after {
border: 1px dashed #d43f8d;
}
.contact .contact-form-wrapper {
background: #fff;
box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
padding: 40px 25px 40px;
transition: 0.3s ease-in;
}
.contact .contact-form-wrapper .section-title {
margin-bottom: 48px;
}
.contact .contact-form-wrapper #contact-form textarea {
margin-bottom: 9px;
}
.contact .contact-form-wrapper #contact-form .mybtn1 {
margin-top: 7px;
background: rgba(212, 63, 141, 0.2);
color: #000;
transition: 0.3s;
}
.contact .contact-form-wrapper #contact-form .mybtn1:hover {
color: #fff;
}
.contact .google_map_wrapper {
padding: 0px !important;
}
.contact .google_map_wrapper iframe {
width: 100% !important;
height: 405px !important;
margin: 0px;
padding: 0px;
} .compare-section {
padding: 90px 0px 90px;
}
.compare-section .mybtn1 {
width: 120px;
height: 40px;
font-size: 14px;
line-height: 40px;
background: rgba(212, 63, 141, 0.2);
color: #000;
transition: all 0.3s linear;
}
.compare-section .mybtn1:hover {
color: #fff !important;
}
.compare-section .compare-table th,
.compare-section .compare-table td {
font-size: 14px;
vertical-align: middle;
}
.compare-section .compare-table .price {
font-size: 24px;
font-weight: 700;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.compare-section .compare-table thead .product-image {
padding: 30px 15px;
}
.compare-section .compare-table thead .product-title {
font-size: 18px;
line-height: 28px;
margin-bottom: 0px;
color: #242424;
}
.compare-section .compare-table thead .product-subtitle {
font-size: 14px;
font-weight: normal;
color: #555;
line-height: 24px;
margin-bottom: 0px;
}
.compare-section .compare-table tbody th {
width: 150px;
color: #242424;
}
.compare-section .compare-table tfoot td {
vertical-align: middle;
}
.compare-section .compare-table tfoot td a {
display: block;
margin: 0 auto;
}
.subscribe-section {
padding: 94px 0px 100px;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/map.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.subscribe-section .newsletter-form-area {
position: relative;
text-align: center;
}
.subscribe-section .newsletter-form-area input {
width: 100%;
height: 60px;
border-radius: 50px;
border: 1px solid rgba(212, 63, 141, 0.1);
padding: 0px 30px;
background: none;
color: #242424;
background: #fff;
box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.1);
}
.subscribe-section .newsletter-form-area button {
position: absolute;
top: 5px;
right: 5px;
width: auto;
height: 50px;
border-radius: 50px;
border: 0px;
color: #fff;
font-size: 16px;
padding: 0px 25px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
transition: all 0.3s ease-in;
}
.subscribe-section .newsletter-form-area button c span {
margin-right: 5px;
}
.subscribe-section .newsletter-form-area button:hover {
background-image: linear-gradient(55deg, #d43f8d 0%, #0250c5);
}
.subscribe-section .newsletter-form-area button:focus {
outline: 0px;
} .footer {
overflow: hidden;
position: relative;
padding: 90px 0px 0px;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/footer.png);
background-repeat: no-repeat;
background-size: cover;
background-repeat: no-repeat;
}
.footer .footer-info-area {
text-align: center;
}
.footer .footer-info-area .footer-logo {
margin-bottom: 23px;
display: block;
}
.footer .footer-info-area .footer-logo .logo-link {
font-size: 40px;
line-height: 50px;
font-weight: 700;
text-transform: uppercase;
}
.footer .footer-info-area .footer-logo img {
max-width: 180px;
}
.footer .footer-info-area .text {
margin-bottom: 24px;
}
.footer .fotter-social-links {
text-align: center;
margin-top: 35px;
}
.footer .fotter-social-links ul {
padding-left: 0px;
margin-left: 0px;
}
.footer .fotter-social-links ul li {
display: inline-block;
}
.footer .fotter-social-links ul li a {
font-size: 14px;
width: 35px;
height: 35px;
display: inline-block;
border-radius: 50%;
text-align: center;
line-height: 36px;
margin: 0px 3px;
color: #fff;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.18);
transition: all 0.3s ease-in;
}
.footer .fotter-social-links ul li a.facebook {
background: #0069f7;
border-color: #0069f7;
}
.footer .fotter-social-links ul li a.twitter {
background: #00c6f7;
border-color: #00c6f7;
}
.footer .fotter-social-links ul li a.linkedin {
background: #007bb5;
border-color: #007bb5;
}
.footer .fotter-social-links ul li a.dribbble {
background: #f7007a;
border-color: #f7007a;
}
.footer .fotter-social-links ul li a.google-plus {
background: #d1062c;
border-color: #d1062c;
}
.footer .copy-bg {
padding: 20px 0px 20px;
border-top: 1px solid rgba(0, 0, 0, 0.15);
margin-top: 84px;
}
.footer .copy-bg p {
font-size: 16px;
line-height: 26px;
margin-bottom: 0px;
}
.footer .copy-bg a {
font-size: 16px;
line-height: 26px;
margin-bottom: 0px;
transition: 0.3s ease-in;
}
.footer .copy-bg a:hover {
color: #0250c5;
}
.footer-widget .title {
text-transform: uppercase;
font-size: 20px;
font-weight: 600;
color: #242424;
}
.footer-widget ul {
padding-left: 0px;
margin-bottom: 0px;
}
.footer-widget ul li {
list-style: none;
}
.footer-widget ul li a {
color: #555;
transition: all 0.3s ease-in;
}
.footer-widget ul li a:hover {
color: #0250c5;
}
.footer-widget ul li i {
font-size: 14px;
margin-right: 4px;
}
.support-link-widget .title,
.use-full-link-widget .title {
margin-bottom: 11px;
}
.support-link-widget .link-list li,
.use-full-link-widget .link-list li {
border-bottom: 2px dotted rgba(0, 0, 0, 0.3);
padding: 9px 0;
display: block;
}
.support-link-widget .link-list li:last-child,
.use-full-link-widget .link-list li:last-child {
border-bottom: 0px;
}
.twitter-widget .title {
margin-bottom: 19px;
}
.twitter-widget .content i {
color: #00c6f7;
font-size: 16px;
margin-right: 5px;
display: inline-block;
}
.twitter-widget .content p {
margin-bottom: 0px;
display: inline-block;
}
.twitter-widget .content a {
display: block;
color: #0069f7;
font-style: italic;
margin-top: 8px;
}
.twitter-widget .owl-controls {
display: block;
text-align: center;
}
.twitter-widget .owl-controls .owl-nav {
position: absolute;
z-index: 9999;
bottom: -57px;
left: 0;
display: inline-block;
}
.twitter-widget .owl-controls .owl-nav div {
font-size: 0px;
position: relative;
width: 35px;
height: 35px;
display: inline-block;
}
.twitter-widget .owl-controls .owl-nav div.owl-next {
margin-left: 15px;
}
.twitter-widget .owl-controls .owl-nav div.owl-next::after {
position: absolute;
content: "";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
top: 0;
left: 0;
width: 35px;
height: 35px;
line-height: 35px;
color: #fff;
border-radius: 50%;
background: #fff;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
.twitter-widget .owl-controls .owl-nav div.owl-prev {
margin-left: 0px;
}
.twitter-widget .owl-controls .owl-nav div.owl-prev::after {
position: absolute;
content: "";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
top: 0;
left: 0;
width: 35px;
height: 35px;
line-height: 35px;
color: #fff;
border-radius: 50%;
background: #fff;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}  .index2 .hero-area {
padding: 185px 0px 118px;
overflow: visible;
}
.index2 .hero-area .curve:before {
border-right: 50vw solid transparent;
}
.index2 .hero-area .curve:after {
border-left: 50vw solid transparent;
}
.index2 .hero-area .curve:after, .index2 .hero-area .curve:before {
border-bottom: 300px solid #fff;
}
.index2 .hero-area .right-img .img {
position: absolute;
top: 50px;
left: auto;
right: 30px;
max-width: 600px;
width: auto;
z-index: 9;
}
.index2 .whaybest .about-img {
padding: 0px;
}
.index2 .feature .feature-circle {
display: none;
}
.index2 .dealofweek .deal-slider-area .content .left-area {
text-align: center;
padding: 0px 0px;
}
.index2 .pricing .product-slider .item .single-product .img {
height: 250px;
display: flex;
}
.index2 .pricing .product-slider .item .single-product .img img {
align-self: center;
}
.index2 .pricing .product-slider .item .single-product .img {
background: rgba(212, 63, 141, 0.1);
} .blog-section {
padding: 30px 0px 120px;
}
.blog-section .section-heading {
margin-bottom: 56px;
}
.single-blog .img {
position: relative;
border-radius: 13px;
overflow: hidden;
}
.single-blog .img::after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
opacity: 0;
transition: all 0.3s ease-in;
}
.single-blog .img img {
width: 100%;
}
.single-blog .content .top-meta {
margin-top: 23px;
margin-left: 0px;
padding-left: 0px;
}
.single-blog .content .top-meta li {
display: inline-block;
margin-right: 20px;
}
.single-blog .content .top-meta li:last-child {
margin-right: 0px;
}
.single-blog .content .top-meta li p {
margin-bottom: 11px;
}
.single-blog .content .title {
font-size: 20px;
line-height: 30px;
font-weight: 600;
transition: all 0.3s ease-in;
}
.single-blog .content .title:hover {
color: #0250c5;
}
.single-blog:hover .img::after {
opacity: 1;
}  .blog-page { 
padding: 0px 0px 120px; 
}
.blog-page .single-blog {
margin-bottom: 26px;
}
.blog-page .single-blog.blog-details {
padding: 0px 20px 30px 20px;
}  .pagination {
margin-top: 30px;
display: block;
margin-bottom: 0px;
}
.pagination .page-item {
display: inline-block;
}
.pagination .page-item .page-link {
width: 35px;
height: 35px;
border-radius: 50%;
text-align: center;
background: #fff;
line-height: 35px;
color: rgba(0, 0, 0, 0.6);
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
font-size: 14px;
margin: 0px 3px 0px;
padding: 0px;
font-weight: 600;
border: 0px;
transition: all 0.3s ease-in;
}
.pagination .page-item .page-link.active, .pagination .page-item .page-link:hover {
color: #fff;
background: #0250c5;
}  .categori-widget {
padding: 22px 30px 25px;
border-radius: 10px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}
.categori-widget .title {
font-size: 24px;
font-weight: 600;
line-height: 34px;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
padding-bottom: 17px;
margin-bottom: 13px;
text-align: center;
}
.categori-widget .cat-list {
padding-top: 2px;
display: block;
margin-left: 0px;
padding-left: 0px;
}
.categori-widget .cat-list li {
list-style: none;
margin-bottom: 5px;
}
.categori-widget .cat-list li:last-child {
margin-bottom: 0px;
}
.categori-widget .cat-list li a {
display: flex;
justify-content: space-between;
}
.categori-widget .cat-list li a p {
line-height: 26px;
font-size: 16px;
font-weight: 600;
margin-bottom: 0px;
color: #242424;
transition: all 0.3s ease-in;
}
.categori-widget .cat-list li a .count {
font-size: 10px;
line-height: 10px;
font-weight: 600;
background: #0250c5;
color: #fff;
padding: 4px 8px;
border-radius: 50px;
align-self: center;
}
.categori-widget .cat-list li a:hover p {
color: #0250c5;
}  .latest-post-widget {
margin-top: 30px;
padding: 22px 30px 28px;
border-radius: 10px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}
.latest-post-widget .title {
font-size: 24px;
font-weight: 600;
line-height: 34px;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
padding-bottom: 11px;
margin-bottom: 12px;
text-align: center;
}
.latest-post-widget .post-list {
padding-left: 0px;
margin-bottom: 0px;
margin-top: 18px;
}
.latest-post-widget .post-list li {
list-style: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-bottom: 10px;
margin-bottom: 10px;
}
.latest-post-widget .post-list li:last-child {
border-bottom: 0px;
margin-bottom: 0px;
padding-bottom: 0px;
}
.latest-post-widget .post-list li .post {
display: flex;
}
.latest-post-widget .post-list li .post .post-img {
margin-right: 15px;
display: flex;
}
.latest-post-widget .post-list li .post .post-img img {
align-self: center;
width: 100%;
width: 60px;
}
.latest-post-widget .post-list li .post .post-details {
flex: 1;
line-height: 20px;
}
.latest-post-widget .post-list li .post .post-details .post-title {
font-size: 14px;
line-height: 20px;
font-weight: 600;
margin-bottom: 0px;
transition: all 0.3s ease-in;
}
.latest-post-widget .post-list li .post .post-details .post-title:hover {
color: #0250c5;
}  .newsletter-widget {
margin-top: 30px;
padding: 22px 30px 30px;
border-radius: 10px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}
.newsletter-widget .title {
font-size: 24px;
font-weight: 600;
line-height: 34px;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
padding-bottom: 12px;
margin-bottom: 20px;
text-align: center;
}
.newsletter-widget form .input-field {
width: 100%;
height: 50px;
padding: 0px 20px;
border-radius: 50px;
font-size: 14px;
border: 1px solid rgba(0, 0, 0, 0.2);
}
.newsletter-widget form .mybtn2 {
display: block;
margin: 0 auto;
}  .single-blog-details .img {
position: relative;
border-radius: 13px;
overflow: hidden;
}
.single-blog-details .img img {
width: 100%;
}
.single-blog-details .content .top-meta {
margin-top: 23px;
margin-bottom: 8px;
}
.single-blog-details .content .top-meta li {
display: inline-block;
margin-right: 20px;
}
.single-blog-details .content .top-meta li:last-child {
margin-right: 0px;
}
.single-blog-details .content .top-meta li p {
padding-left: 0px;
margin-bottom: 0px;
}
.single-blog-details .content .title {
font-size: 30px;
line-height: 40px;
font-weight: 600;
margin-bottom: 20px;
transition: all 0.3s ease-in;
}
.single-blog-details .content blockquote {
margin: 22px 0px 22px;
display: block;
background: #f1f1f1;
padding: 34px 40px 37px;
border-left: 4px solid #0250c5;
font-size: 16px;
line-height: 26px;
font-weight: 600;
}
.single-blog-details .content blockquote p {
font-size: 16px;
line-height: 26px;
font-weight: 600;
margin-bottom: 0px;
}
.single-blog-details .content ul {
margin-bottom: 15px;
}
.single-blog-details .content ul li p {
margin-bottom: 0px;
font-size: 16px;
line-height: 26px;
padding-left: 30px;
position: relative;
}
.single-blog-details .content ul li p i {
position: absolute;
left: 0px;
top: 4px;
color: #0250c5;
}
.comment-area {
display: block;
margin-top: 45px;
}
.comment-area .title {
font-size: 24px;
line-height: 34px;
font-weight: 600;
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-bottom: 10px;
margin-bottom: 30px;
}
.comment-area .comment-box-area {
padding-left: 0px;
margin-bottom: 0px;
}
.comment-area .comment-box-area li {
list-style: none;
margin-bottom: 30px;
border: 1px solid #e5e9f4;
padding: 30px 30px 25px;
}
.comment-area .comment-box-area li .comment-box {
position: relative;
}
.comment-area .comment-box-area li .comment-box .left {
position: absolute;
left: 0;
top: 0;
text-align: center;
}
.comment-area .comment-box-area li .comment-box .left .img {
width: 70px;
height: 70px;
border-radius: 50%;
overflow: hidden;
margin-bottom: 19px;
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
}
.comment-area .comment-box-area li .comment-box .left .img img {
width: 100%;
border-radius: 50%;
}
.comment-area .comment-box-area li .comment-box .left .replay {
padding: 3px 20px;
text-align: center;
border-radius: 50px;
display: inline-block;
color: #fff;
background: #0250c5;
font-size: 13px;
font-weight: 600;
transition: all 0.3s ease-in;
border: 1px solid #0250c5;
}
.comment-area .comment-box-area li .comment-box .left .replay:hover {
background: #fff;
color: #0250c5;
}
.comment-area .comment-box-area li .comment-box .right {
margin-left: 100px;
}
.comment-area .comment-box-area li .comment-box .right .name {
font-size: 16px;
font-weight: 600;
color: #000000;
line-height: 24px;
}
.comment-area .comment-box-area li .comment-box .right .date {
font-size: 14px;
font-weight: 24px;
color: #888;
}
.comment-area .comment-box-area li .comment-box .right .text p {
font-size: 16px;
line-height: 26px;
margin-bottom: 0px;
}
.comment-area .comment-box-area li .comment-box.replay-comment {
margin-left: 100px;
margin-top: 26px;
}
.comment-area .comment-box-area li .replay-form {
margin-left: 0px;
padding: 30px 0px 5px;
position: relative;
}
.comment-area .comment-box-area li .replay-form .replay-form-close {
position: absolute;
top: 22px;
right: -7px;
font-weight: 700;
width: 25px;
height: 25px;
border: 1px solid rgba(0, 0, 0, 0.25);
text-align: center;
font-size: 18px;
line-height: 23px;
border-radius: 50%;
background: #fff;
cursor: pointer;
}
.comment-area .comment-box-area li .replay-form .replay-form-close:hover {
background: #0250c5;
border-color: transparent;
color: #fff;
}
.comment-area .comment-box-area li .replay-form .input-field {
background: none;
border: 1px solid #e5e9f4;
height: 60px;
font-size: 14px;
height: 100px;
padding: 10px 20px;
resize: none;
}
.comment-area .comment-box-area li .replay-form .replay-comment-btn {
border: 0px;
cursor: pointer;
}
.comment-area .comment-box-area li:last-child {
margin-bottom: 0px;
}
.comment-area .comment-box-area li:last-child .comment-box .right {
border-bottom: 0px;
}
.write-comment {
display: block;
margin-top: 53px;
}
.write-comment .title {
font-size: 24px;
line-height: 34px;
font-weight: 600;
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-bottom: 10px;
margin-bottom: 30px;
}
.write-comment .input-field {
display: block;
}
.write-comment .base-btn1 {
cursor: pointer;
margin-top: 10px;
border: 0px;
font-weight: 600;
border: 1px solid #0250c5;
}
.write-comment .base-btn1 i {
font-size: 14px;
margin-left: 10px;
}  .auth {
padding: 120px 0px 120px;
}
.auth .sign-form {
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
padding: 33px 30px 40px;
}
.auth .sign-form .heading {
text-align: center;
margin-bottom: 26px;
}
.auth .sign-form .heading .title {
font-size: 24px;
font-weight: 600;
line-height: 34px;
margin-bottom: 0px;
}
.auth .sign-form .heading .subtitle {
font-size: 16px;
line-height: 26px;
}
.auth .sign-form .form-control {
margin-bottom: 15px;
height: 50px;
padding: 0px 20px;
font-size: 14px;
}
.auth .sign-form .custom-checkbox {
margin-top: 25px;
font-size: 14px;
line-height: 24px;
}
.auth .sign-form .custom-checkbox .custom-control-label a {
color: #0250c5;
}
.auth .sign-form .base-btn1 {
width: 100%;
height: 40px;
line-height: 40px;
padding: 0px;
border-radius: 4px;
margin-top: 27px;
margin-bottom: 25px;
}
.auth .sign-form .reg-text {
font-size: 14px;
}
.auth .sign-form .reg-text a {
font-weight: 600;
transition: all 0.3s ease-in;
}
.auth .sign-form .reg-text a:hover {
color: #0250c5;
}
.bigbtn {
width: 100%;
background: #0250c5;
border: 0px;
cursor: pointer;
color: #fff;
padding: 9px 20px;
border-radius: 3px;
box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
margin-top: 20px;
margin-bottom: 15px;
text-transform: uppercase;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease-in;
}
.bigbtn:hover {
background: #d43f8d;
}
.h-100v {
height: 100vh !important;
}  .error-404 .base-btn1 {
margin-top: 30px;
} .home5 .hero-area {
position: relative;
background: none;
overflow: hidden;
}
.home5 .hero-area::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
border-radius: 0px 0px 300px 0px;
}
.home5 .hero-area .shape {
position: absolute;
top: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
@keyframes sclanmi3 {
0% {
transform: scale(0.8);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0.8);
}
}
.home5 .hero-area .discount-circle-inner {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .about {
position: relative;
}
.home5 .about .box {
margin-bottom: 30px;
background: #fff;
box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
border-radius: 30px 0px 30px 0px;
}
.home5 .about .box .inner-box .icon i {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .about .box::after {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
opacity: 1;
width: 100%;
height: 0%;
top: 0px;
left: 0px;
transition: all 0.3s ease-in;
}
.home5 .about .box:hover {
transform: translateY(0px) !important;
}
.home5 .about .box:hover::after {
height: 100%;
}
.home5 .about .box:hover .icon i {
background: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .about .box:hover .title {
color: #fff;
}
.home5 .about .box:hover .text {
color: #fff;
}
.home5 .whaybest {
position: relative;
background: none;
}
.home5 .whaybest::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
border-radius: 200px 0px 200px 0px;
}
.home5 .whaybest .shape {
position: absolute;
bottom: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home5 .whaybest .info .info-title {
color: #fff;
}
.home5 .whaybest .info .feature-list li .icon i {
background: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .whaybest .info .feature-list li .content h4 {
color: #fff;
}
.home5 .whaybest .info .feature-list li .content p {
color: #fff;
}
.home5 .feature .feature-box .icon-area .icon i {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .dealofweek {
position: relative;
background: none;
overflow: hidden;
}
.home5 .dealofweek::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
border-radius: 200px 0px 200px 0px;
}
.home5 .dealofweek .shape {
position: absolute;
bottom: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home5 .dealofweek .section-title .title {
color: #fff;
}
.home5 .dealofweek .section-title p {
color: #fff;
}
.home5 .dealofweek .deal-slider-area {
box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.219), 0px 0px 0px 20px rgba(255, 255, 255, 0.219), 0px 0px 0px 30px rgba(255, 255, 255, 0.219);
}
.home5 .pricing .product-slider .owl-controls .owl-nav div:hover {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .video {
position: relative;
background: none;
overflow: hidden;
}
.home5 .video::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
border-radius: 200px 0px 200px 0px;
}
.home5 .video .shape {
position: absolute;
top: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home5 .video .section-title .title {
color: #fff;
}
.home5 .video .section-title p {
color: #fff;
}
.home5 .video .video-play-btn i,
.home5 .video .fun-box .inner-content2 .icon i,
.home5 .video .fun-box .inner-content3 .icon i {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .testimonial-area {
position: relative;
background: none;
overflow: hidden;
}
.home5 .testimonial-area::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
border-radius: 200px 0px 200px 0px;
}
.home5 .testimonial-area .shape {
position: absolute;
bottom: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home5 .testimonial-area .section-title .title {
color: #fff;
}
.home5 .testimonial-area .section-title p {
color: #fff;
}
.home5 .testimonial-area .testimonial-slider .client {
border-radius: 4px;
}
.home5 .testimonial-area .testimonial-slider .owl-controls .owl-nav div {
background: #fff;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.home5 .testimonial-area .testimonial-slider .owl-controls .owl-nav div:hover {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .testimonial-area .testimonial-slider .client .client-image::after {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .subscribe-section .download-buttons {
margin-top: 55px;
display: block;
text-align: center;
}
.home5 .subscribe-section .download-buttons .text {
font-size: 16px;
line-height: 26px;
}
.home5 .subscribe-section .download-buttons a {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
display: inline-block;
padding: 18px 30px;
font-size: 18px;
border-radius: 3px;
margin: 4px 5px;
color: #fff;
}
.home5 .subscribe-section .download-buttons a i {
font-size: 24px;
}
.home5 .subscribe-section .newsletter-form-area button {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
cursor: pointer;
}
.home5 .faq {
position: relative;
background: none;
overflow: hidden;
}
.home5 .faq::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
border-radius: 200px 0px 200px 0px;
z-index: -1;
}
.home5 .faq .shape {
position: absolute;
bottom: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home5 .faq .section-title .title {
color: #fff;
}
.home5 .faq .section-title p {
color: #fff;
}
.home5 .faq .accordion .panel::after {
display: none;
}
.home5 .contact .info-box .left .icon i {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .contact .info-box .left .icon::after {
border: 1px dashed #e42d43;
animation: shapeani2 10s linear infinite;
}
.home5 .footer {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .footer .footer-info-area .text p,
.home5 .footer .copy-bg p,
.home5 .footer .copy-bg p a {
color: #fff;
}
.home5 .bottomtotop i {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .compare-section .compare-table .price,
.home5 .pricing .product-slider .item .single-product .content .price .new-price,
.home5 .dealofweek .deal-slider-area .content .right-area .price p span {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home5 .footer .copy-bg {
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.home5 .footer .footer-info-area .footer-logo img {
max-width: 170px;
filter: brightness(0) invert(1);
}
.home5 .navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .preloader-inner {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .home5 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
background: #D31027;
background: linear-gradient(to right, #EA384D, #D31027);
}
.home5 .footer {
position: relative;
overflow: hidden;
}
.home5 .footer .shape {
position: absolute;
top: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home5 .pricing .mybtn-bg {
top: 50%;
transform: translateY(-50%);
}
.home5 .contact .contact-form-wrapper .mybtn3.mybtn-bg {
margin-top: 10px;
}
.home7 .mybtn-light span {
color: #0250c5;
}
.home7 .mybtn-light:before, .home7 .mybtn-light:after {
background: #0250c5;
}
.home7 .mybtn-bg {
background: #0250c5;
border-color: #0250c5;
}
.home7 .mybtn-bg:hover span {
color: #0250c5;
}
.home7 .contact .contact-form-wrapper .mybtn3.mybtn-bg {
margin-top: 10px;
}
.home7 .hero-area {
position: relative;
background: none;
overflow: hidden;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/hbg3.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.home7 .hero-area::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
opacity: 0.9;
}
@keyframes sclanmi3 {
0% {
transform: scale(0.8);
}
50% {
transform: scale(1);
}
100% {
transform: scale(0.8);
}
}
.home7 .hero-area .discount-circle-inner {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .about {
position: relative;
}
.home7 .about .box {
margin-bottom: 30px;
background: #fff;
box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
border-radius: 30px 0px 30px 0px;
}
.home7 .about .box .inner-box .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .about .box::after {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
opacity: 1;
width: 100%;
height: 0%;
top: 0px;
left: 0px;
transition: all 0.3s ease-in;
}
.home7 .about .box:hover {
transform: translateY(0px) !important;
}
.home7 .about .box:hover::after {
height: 100%;
}
.home7 .about .box:hover .icon i {
background: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home7 .about .box:hover .title {
color: #fff;
}
.home7 .about .box:hover .text {
color: #fff;
}
.home7 .dealofweek {
position: relative;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/dealbg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
overflow: hidden;
}
.home7 .dealofweek::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
border-radius: 0px;
opacity: 0.9;
}
.home7 .dealofweek .section-title .title {
color: #fff;
}
.home7 .dealofweek .section-title p {
color: #fff;
}
.home7 .dealofweek .deal-slider-area {
box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.219), 0px 0px 0px 20px rgba(255, 255, 255, 0.219), 0px 0px 0px 30px rgba(255, 255, 255, 0.219);
}
.home7 .pricing .product-slider .owl-controls .owl-nav div:hover {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .video {
position: relative;
background: none;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/wc.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
overflow: hidden;
}
.home7 .video::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
opacity: 0.9;
}
.home7 .video .shape {
position: absolute;
top: 0px;
left: 0px;
border-radius: 0px 0px 300px 0px;
animation: sclanmi3 7s linear infinite;
}
.home7 .video .section-title .title {
color: #fff;
}
.home7 .video .section-title p {
color: #fff;
}
.home7 .video .video-play-btn i,
.home7 .video .fun-box .inner-content2 .icon i,
.home7 .video .fun-box .inner-content3 .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .testimonial-area {
position: relative;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/test.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
overflow: hidden;
}
.home7 .testimonial-area::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
opacity: 0.9;
}
.home7 .testimonial-area .section-title .title {
color: #fff;
}
.home7 .testimonial-area .section-title p {
color: #fff;
}
.home7 .testimonial-area .testimonial-slider .client {
border-radius: 4px;
}
.home7 .testimonial-area .testimonial-slider .owl-controls .owl-nav div {
background: #fff;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.home7 .testimonial-area .testimonial-slider .owl-controls .owl-nav div:hover {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .testimonial-area .testimonial-slider .client .client-image::after {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .subscribe-section .download-buttons {
margin-top: 55px;
display: block;
text-align: center;
}
.home7 .subscribe-section .download-buttons .text {
font-size: 16px;
line-height: 26px;
}
.home7 .subscribe-section .download-buttons a {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
display: inline-block;
padding: 18px 30px;
font-size: 18px;
border-radius: 3px;
margin: 4px 5px;
color: #fff;
}
.home7 .subscribe-section .download-buttons a i {
font-size: 24px;
}
.home7 .subscribe-section .newsletter-form-area button {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
cursor: pointer;
}
.home7 .dealofweek {
position: relative;
}
.home7 .contact .info-box .left .icon i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .contact .info-box .left .icon::after {
border: 1px dashed #0250c5;
animation: shapeani2 10s linear infinite;
}
.home7 .footer .footer-info-area .text p,
.home7 .footer .copy-bg p,
.home7 .footer .copy-bg p a {
color: #fff;
}
.home7 .bottomtotop i {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .compare-section .compare-table .price,
.home7 .pricing .product-slider .item .single-product .content .price .new-price,
.home7 .dealofweek .deal-slider-area .content .right-area .price p span {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .footer .copy-bg {
position: relative;
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.home7 .footer .footer-info-area .footer-logo img {
max-width: 170px;
filter: brightness(0) invert(1);
}
.home7 .navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .preloader-inner {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .home7 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home7 .footer {
position: relative;
background: url(//westernofficesolutions.com/wp-content/themes/envision/assests/labassests/assets/images/foot.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.home7 .footer::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
opacity: 0.9;
}
.home7 .pricing .mybtn-bg {
top: 50%;
transform: translateY(-50%);
}
.home9 .mybtn-light span {
color: #0250c5;
}
.home9 .mybtn-light:before, .home9 .mybtn-light:after {
background: #0250c5;
}
.home9 .mybtn-bg {
background: #0250c5;
border-color: #0250c5;
}
.home9 .mybtn-bg:hover span {
color: #0250c5;
}
.home9 .contact .contact-form-wrapper .mybtn3.mybtn-bg {
margin-top: 10px;
}
.home9 .navigation {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.home9 .navigation.stiky-nav .navbar .navbar-brand img {
filter: unset;
}
.home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link {
color: #242424;
}
.home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .navigation .navbar .navbar-brand img {
filter: unset;
}
.home9 .navigation .navbar #mainmenu ul .nav-item .nav-link {
color: #242424;
}
.home9 .navigation .navbar #mainmenu ul .nav-item .nav-link::before {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .navigation .navbar #mainmenu ul .nav-item .nav-link:hover::before, .home9 .navigation .navbar #mainmenu ul .nav-item .nav-link.active::before {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .hero-area {
position: relative;
overflow: hidden;
background: #F7F9FF;
padding: 297px 0px 220px;
}
.home9 .hero-area .shape {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
.home9 .hero-area .left-content .content .title {
font-size: 56px;
line-height: 66px;
color: #242424;
font-weight: 700;
}
.home9 .hero-area .left-content .content .subtitle {
font-size: 18px;
line-height: 28px;
color: #242424;
margin-top: 26px;
}
.home9 .hero-area .left-content .content .links {
margin-top: 42px;
padding-right: 15px;
}
.home9 .hero-area .left-content .content .links a {
margin-left: 0px;
}
.home9 .hero-area .right-img {
text-align: center;
position: relative;
}
.home9 .hero-area .right-img::after {
position: absolute;
content: " ";
width: 300px;
height: 300px;
background: rgba(59, 38, 219, 0.1);
top: 50%;
left: 50%;
border-radius: 50%;
transform: translate(-50%, -50%);
z-index: 1;
animation: b-shadow 2s linear infinite;
}
.home9 .hero-area .right-img .discount-circle {
position: absolute;
left: 80px;
top: -30px;
z-index: 96;
}
.home9 .hero-area .right-img .img {
position: relative;
top: auto;
left: auto;
max-width: 100%;
width: auto;
animation: none;
z-index: 5;
}
.home9 .about {
position: relative;
}
.home9 .about .box {
margin-bottom: 30px;
background: #fff;
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
border-radius: 15px;
}
.home9 .about .box .inner-box .icon i {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home9 .about .box::after {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
width: 0%;
height: 0%;
top: 50%;
left: 50%;
opacity: 0;
transform: translate(-50%, -50%);
transition: all 0.3s ease-in;
border-radius: 50%;
}
.home9 .about .box:hover {
transform: translateY(0px) !important;
}
.home9 .about .box:hover::after {
width: 100%;
height: 100%;
opacity: 1;
border-radius: 0%;
}
.home9 .about .box:hover .icon i {
background: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home9 .about .box:hover .title {
color: #fff;
}
.home9 .about .box:hover .text {
color: #fff;
}
.home9 .whaybest {
position: relative;
}
.home9 .whaybest .shape {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
.home9 .whaybest .shape2 {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
.home9 .dealofweek {
position: relative;
overflow: hidden;
background: #F7F9FF;
}
.home9 .dealofweek .shape {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
.home9 .dealofweek .shape2 {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
.home9 .dealofweek .deal-slider-area {
border-radius: 15px;
background: #fff;
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
}
.home9 .pricing .product-slider .owl-controls .owl-nav div {
transition: none;
box-shadow: 0px 20px 20px 0px rgba(0, 37, 93, 0.1);
}
.home9 .pricing .product-slider .owl-controls .owl-nav div:hover {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .video {
position: relative;
background: #F7F9FF;
overflow: hidden;
}
.home9 .video .shape {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
.home9 .video .shape2 {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
.home9 .video .fun-box .inner-content,
.home9 .video .video-wrapper .video-box {
border-radius: 10px;
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15) !important;
}
.home9 .video .video-play-btn i,
.home9 .video .fun-box .inner-content2 .icon i,
.home9 .video .fun-box .inner-content3 .icon i {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home9 .testimonial-area {
position: relative;
background: #F7F9FF;
overflow: hidden;
}
.home9 .testimonial-area .shape {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
.home9 .testimonial-area .shape2 {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
.home9 .testimonial-area .testimonial-slider .client {
border-radius: 15px;
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
}
.home9 .testimonial-area .testimonial-img img {
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
}
.home9 .testimonial-area .testimonial-slider .owl-controls .owl-nav div {
background: #fff;
transition: none;
box-shadow: 0px 20px 20px 0px rgba(0, 37, 93, 0.1);
}
.home9 .testimonial-area .testimonial-slider .owl-controls .owl-nav div:hover {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .testimonial-area .testimonial-slider .client .client-image::after {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .subscribe-section .newsletter-form-area {
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
border-radius: 50px;
}
.home9 .subscribe-section .newsletter-form-area input {
box-shadow: none;
border: 0px;
}
.home9 .subscribe-section .download-buttons {
margin-top: 55px;
display: block;
text-align: center;
}
.home9 .subscribe-section .download-buttons .text {
font-size: 16px;
line-height: 26px;
}
.home9 .subscribe-section .download-buttons a {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
display: inline-block;
padding: 18px 30px;
font-size: 18px;
border-radius: 3px;
margin: 4px 5px;
color: #fff;
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
}
.home9 .subscribe-section .download-buttons a i {
font-size: 24px;
}
.home9 .faq {
position: relative;
background: #F7F9FF;
overflow: hidden;
}
.home9 .faq .shape {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
.home9 .faq .shape2 {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
.home9 .faq .panel {
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
margin-bottom: 30px;
}
.home9 .faq .panel:last-child {
margin-bottom: 0px;
}
.home9 .subscribe-section .newsletter-form-area button {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
cursor: pointer;
}
.home9 .dealofweek {
position: relative;
}
.home9 .contact .info-box {
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
border-radius: 15px;
}
.home9 .contact .contact-form-wrapper,
.home9 .contact .google_map_wrapper {
border-radius: 15px;
box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
}
.home9 .contact .google_map_wrapper #map {
border-radius: 15px;
}
.home9 .contact .info-box .left .icon i {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home9 .contact .info-box .left .icon::after {
border: 1px dashed #0250c5;
animation: shapeani2 10s linear infinite;
}
.home9 .bottomtotop i {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .compare-section .compare-table .price,
.home9 .pricing .product-slider .item .single-product .content .price .new-price,
.home9 .dealofweek .deal-slider-area .content .right-area .price p span {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.home9 .footer .copy-bg {
position: relative;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.home9 .footer .footer-info-area .footer-logo img {
max-width: 170px;
filter: none;
}
.home9 .footer .fotter-social-links ul li a {
box-shadow: 0px 20px 20px 0px rgba(0, 37, 93, 0.15);
}
.home9 .navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .preloader-inner {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
background: #3b26db;
background: linear-gradient(to right, #3b26db, #7b19cb);
}
.home9 .footer {
position: relative;
background: #F7F9FF;
overflow: hidden;
}
.home9 .footer .shape2 {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
.home9 .pricing .mybtn-bg {
top: 50%;
transform: translateY(-50%);
}@media only screen and (max-width: 1199px){
.footer .copy-bg {
margin-top: 110px;
}
.hero-area .left-content .content .title {
font-size: 48px;
line-height: 58px;
} 
.hero-area {
padding: 345px 0px 272px;
}
.about .right-shape {
right: -240px;
}
.about .left-shape {
left: -240px;
}
.faq .right-shape {
right: -240px;
}
.feature .feature-box .feature-circle{
display: none;
}
.video .fun-box .inner-content3 {
margin-top: 0px;
}
.contact {
padding: 90px 0px 100px;
}
.hero-area .right-img .img {
left: 40px;
}
.whybest .box{
margin-bottom: 30px;
}
.whybest {
padding: 85px 0px 60px;
}
.about .round-shape{
display: none;
}
.whaybest .info .info-title,
.section-title .title
{
font-size: 34px;
line-height: 43px;
}
.hero-area .right-img .img {
max-width: 350px;
}
.discount-circle-inner {
width: 90px;
height: 90px;
}
.discount-circle-inner::before {
width: 110px;
height: 110px;
}
.hero-area .right-img .discount-circle {
left: 50px;
top: -87px;
}
.whaybest .about-img {
padding: 0px 60px;
}
.feature .feature-box .details .title,
.dealofweek .deal-slider-area .content .right-area .name,
.about .box .inner-box .title,
.whaybest .feature-list li .content h4
{
font-size: 20px;
line-height: 30px;
}
.dealofweek .deal-slider-area .content .right-area .deal-counter span {
padding: 5px 14px;
font-size: 20px;
line-height: 24px;
}
.dealofweek .deal-slider-area .content .right-area .price p span,
.pricing .product-slider .item .single-product .content .price .new-price
{
font-size: 26px;
} .index2 .hero-area .curve::after, .index2 .hero-area .curve::before {
border-bottom: 200px solid #fff;
}
.index2 .hero-area .right-img .img {
max-width: 450px;
}
}
@media only screen and (max-width: 991px) {
.footer-widget.support-link-widget {
margin-top: 18px;
}
.footer-widget.footer-widget.twitter-widget {
margin-top: 18px;
}
.footer .copy-bg {
margin-top: 100px;
}
.animateme{
transform: none !important;
opacity: 1 !important;
}
.whybest {
padding: 85px 0px 70px;
}
.about .about-img{
margin-bottom: 40px;
}
.about .row-one {
padding-bottom: 94px;
margin-bottom: 100px;;
border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.about .left-shape {
bottom: 280px;
}
.hero-area .right-img .img {
position: relative;
animation: none;
}
.navigation .navbar {
padding: 5px 15px;
}
.navigation .navbar #mainmenu ul li a {
padding: 10px 10px 10px!important;
display: inline-block;
}
.navbar #mainmenu ul li a.active::after {
bottom: 6px;
}
.hero-area .right-img .img {
top: auto;
left: auto;
bottom: auto;
right: auto;
}
.hero-area {
padding: 188px 0px 123px;
}
.hero-area .right-img .discount-circle {
left: 150px;
top: 70px;
}
.hero-area .right-img .img{
margin-bottom: 50px;
}
.center-feature {
margin: 5px 0px 34px;
}
.video .fun-box .inner-content1{
margin-top: 30px;
margin-bottom: 0px;
}
.faq .faq-img {
margin-top: 30px;
}
.navigation .navbar .navbar-brand img {
filter: unset;
}
.navigation{
background: #fff;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link {
color: #242424;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link::before {
background-image: -webkit-linear-gradient(35deg, #0250c5 0%, #d43f8d 100%);
background-image: -o-linear-gradient(35deg, #0250c5 0%, #d43f8d 100%);
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.navigation .navbar #mainmenu ul .nav-item .nav-link:hover::before, 
.navigation .navbar #mainmenu ul .nav-item .nav-link.active::before {
background-image: -webkit-linear-gradient(35deg, #0250c5 0%, #d43f8d 100%);
background-image: -o-linear-gradient(35deg, #0250c5 0%, #d43f8d 100%);
background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.home5 .navigation .navbar #mainmenu ul .nav-item .nav-link::before {
background: #D31027; 
background: -webkit-linear-gradient(to right, #EA384D, #D31027); 
background: linear-gradient(to right, #EA384D, #D31027); 
}
.home5 .navigation .navbar #mainmenu ul .nav-item .nav-link:hover::before, 
.home5 .navigation .navbar #mainmenu ul .nav-item .nav-link.active::before {
background: #D31027; 
background: -webkit-linear-gradient(to right, #EA384D, #D31027); 
background: linear-gradient(to right, #EA384D, #D31027); 
}
#mainmenu ul.navbar-nav{
height: 250px;
overflow: auto;
}
.about .box{
margin-bottom: 30px;
}
.whaybest .about-img img{
animation: unset;
max-width: 350px;
display: inline-block;
margin-bottom: 42px;
}
.center-feature img{
max-width: 350px; 
margin: 14px 0px 14px;
}
.feature .left-feature .feature-box .icon{
margin-right: 0px;
}
.whaybest .about-img{
text-align: center;
width: 100%;
padding: 0px;
}
.whaybest {
padding: 120px 0px 97px;
}
.whaybest .feature-list {
margin-top: 50px;
}
.whaybest .feature-list li {
margin-bottom: 22px;
}
.whaybest .row-one {
margin-bottom: 77px;
}
.feature .section-title {
margin-bottom: 54px;
}
.feature {
padding: 100px 0px 88px;
}
.dealofweek .deal-slider-area .content .left-area img{
margin-bottom: 50px;
}
.pricing .product-slider .item .single-product .img img{
max-width: 220px;
}
.faq .section-title.extra .title{
margin-bottom: 18px;
}
.faq {
padding: 100px 0px 100px;
}
.contact {
padding: 100px 0px 100px;
}
.dealofweek .deal-slider-area .content .right-area{
text-align: center;
} .index2 .hero-area .curve::after, .index2 .hero-area .curve::before {
border-bottom: 80px solid #fff;
}
.index2 .hero-area .right-img .img {
position: relative;
top: auto;
left: auto;
right: auto;
max-width: 450px;
width: auto;
}
.index2 .hero-area {
padding: 189px 0px 122px;
}
.google_map_wrapper{
margin-top: 30px;
}
.breadcrumb-area {
padding: 112px 0px 64px;
}
.breadcrumb-area .title {
font-size: 30px;
line-height: 40px;
}
.categori-widget{
margin-top: 30px;
}
.home5 .hero-area::before,
.home5 .whaybest::before,
.home5 .dealofweek::before,
.home5 .video::before,
.home5 .testimonial-area::before,
.home5 .faq::before
{
border-radius: 0px;
}
.home9 .hero-area .right-img {
padding: 0px 190px;
margin-bottom: 50px;
}
.home9 .hero-area .right-img::after {
width: 190px;
height: 190px;
}
.home9 .hero-area .right-img .img{
margin-bottom: 0px;
}
.home9 .hero-area {
padding: 178px 0px 120px;
}
.home9 .hero-area .left-content .content .title {
font-size: 40px;
line-height: 50px;
}
}
@media only screen and (max-width: 767px) {
.curve::after, .curve::before {
border-bottom: 50px solid #fff;
}
.curve.curve-top::after, .curve.curve-top::before {
border-top: 50px solid #fff;
}
.footer .copy-bg {
margin-top: 96px;
}
.hero-area .right-img .discount-circle {
left: 60px;
top: 70px;
}
.hero-area .left-content .content .title {
font-size: 54px;
line-height: 64px;
}
.center-feature img,
.whaybest .about-img img,
.hero-area .right-img .img,
.dealofweek .deal-slider-area .content .left-area img
{
max-width: 250px;
width: 100%;
}
.footer-widget.use-full-link-widget{
margin-top: 18px;
} .index2 .center-feature img, 
.index2 .whaybest .about-img img, 
.index2 .hero-area .right-img .img, 
.index2 .dealofweek .deal-slider-area .content .left-area img {
max-width: 100%;
width: auto;
}
.index2 .pricing .product-slider .item .single-product .img img {
max-width: 280px;
margin: 0 auto;
}
.index2 .pricing .product-slider .item .single-product .img{
text-align: center;
padding: 0px 30px;
}
.home9 .hero-area .right-img {
padding: 0px 101px;
}
}
@media only screen and (max-width: 575px) {
.hero-area .left-content .content .title {
font-size: 40px;
line-height: 50px;
}
.section-title .title,
.about .info .info-title,
.whaybest .info .info-title, .section-title .title
{
font-size: 30px;
line-height: 40px;
}
.whybest .box .inner-box .title,
.feature .feature-box .details .title,
.video .fun-box .inner-content .categori,
.pricing .product-slider .item .single-product .content .title,
.comment-area .title,
.write-comment .title,
.categori-widget .title,
.latest-post-widget .title,
.newsletter-widget .title,
.single-blog-details .content .title
{
font-size: 20px;
line-height: 30px;
}
.pricing .product-slider .item .single-product .content .price .new-price,
.dealofweek .deal-slider-area .content .right-area .price p span,
.single-feature .title,
.single-how-it-work .title,
.breadcrumb-area .title
{
font-size: 24px;
line-height: 34px;
}  
.home9 .hero-area .right-img {
padding: 0px 101px;
}
}
@media only screen and (max-width: 500px) {
.hero-area .right-img {
padding: 0px 50px;
}
.discount-circle-inner {
height: 70px;
width: 70px;
}
.discount-circle-inner::before {
width: 85px;
height: 85px;
}
.hero-area .right-img .discount-circle .discount-circle-inner .price {
font-size: 20px;
line-height: 28px;
}
.hero-area .right-img .discount-circle .discount-circle-inner .price span {
font-size: 14px;
line-height: 13px;
}
.discount-circle-inner::after {
border: 2px dashed #fff;
}
.testimonial-area .right-shape3 {
top: 50%;
transform: translateY(-50%);
}
.contact .info-contact li .info-box .left .icon {
font-size: 24px;
}
.about .about-img,
.center-feature
{
padding: 0px 30px;
}
.home9 .hero-area .right-img {
padding: 0px 80px;
}
}
@media only screen and (max-width: 414px) {
.whaybest .feature-list li{
max-width: 100%;
flex: 100%;
}
.hero-area {
padding: 160px 0px 94px;
}
.hero-area .left-content .content .title {
font-size: 30px;
line-height: 42px;
}
.hero-area .right-img {
padding: 0px 30px;
}
.section-title .title, 
.about .info .info-title,
.whaybest .info .info-title, .section-title .title
{
font-size: 25px;
line-height: 35px;
}
.footer .fotter-social-links ul li a {
font-size: 16px;
width: 40px;
height: 40px;
line-height: 40px;
}
.about .box .inner-box .icon {
font-size: 46px;
}
.subscribe-section .newsletter-form-area button span{
display: none;
}
.comment-area .comment-box-area li .comment-box.replay-comment {
margin-left: 30px;
}
.comment-area .comment-box-area li .comment-box .left{
position: relative;
display: inline-block;
margin-bottom: 20px;
}
.comment-area .comment-box-area li .comment-box .right{
margin-left: 0px;
}
.custom-control.custom-checkbox.d-flex{
display: block!important;
}
.custom-control.custom-checkbox.d-flex span,
.custom-control.custom-checkbox.d-flex a
{
display: block;
}
.home9 .hero-area .right-img {
padding: 0px 30px;
}
.home9 .hero-area .left-content .content .title {
font-size: 34px;
line-height: 44px;
}
}
@media only screen and (max-width: 390px) {
.contact .info-contact li .info-box{
display: flow-root;
text-align: center;
}
.contact .info-contact li .info-box .right{
justify-content: center;
}
.contact .info-contact li .info-box .left {
margin-right: 0px;
margin-bottom: 25px;
}
.dealofweek .deal-slider-area {
padding: 30px 15px 30px;
}
}
@media only screen and (max-width: 360px) {
.hero-area .right-img {
padding: 0px 0px;
}
.about .about-img,
.center-feature
{
padding: 0px 0px;
}
.testimonial-area .testimonial-slider .client {
margin: 65px 15px 65px;
padding: 85px 20px 27px;
}
.dealofweek .deal-slider-area .content .left-area {
text-align: center;
padding: 0px 30px;
}
.home9 .hero-area .right-img {
padding: 0px 20px;
}
.home9 .hero-area .right-img::after {
width: 150px;
height: 150px;
}
}