@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
@keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
}
@-webkit-keyframes pulse {
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
from,
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
from,
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
from,
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
from,
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 {
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);
}
0%,
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
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);
}
0%,
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 {
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
from,
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
from,
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
@-webkit-keyframes wobble {
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);
}
from,
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
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);
}
from,
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
}
@-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
}
@-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.fl-node-603d838da58cd.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58cd.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58cd.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58cd.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58cd.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58cd.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58cd.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58cd.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-603d838da58cd.fl-row-fixed-width, .fl-node-603d838da58cd .fl-row-fixed-width {max-width: 1000px;}.fl-node-3okd5lj86mnb.fl-row-full-height > .fl-row-content-wrap, .fl-node-3okd5lj86mnb.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-3okd5lj86mnb.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-3okd5lj86mnb.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-3okd5lj86mnb.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-3okd5lj86mnb.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-3okd5lj86mnb.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-3okd5lj86mnb.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-3okd5lj86mnb > .fl-row-content-wrap {background-image: radial-gradient(at center center, #7084BC 0%, #14213D 100%);}.fl-node-3okd5lj86mnb .fl-builder-top-edge-layer {top: 11vw;}.fl-node-3okd5lj86mnb .fl-builder-top-edge-layer > * {width: 100%;left: auto;right: auto;height: 10vw;top: 0;bottom: auto;transform: scaleX(1) scaleY(1);}.fl-node-3okd5lj86mnb .fl-builder-top-edge-layer .fl-shape-content .fl-shape {fill: rgba(116,135,190,0.54);}.fl-node-3okd5lj86mnb .fl-builder-bottom-edge-layer > * {width: 1500px;left: auto;right: 0;height: auto;top: auto;bottom: 0;transform: scaleX(-1) scaleY(-1);}.fl-node-3okd5lj86mnb .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {fill: #14213d;}.fl-node-603d838da58d5.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58d5.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58d5.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58d5.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58d5.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58d5.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58d5.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58d5.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-ebtnk784zpqu.fl-row-full-height > .fl-row-content-wrap, .fl-node-ebtnk784zpqu.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-ebtnk784zpqu.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-ebtnk784zpqu.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-ebtnk784zpqu.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-ebtnk784zpqu.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-ebtnk784zpqu.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-ebtnk784zpqu.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-tbe4puq6zn5o.fl-row-full-height > .fl-row-content-wrap, .fl-node-tbe4puq6zn5o.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-tbe4puq6zn5o.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-tbe4puq6zn5o.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-tbe4puq6zn5o.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-tbe4puq6zn5o.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-tbe4puq6zn5o.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-tbe4puq6zn5o.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-tbe4puq6zn5o > .fl-row-content-wrap {border-style: solid;border-width: 0;background-clip: border-box;border-color: #f47821;border-top-width: 5px;border-right-width: 5px;border-bottom-width: 5px;border-left-width: 5px;} .fl-node-tbe4puq6zn5o > .fl-row-content-wrap {margin-top:50px;margin-bottom:20px;}.fl-node-603d838da58f1.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58f1.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58f1.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58f1.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58f1.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58f1.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58f1.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58f1.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-603d838da58fc.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58fc.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58fc.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58fc.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58fc.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58fc.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58fc.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58fc.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-xi6vlpcu09eg.fl-row-full-height > .fl-row-content-wrap, .fl-node-xi6vlpcu09eg.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-xi6vlpcu09eg.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-xi6vlpcu09eg.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-xi6vlpcu09eg.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-xi6vlpcu09eg.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-xi6vlpcu09eg.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-xi6vlpcu09eg.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-xi6vlpcu09eg > .fl-row-content-wrap {background-color: #880000;} .fl-node-xi6vlpcu09eg > .fl-row-content-wrap {padding-right:0px;padding-left:0px;}.fl-node-603d838da58d8.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58d8.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58d8.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58d8.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58d8.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58d8.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58d8.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58d8.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-1qpyf8v4n0om.fl-row-full-height > .fl-row-content-wrap, .fl-node-1qpyf8v4n0om.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-1qpyf8v4n0om.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-1qpyf8v4n0om.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-1qpyf8v4n0om.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-1qpyf8v4n0om.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-1qpyf8v4n0om.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-1qpyf8v4n0om.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-603d838da58e8.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58e8.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58e8.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58e8.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58e8.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58e8.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58e8.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58e8.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-e1zuwo5sbrh9.fl-row-full-height > .fl-row-content-wrap, .fl-node-e1zuwo5sbrh9.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-e1zuwo5sbrh9.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-e1zuwo5sbrh9.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-e1zuwo5sbrh9.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-e1zuwo5sbrh9.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-e1zuwo5sbrh9.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-e1zuwo5sbrh9.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-e1zuwo5sbrh9 > .fl-row-content-wrap {padding-bottom:60px;}.fl-node-80cbxzwu7o3s.fl-row-full-height > .fl-row-content-wrap, .fl-node-80cbxzwu7o3s.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-80cbxzwu7o3s.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-80cbxzwu7o3s.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-80cbxzwu7o3s.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-80cbxzwu7o3s.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-80cbxzwu7o3s.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-80cbxzwu7o3s.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-80cbxzwu7o3s > .fl-row-content-wrap {background-color: rgba(0,0,0,0.03);}.fl-node-80cbxzwu7o3s.fl-row-fixed-width, .fl-node-80cbxzwu7o3s .fl-row-fixed-width {max-width: 1100px;} .fl-node-80cbxzwu7o3s > .fl-row-content-wrap {padding-bottom:0px;}.fl-node-603d838da58dd.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58dd.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58dd.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58dd.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58dd.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58dd.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58dd.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58dd.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-603d838da58dd > .fl-row-content-wrap {padding-top:30px;padding-bottom:30px;}.fl-node-2pa4wbnvz0o3.fl-row-full-height > .fl-row-content-wrap, .fl-node-2pa4wbnvz0o3.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-2pa4wbnvz0o3.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-2pa4wbnvz0o3.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-2pa4wbnvz0o3.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-2pa4wbnvz0o3.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-2pa4wbnvz0o3.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-2pa4wbnvz0o3.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-z86t9p7j5cmb.fl-row-full-height > .fl-row-content-wrap, .fl-node-z86t9p7j5cmb.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-z86t9p7j5cmb.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-z86t9p7j5cmb.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-z86t9p7j5cmb.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-z86t9p7j5cmb.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-z86t9p7j5cmb.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-z86t9p7j5cmb.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-3jy8mq04wcte.fl-row-full-height > .fl-row-content-wrap, .fl-node-3jy8mq04wcte.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-3jy8mq04wcte.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-3jy8mq04wcte.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-3jy8mq04wcte.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-3jy8mq04wcte.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-3jy8mq04wcte.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-3jy8mq04wcte.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-3jy8mq04wcte > .fl-row-content-wrap {border-style: none;border-width: 0;background-clip: border-box;}.fl-node-3jy8mq04wcte .fl-row-content {max-width: 1000px;} .fl-node-3jy8mq04wcte > .fl-row-content-wrap {margin-bottom:10px;} .fl-node-3jy8mq04wcte > .fl-row-content-wrap {padding-bottom:20px;}.fl-node-bpv0257tgrdi.fl-row-full-height > .fl-row-content-wrap, .fl-node-bpv0257tgrdi.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-bpv0257tgrdi.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-bpv0257tgrdi.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-bpv0257tgrdi.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-bpv0257tgrdi.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-bpv0257tgrdi.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-bpv0257tgrdi.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-leo1v6gta8m0.fl-row-full-height > .fl-row-content-wrap, .fl-node-leo1v6gta8m0.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-leo1v6gta8m0.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-leo1v6gta8m0.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-leo1v6gta8m0.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-leo1v6gta8m0.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-leo1v6gta8m0.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-leo1v6gta8m0.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-5jub61983wae.fl-row-full-height > .fl-row-content-wrap, .fl-node-5jub61983wae.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-5jub61983wae.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-5jub61983wae.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-5jub61983wae.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-5jub61983wae.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-5jub61983wae.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-5jub61983wae.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-5jub61983wae > .fl-row-content-wrap {border-style: none;border-width: 0;background-clip: border-box;border-top-width: 7px;border-right-width: 7px;border-bottom-width: 7px;border-left-width: 7px;} .fl-node-5jub61983wae > .fl-row-content-wrap {padding-top:5px;padding-bottom:20px;}.fl-node-smtbr1wagodu.fl-row-full-height > .fl-row-content-wrap, .fl-node-smtbr1wagodu.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-smtbr1wagodu.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-smtbr1wagodu.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-smtbr1wagodu.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-smtbr1wagodu.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-smtbr1wagodu.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-smtbr1wagodu.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-om34ren0h21b.fl-row-full-height > .fl-row-content-wrap, .fl-node-om34ren0h21b.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-om34ren0h21b.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-om34ren0h21b.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-om34ren0h21b.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-om34ren0h21b.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-om34ren0h21b.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-om34ren0h21b.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-kmxoujv2qp4t.fl-row-full-height > .fl-row-content-wrap, .fl-node-kmxoujv2qp4t.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-kmxoujv2qp4t.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-kmxoujv2qp4t.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-kmxoujv2qp4t.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-kmxoujv2qp4t.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-kmxoujv2qp4t.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-kmxoujv2qp4t.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-daycoz4uvkx0.fl-row-full-height > .fl-row-content-wrap, .fl-node-daycoz4uvkx0.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-daycoz4uvkx0.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-daycoz4uvkx0.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-daycoz4uvkx0.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-daycoz4uvkx0.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-daycoz4uvkx0.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-daycoz4uvkx0.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-603d838da5917.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da5917.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da5917.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da5917.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da5917.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da5917.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da5917.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da5917.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-bzc5h4epdryx.fl-row-full-height > .fl-row-content-wrap, .fl-node-bzc5h4epdryx.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-bzc5h4epdryx.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-bzc5h4epdryx.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-bzc5h4epdryx.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-bzc5h4epdryx.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-bzc5h4epdryx.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-bzc5h4epdryx.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-bzc5h4epdryx > .fl-row-content-wrap {background-color: #5e17eb;}.fl-node-bzc5h4epdryx.fl-row-fixed-width, .fl-node-bzc5h4epdryx .fl-row-fixed-width {max-width: 1000px;}.fl-node-asqo2bvmiduz.fl-row-full-height > .fl-row-content-wrap, .fl-node-asqo2bvmiduz.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-asqo2bvmiduz.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-asqo2bvmiduz.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-asqo2bvmiduz.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-asqo2bvmiduz.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-asqo2bvmiduz.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-asqo2bvmiduz.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-lkfuwi3691og.fl-row-full-height > .fl-row-content-wrap, .fl-node-lkfuwi3691og.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-lkfuwi3691og.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-lkfuwi3691og.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-lkfuwi3691og.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-lkfuwi3691og.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-lkfuwi3691og.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-lkfuwi3691og.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-if2o3mjbupl8.fl-row-full-height > .fl-row-content-wrap, .fl-node-if2o3mjbupl8.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-if2o3mjbupl8.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-if2o3mjbupl8.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-if2o3mjbupl8.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-if2o3mjbupl8.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-if2o3mjbupl8.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-if2o3mjbupl8.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-usak5yoe8mp1.fl-row-full-height > .fl-row-content-wrap, .fl-node-usak5yoe8mp1.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-usak5yoe8mp1.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-usak5yoe8mp1.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-usak5yoe8mp1.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-usak5yoe8mp1.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-usak5yoe8mp1.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-usak5yoe8mp1.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-srlj02h7a9v1.fl-row-full-height > .fl-row-content-wrap, .fl-node-srlj02h7a9v1.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-srlj02h7a9v1.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-srlj02h7a9v1.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-srlj02h7a9v1.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-srlj02h7a9v1.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-srlj02h7a9v1.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-srlj02h7a9v1.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-srlj02h7a9v1 > .fl-row-content-wrap {background-color: #0A0605;}.fl-node-srlj02h7a9v1 .fl-row-content {max-width: 1200px;} .fl-node-srlj02h7a9v1 > .fl-row-content-wrap {padding-top:80px;padding-bottom:80px;}@media ( max-width: 768px ) { .fl-node-srlj02h7a9v1.fl-row > .fl-row-content-wrap {padding-top:20px;padding-bottom:20px;}}.fl-node-9b5o8ehiatpy.fl-row-full-height > .fl-row-content-wrap, .fl-node-9b5o8ehiatpy.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-9b5o8ehiatpy.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-9b5o8ehiatpy.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-9b5o8ehiatpy.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-9b5o8ehiatpy.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-9b5o8ehiatpy.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-9b5o8ehiatpy.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-v9dnabloh485.fl-row-full-height > .fl-row-content-wrap, .fl-node-v9dnabloh485.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-v9dnabloh485.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-v9dnabloh485.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-v9dnabloh485.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-v9dnabloh485.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-v9dnabloh485.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-v9dnabloh485.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-2893h4dyuc0s.fl-row-full-height > .fl-row-content-wrap, .fl-node-2893h4dyuc0s.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-2893h4dyuc0s.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-2893h4dyuc0s.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-2893h4dyuc0s.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-2893h4dyuc0s.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-2893h4dyuc0s.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-2893h4dyuc0s.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-w6v01e3xrh98.fl-row-full-height > .fl-row-content-wrap, .fl-node-w6v01e3xrh98.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-w6v01e3xrh98.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-w6v01e3xrh98.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-w6v01e3xrh98.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-w6v01e3xrh98.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-w6v01e3xrh98.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-w6v01e3xrh98.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-w6v01e3xrh98 > .fl-row-content-wrap {background-color: #21366b;} .fl-node-w6v01e3xrh98 > .fl-row-content-wrap {padding-top:40px;padding-bottom:50px;}.fl-node-603d838da58ed.fl-row-full-height > .fl-row-content-wrap, .fl-node-603d838da58ed.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-603d838da58ed.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-603d838da58ed.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-603d838da58ed.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-603d838da58ed.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-603d838da58ed.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-603d838da58ed.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-603d838da58ed.fl-row-fixed-width, .fl-node-603d838da58ed .fl-row-fixed-width {max-width: 1000px;}.fl-node-603d838da58d2 {width: 100%;}.fl-node-603d838da58f0 {width: 100%;}.fl-node-6fumkpwz3jtr {width: 50%;}.fl-node-d3shlboxzmr5 {width: 50%;}.fl-node-2af7m6e01ocg {width: 33.33%;}.fl-node-z0pqin95a3jy {width: 8%;}.fl-node-zlwjf1e9amdp {width: 58.67%;}.fl-node-zy0ln8bd9ugc {width: 100%;}.fl-node-603d838da58d7 {width: 100%;}.fl-node-395anqyjr2k6 {width: 100%;}.fl-node-5ee2c1e938b10 {width: 100%;}.fl-node-5ee2c1e938b13 {width: 50%;}.fl-node-5ee2c1e938b14 {width: 50%;}.fl-node-5ee2c1e938b17 {width: 50%;}.fl-node-5ee2c1e938b18 {width: 50%;}.fl-node-603d838da58f3 {width: 100%;}.fl-node-603d838da5907 {width: 100%;}.fl-node-603d838da58fe {width: 100%;}.fl-node-5f9ba78d88331 {width: 50%;}.fl-node-5f9ba78d88332 {width: 50%;}.fl-node-5fd176424cc97 {width: 50%;}.fl-node-5fd176424cc9b {width: 50%;}.fl-node-603d838da58da {width: 100%;}.fl-node-42zhmyadceo6 {width: 100%;}.fl-node-6u7hw0i54gtm {width: 100%;}.fl-node-603d838da58ea {width: 100%;}.fl-node-p8uky4rd9tj7 {width: 100%;}.fl-node-p8uky4rd9tj7 > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-s6jqg0mo3vef {width: 100%;}.fl-node-2zd0xtjc1f8r {width: 33.33%;}.fl-node-9saybqvpmj3w {width: 33.33%;}.fl-node-vbso3xc9d7q2 {width: 33.33%;}.fl-node-i68yvbq1e43l {width: 50%;}.fl-node-shmr13ne0toz {width: 50%;}.fl-node-603d838da58df {width: 100%;}.fl-node-pzt429eruka7 {width: 100%;}.fl-node-cd3sth1n75by {width: 100%;}.fl-node-cd3sth1n75by > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-q0li3v61uow7 {width: 100%;}.fl-node-56frxel01mdc {width: 100%;}.fl-node-z3y6s1kuir0o {width: 100%;}.fl-node-5eb611653da18 {width: 100%;}.fl-node-5eb611653da18 > .fl-col-content {background-color: #ffffff;border-style: dashed;border-width: 0;background-clip: border-box;border-color: #800000;border-top-width: 5px;border-right-width: 5px;border-bottom-width: 5px;border-left-width: 5px;}.fl-node-5f7da5dba3127 {width: 50%;}.fl-node-5f7da5dba312b {width: 50%;}.fl-node-ukxs9zrt56n7 {width: 100%;}.fl-node-z9vh7pgq0381 {width: 100%;}.fl-node-xzarqb46elw8 {width: 100%;}.fl-node-dcl0rv9x5kpz {width: 100%;}.fl-node-dvcs4z9m5lkw {width: 100%;}.fl-node-40swqiy6cmr8 {width: 50%;}.fl-node-sxcbfq0md9n4 {width: 50%;}.fl-node-i4bqk6vhc5r9 {width: 100%;}.fl-node-5ijp7dusor3m {width: 100%;}.fl-node-mpx6kbvh5zsf {width: 100%;}.fl-node-yqp71er5nl4x {width: 100%;}.fl-node-asix2bl1c90e {width: 100%;}.fl-node-belvkpr96h5f {width: 100%;}.fl-node-fpy6obt5vx2k {width: 100%;}.fl-node-4l09qj3ugisv {width: 100%;}.fl-node-4h697aqrenvl {width: 100%;}.fl-node-zxt27mo0i65r {width: 100%;}.fl-node-psgij7zhelw1 {width: 50%;}.fl-node-w6o9a2f4enbs {width: 50%;}.fl-node-603d838da5919 {width: 100%;}.fl-node-zv0amp12jo9k {width: 100%;}.fl-node-vzb1ptsy7g56 {width: 50%;}.fl-node-velqozb05ksh {width: 49%;}.fl-node-k1r27bxdy9lc {width: 100%;}.fl-node-rb3528f4mqvi {width: 100%;}.fl-node-rb3528f4mqvi > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-li5sn4extjwp {width: 100%;}.fl-node-05a9uxh7qs3t {width: 100%;}.fl-node-60acb700bedea {width: 100%;}.fl-node-k2yfrhvgi7ce {width: 100%;}.fl-node-4xclrgf7a8ye {width: 100%;}.fl-node-34lwszfrhxt0 {width: 100%;}.fl-node-jvx3nm6hzc24 {width: 100%;}.fl-node-jvx3nm6hzc24 > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-d41ytzixus8v {width: 100%;}.fl-node-85ktp7wlbad9 {width: 59.02%;}@media(max-width: 992px) {.fl-builder-content .fl-node-85ktp7wlbad9 {width: 59.02% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 768px) {.fl-builder-content .fl-node-85ktp7wlbad9 {width: 59.02% !important;max-width: none;clear: none;float: left;}}.fl-node-fn9eubwj6m8h {width: 40.98%;} .fl-node-elvauypgh1q0 > .fl-module-content {margin-left:65px;}@media (max-width: 768px) { .fl-node-elvauypgh1q0 > .fl-module-content { margin-left:20px; } } .fl-node-5ee2c1e938b19 > .fl-module-content {margin-top:40px;margin-right:40px;margin-bottom:40px;margin-left:40px;}@media (max-width: 768px) { .fl-node-5ee2c1e938b19 > .fl-module-content { margin-top:20px;margin-bottom:20px;margin-left:20px;margin-right:20px; } } .fl-node-5f9ba78d88335 > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;} .fl-node-5fd1731feb819 > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;} .fl-node-j1dwn3xo54eu > .fl-module-content {margin-top:-10px;}@media (max-width: 768px) { .fl-node-j1dwn3xo54eu > .fl-module-content { margin-top:20px; } } .fl-node-603d838da58eb > .fl-module-content {margin-top:30px;margin-bottom:30px;}@media (max-width: 768px) { .fl-node-603d838da58eb > .fl-module-content { margin-top:20px;margin-bottom:20px; } } .fl-node-3h67y98dwpra > .fl-module-content {margin-top:10px;} .fl-node-kbqp07gxyico > .fl-module-content {margin-top:0px;margin-bottom:-20px;}@media (max-width: 768px) { .fl-node-kbqp07gxyico > .fl-module-content { margin-bottom:20px; } } .fl-node-8n5ab93kzo6l > .fl-module-content {margin-top:0px;margin-bottom:0px;} .fl-node-vnpz5uyi7gkc > .fl-module-content {margin-top:20px;margin-bottom:0px;} .fl-node-pwm8dofzey32 > .fl-module-content {margin-top:7px;margin-bottom:49px;}@media (max-width: 768px) { .fl-node-pwm8dofzey32 > .fl-module-content { margin-bottom:20px; } } .fl-node-txn3bdwo24ih > .fl-module-content {margin-top:10px;} .fl-node-50i3sm6qa7fn > .fl-module-content {margin-top:30px;}@media (max-width: 768px) { .fl-node-50i3sm6qa7fn > .fl-module-content { margin-top:20px; } } .fl-node-5f6378d4491cb > .fl-module-content {margin-bottom:0px;} .fl-node-07fheil19qsx > .fl-module-content {margin-top:30px;}@media (max-width: 768px) { .fl-node-07fheil19qsx > .fl-module-content { margin-top:20px; } } .fl-node-iasp15z6bn2h > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;} .fl-node-v7deuqt51gbw > .fl-module-content {margin-top:-35px;margin-right:-28px;margin-bottom:-1px;margin-left:-1px;}@media (max-width: 768px) { .fl-node-v7deuqt51gbw > .fl-module-content { margin-top:20px;margin-bottom:20px;margin-left:20px;margin-right:20px; } } .fl-node-hrge3c4zbvu5 > .fl-module-content {margin-top:20px;margin-bottom:20px;} .fl-node-u58o4tlrsi1y > .fl-module-content {margin-top:20px;margin-bottom:0px;} .fl-node-b3onh97tzpaj > .fl-module-content {margin-top:-10px;}@media (max-width: 768px) { .fl-node-b3onh97tzpaj > .fl-module-content { margin-top:20px; } } .fl-node-wrdef0xhzb4v > .fl-module-content {margin-top:30px;}@media (max-width: 768px) { .fl-node-wrdef0xhzb4v > .fl-module-content { margin-top:20px; } } .fl-node-pikuql3o17ac > .fl-module-content {margin-top:30px;}@media (max-width: 768px) { .fl-node-pikuql3o17ac > .fl-module-content { margin-top:20px; } } .fl-node-9krixa83h0oq > .fl-module-content {margin-top:30px;}@media (max-width: 768px) { .fl-node-9krixa83h0oq > .fl-module-content { margin-top:20px; } } .fl-node-38pd4tfe1uh0 > .fl-module-content {margin-top:-80px;}@media (max-width: 768px) { .fl-node-38pd4tfe1uh0 > .fl-module-content { margin-top:20px; } } .fl-node-w91nkf7gqbvi > .fl-module-content {margin-top:5px;margin-bottom:20px;} .fl-node-d3kcl79e2xb5 > .fl-module-content {margin-top:0px;} .fl-node-9pa036cuvmtb > .fl-module-content {margin-top:-55px;}@media (max-width: 768px) { .fl-node-9pa036cuvmtb > .fl-module-content { margin-top:20px; } } .fl-node-3jx2hb4wztcr > .fl-module-content {margin-top:30px;margin-bottom:30px;}@media (max-width: 768px) { .fl-node-3jx2hb4wztcr > .fl-module-content { margin-top:20px;margin-bottom:20px; } } .fl-node-1vo2ihukdt0x > .fl-module-content {margin-top:10px;} .fl-node-vjwn1l2aouk5 > .fl-module-content {margin-top:40px;margin-bottom:30px;}@media (max-width: 768px) { .fl-node-vjwn1l2aouk5 > .fl-module-content { margin-top:20px;margin-bottom:20px; } } .fl-node-hrxzldb03ykf > .fl-module-content {margin-top:10px;} .fl-node-bwasln51m3i0 > .fl-module-content {margin-top:0px;}.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content: flex-end;justify-content: flex-end;-webkit-box-align: end; -webkit-box-pack: end;-ms-flex-pack: end;}.uabb-module-content h1,.uabb-module-content h2,.uabb-module-content h3,.uabb-module-content h4,.uabb-module-content h5,.uabb-module-content h6 {margin: 0;clear: both;}.fl-module-content a,.fl-module-content a:hover,.fl-module-content a:focus {text-decoration: none;}.uabb-row-separator {position: absolute;width: 100%;left: 0;}.uabb-top-row-separator {top: 0;bottom: auto}.uabb-bottom-row-separator {top: auto;bottom: 0;}.fl-builder-content-editing .fl-visible-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: none !important;}@media (max-width: 992px) {.fl-builder-content-editing .fl-visible-desktop.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: none !important;}.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {display: block !important;}}@media (max-width: 768px) {.fl-builder-content-editing .fl-visible-desktop.uabb-row,.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium.uabb-row {display: none !important;}.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: block !important;}}.fl-responsive-preview-content .fl-builder-content-editing {overflow-x: hidden;overflow-y: visible;}.uabb-row-separator svg {width: 100%;}.uabb-top-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 50%;top: -1px;bottom: auto;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 50%;bottom: -1px;top: auto;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {bottom: 0;}.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {top: 0;}.uabb-bottom-row-separator.uabb-svg-triangle svg,.uabb-bottom-row-separator.uabb-xlarge-triangle svg,.uabb-top-row-separator.uabb-xlarge-triangle-left svg,.uabb-bottom-row-separator.uabb-svg-circle svg,.uabb-top-row-separator.uabb-slime-separator svg,.uabb-top-row-separator.uabb-grass-separator svg,.uabb-top-row-separator.uabb-grass-bend-separator svg,.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,.uabb-top-row-separator.uabb-wave-slide-separator svg,.uabb-top-row-separator.uabb-pine-tree-separator svg,.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,.uabb-bottom-row-separator.uabb-stamp-separator svg,.uabb-bottom-row-separator.uabb-xlarge-circle svg,.uabb-top-row-separator.uabb-wave-separator svg{left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-big-triangle svg {left: 50%;-webkit-transform: scale(1) scaleY(-1) translateX(-50%); -moz-transform: scale(1) scaleY(-1) translateX(-50%);-ms-transform: scale(1) scaleY(-1) translateX(-50%); -o-transform: scale(1) scaleY(-1) translateX(-50%);transform: scale(1) scaleY(-1) translateX(-50%);}.uabb-top-row-separator.uabb-big-triangle svg {left: 50%;-webkit-transform: translateX(-50%) scale(1); -moz-transform: translateX(-50%) scale(1);-ms-transform: translateX(-50%) scale(1); -o-transform: translateX(-50%) scale(1);transform: translateX(-50%) scale(1);}.uabb-top-row-separator.uabb-xlarge-triangle-right svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-curve-up-separator svg {left: 50%; -webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-top-row-separator.uabb-curve-down-separator svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-bottom-row-separator.uabb-curve-down-separator svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-top-row-separator.uabb-tilt-right-separator svg{left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-tilt-left-separator svg {left: 50%;-webkit-transform: translateX(-50%); -moz-transform: translateX(-50%);-ms-transform: translateX(-50%); -o-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-tilt-right-separator svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator,.uabb-top-row-separator.uabb-tilt-right-separator {top: 0;}.uabb-bottom-row-separator.uabb-tilt-left-separator,.uabb-bottom-row-separator.uabb-tilt-right-separator {bottom: 0;}.uabb-top-row-separator.uabb-arrow-outward-separator svg,.uabb-top-row-separator.uabb-arrow-inward-separator svg,.uabb-top-row-separator.uabb-cloud-separator svg,.uabb-top-row-separator.uabb-multi-triangle svg {left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-multi-triangle svg {bottom: -2px;}.uabb-row-separator.uabb-round-split:after,.uabb-row-separator.uabb-round-split:before {left: 0;width: 50%;background: inherit inherit/inherit inherit inherit inherit;content: '';position: absolute}.uabb-button-wrap a,.uabb-button-wrap a:visited {display: inline-block;font-size: 16px;line-height: 18px;text-decoration: none;text-shadow: none;}.fl-builder-content .uabb-button:hover {text-decoration: none;}.fl-builder-content .uabb-button-width-full .uabb-button {display: block;text-align: center;}.uabb-button-width-custom .uabb-button {display: inline-block;text-align: center;max-width: 100%;}.fl-builder-content .uabb-button-left {text-align: left;}.fl-builder-content .uabb-button-center {text-align: center;}.fl-builder-content .uabb-infobox .uabb-button-center,.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,.fl-builder-content .uabb-ultb3-box .uabb-button-center,.fl-builder-content .uabb-slide-down .uabb-button-center,.fl-builder-content .uabb-blog-post-content .uabb-button-center,.fl-builder-content .uabb-cta-wrap .uabb-button-center,.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{text-align: inherit;}.fl-builder-content .uabb-button-right {text-align: right;}.fl-builder-content .uabb-button i,.fl-builder-content .uabb-button i:before {font-size: 1em;height: 1em;line-height: 1em;width: 1em;}.uabb-button .uabb-button-icon-after {margin-left: 8px;margin-right: 0;}.uabb-button .uabb-button-icon-before {margin-left: 0;margin-right: 8px;}.uabb-button .uabb-button-icon-no-text {margin: 0;}.uabb-button-has-icon .uabb-button-text {vertical-align: middle;}.uabb-icon-wrap {display: inline-block;}.uabb-icon a {text-decoration: none;}.uabb-icon i {display: block;}.uabb-icon i:before {border: none !important;background: none !important;}.uabb-icon-text {display: table-cell;text-align: left;padding-left: 15px;vertical-align: middle;}.uabb-icon-text *:last-child {margin: 0 !important;padding: 0 !important;}.uabb-icon-text a {text-decoration: none;}.uabb-photo {line-height: 0;position: relative;z-index: 2;}.uabb-photo-align-left {text-align: left;}.uabb-photo-align-center {text-align: center;}.uabb-photo-align-right {text-align: right;}.uabb-photo-content {border-radius: 0;display: inline-block;line-height: 0;position: relative;max-width: 100%;overflow: hidden;}.uabb-photo-content img {border-radius: inherit;display: inline;height: auto;max-width: 100%;width: auto;}.fl-builder-content .uabb-photo-crop-circle img {-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;}.fl-builder-content .uabb-photo-crop-square img {-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;}.uabb-photo-caption {font-size: 13px;line-height: 18px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}.uabb-photo-caption-below {padding-bottom: 20px;padding-top: 10px;}.uabb-photo-caption-hover {background: rgba(0,0,0,0.7);bottom: 0;color: #fff;left: 0;opacity: 0;visibility: hidden;filter: alpha(opacity = 0);padding: 10px 15px;position: absolute;right: 0;-webkit-transition:visibility 200ms linear;-moz-transition:visibility 200ms linear;transition:visibility 200ms linear;}.uabb-photo-content:hover .uabb-photo-caption-hover {opacity: 100;visibility: visible;}.uabb-active-btn {background: #1e8cbe;border-color: #0074a2;-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);box-shadow: inset 0 1px 0 rgba(120,200,230,.6);color: white;}.fl-builder-bar .fl-builder-add-content-button {display: block !important;opacity: 1 !important;}.uabb-imgicon-wrap .uabb-icon {display: block;}.uabb-imgicon-wrap .uabb-icon i{float: none;}.uabb-imgicon-wrap .uabb-image {line-height: 0;position: relative;}.uabb-imgicon-wrap .uabb-image-align-left {text-align: left;}.uabb-imgicon-wrap .uabb-image-align-center {text-align: center;}.uabb-imgicon-wrap .uabb-image-align-right {text-align: right;}.uabb-imgicon-wrap .uabb-image-content {display: inline-block;border-radius: 0;line-height: 0;position: relative;max-width: 100%;}.uabb-imgicon-wrap .uabb-image-content img {display: inline;height: auto !important;max-width: 100%;width: auto;border-radius: inherit;box-shadow: none;box-sizing: content-box;}.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;}.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {background: #fafafa;border: 1px solid #ccc;color: #333;display: inline-block;vertical-align: middle;text-align: center;overflow: hidden;text-decoration: none;text-shadow: none;box-shadow: none;position: relative;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button-wrap a:focus {text-decoration: none;text-shadow: none;box-shadow: none;}.uabb-creative-button-wrap a .uabb-creative-button-text,.uabb-creative-button-wrap a .uabb-creative-button-icon,.uabb-creative-button-wrap a:visited .uabb-creative-button-text,.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button-wrap a:hover {text-decoration: none;}.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {display: block;text-align: center;}.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {display: inline-block;text-align: center;max-width: 100%;}.uabb-creative-button-wrap .uabb-creative-button-left {text-align: left;}.uabb-creative-button-wrap .uabb-creative-button-center {text-align: center;}.uabb-creative-button-wrap .uabb-creative-button-right {text-align: right;}.uabb-creative-button-wrap .uabb-creative-button i {font-size: 1.3em;height: auto;vertical-align: middle;width: auto;}.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {margin-left: 8px;margin-right: 0;}.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {margin-right: 8px;margin-left: 0;}.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {margin: 0;}.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {vertical-align: middle;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {padding: 12px 24px;}.uabb-creative-button.uabb-creative-transparent-btn {background: transparent;}.uabb-creative-button.uabb-creative-transparent-btn:after {content: '';position: absolute;z-index: 1;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-transparent-fill-top-btn:after,.uabb-transparent-fill-bottom-btn:after {width: 100%;height: 0;left: 0;}.uabb-transparent-fill-top-btn:after {top: 0;}.uabb-transparent-fill-bottom-btn:after {bottom: 0;}.uabb-transparent-fill-left-btn:after,.uabb-transparent-fill-right-btn:after {width: 0;height: 100%;top: 0;}.uabb-transparent-fill-left-btn:after {left: 0;}.uabb-transparent-fill-right-btn:after {right: 0;}.uabb-transparent-fill-center-btn:after{width: 0;height: 100%;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-transparent-fill-diagonal-btn:after,.uabb-transparent-fill-horizontal-btn:after {width: 100%;height: 0;top: 50%;left: 50%;}.uabb-transparent-fill-diagonal-btn{overflow: hidden;}.uabb-transparent-fill-diagonal-btn:after{-webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg ); -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );-ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg ); -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );transform: translateX(-50%) translateY(-50%) rotate( 45deg );}.uabb-transparent-fill-horizontal-btn:after{-webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {-webkit-transition: none; -moz-transition: none;-ms-transition: none; -o-transition: none;transition: none;}.perspective {-webkit-perspective: 800px; -moz-perspective: 800px;perspective: 800px;margin: 0;}.uabb-creative-button.uabb-creative-threed-btn:after {content: '';position: absolute;z-index: -1;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button.uabb-creative-threed-btn {outline: 1px solid transparent;-webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d;transform-style: preserve-3d;}.uabb-creative-threed-btn.uabb-animate_top-btn:after {height: 40%;left: 0;top: -40%;width: 100%;-webkit-transform-origin: 0% 100%; -moz-transform-origin: 0% 100%;transform-origin: 0% 100%;-webkit-transform: rotateX(90deg); -moz-transform: rotateX(90deg);transform: rotateX(90deg);}.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {width: 100%;height: 40%;left: 0;top: 100%;-webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%;-ms-transform-origin: 0% 0%;transform-origin: 0% 0%;-webkit-transform: rotateX(-90deg); -moz-transform: rotateX(-90deg);-ms-transform: rotateX(-90deg);transform: rotateX(-90deg);}.uabb-creative-threed-btn.uabb-animate_left-btn:after {width: 20%;height: 100%;left: -20%;top: 0;-webkit-transform-origin: 100% 0%; -moz-transform-origin: 100% 0%;-ms-transform-origin: 100% 0%;transform-origin: 100% 0%;-webkit-transform: rotateY(-60deg); -moz-transform: rotateY(-60deg);-ms-transform: rotateY(-60deg);transform: rotateY(-60deg);}.uabb-creative-threed-btn.uabb-animate_right-btn:after {width: 20%;height: 100%;left: 104%;top: 0;-webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%;-ms-transform-origin: 0% 0%;transform-origin: 0% 0%;-webkit-transform: rotateY(120deg); -moz-transform: rotateY(120deg);-ms-transform: rotateY(120deg);transform: rotateY(120deg);}.uabb-animate_top-btn:hover{-webkit-transform: rotateX(-15deg); -moz-transform: rotateX(-15deg);-ms-transform: rotateX(-15deg); -o-transform: rotateX(-15deg);transform: rotateX(-15deg);}.uabb-animate_bottom-btn:hover{-webkit-transform: rotateX(15deg); -moz-transform: rotateX(15deg);-ms-transform: rotateX(15deg); -o-transform: rotateX(15deg);transform: rotateX(15deg);}.uabb-animate_left-btn:hover{-webkit-transform: rotateY(6deg); -moz-transform: rotateY(6deg);-ms-transform: rotateY(6deg); -o-transform: rotateY(6deg);transform: rotateY(6deg);}.uabb-animate_right-btn:hover{-webkit-transform: rotateY(-6deg); -moz-transform: rotateY(-6deg);-ms-transform: rotateY(-6deg); -o-transform: rotateY(-6deg);transform: rotateY(-6deg);}.uabb-creative-flat-btn.uabb-animate_to_right-btn,.uabb-creative-flat-btn.uabb-animate_to_left-btn,.uabb-creative-flat-btn.uabb-animate_from_top-btn,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {overflow: hidden;position: relative;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i,.uabb-creative-flat-btn.uabb-animate_to_left-btn i,.uabb-creative-flat-btn.uabb-animate_from_top-btn i,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {bottom: 0;height: 100%;margin: 0;opacity: 1;position: absolute;right: 0;width: 100%;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;transition: all 200ms linear;-webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {display: inline-block;width: 100%;height: 100%;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;-webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;backface-visibility: hidden;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {position: absolute;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%);-moz-transform: translateX(-50%) translateY(-50%);-o-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {left: 0;}.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {top: 0;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i {top: 0;left: -100%;}.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {-webkit-transform: translateX(200%); -moz-transform: translateX(200%);-ms-transform: translateX(200%); -o-transform: translateX(200%);transform: translateX(200%);}.uabb-creative-flat-btn.uabb-animate_to_left-btn i {top: 0;left: 100%;}.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {-webkit-transform: translateX(-200%); -moz-transform: translateX(-200%);-ms-transform: translateX(-200%); -o-transform: translateX(-200%);transform: translateX(-200%);}.uabb-creative-flat-btn.uabb-animate_from_top-btn i {top: -100%;left: 0;}.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {-webkit-transform: translateY(400px); -moz-transform: translateY(400px);-ms-transform: translateY(400px); -o-transform: translateY(400px);transform: translateY(400px);}.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {top: 100%;left: 0;}.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {-webkit-transform: translateY(-400px); -moz-transform: translateY(-400px);-ms-transform: translateY(-400px); -o-transform: translateY(-400px);transform: translateY(-400px);}.uabb-tab-acc-content .wp-video, .uabb-tab-acc-content video.wp-video-shortcode, .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .uabb-tab-acc-content .mejs-overlay.load,.uabb-adv-accordion-content .wp-video, .uabb-adv-accordion-content video.wp-video-shortcode, .uabb-adv-accordion-content .mejs-container:not(.mejs-audio), .uabb-adv-accordion-content .mejs-overlay.load {width: 100% !important;height: 100% !important;}.uabb-tab-acc-content .mejs-container:not(.mejs-audio),.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {padding-top: 56.25%;}.uabb-tab-acc-content .wp-video, .uabb-tab-acc-content video.wp-video-shortcode,.uabb-adv-accordion-content .wp-video, .uabb-adv-accordion-content video.wp-video-shortcode {max-width: 100% !important;}.uabb-tab-acc-content video.wp-video-shortcode,.uabb-adv-accordion-content video.wp-video-shortcode {position: relative;}.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {position: absolute;top: 0;right: 0;bottom: 0;left: 0;}.uabb-tab-acc-content .mejs-overlay-play,.uabb-adv-accordion-content .mejs-overlay-play {top: 0;right: 0;bottom: 0;left: 0;width: auto !important;height: auto !important;}.fl-row-content-wrap .uabb-row-particles-background,.uabb-col-particles-background {width:100%;height:100%;position:absolute;left:0;top:0;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {font-family: inherit;font-weight: inherit;font-size: px;}.uabb-dual-button .uabb-btn,.uabb-dual-button .uabb-btn:visited {font-family: inherit;font-weight: inherit;font-size: px;}.uabb-js-breakpoint {content:"default";display:none;}@media screen and (max-width: 992px) {.uabb-js-breakpoint {content:"992";}}@media screen and (max-width: 768px) {.uabb-js-breakpoint {content:"768";}}.fl-node-6xbfuzhrikyd.fl-row-full-height > .fl-row-content-wrap, .fl-node-6xbfuzhrikyd.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-6xbfuzhrikyd.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-6xbfuzhrikyd.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-6xbfuzhrikyd.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-6xbfuzhrikyd.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-6xbfuzhrikyd.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-6xbfuzhrikyd.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-6xbfuzhrikyd.fl-row-fixed-width, .fl-node-6xbfuzhrikyd .fl-row-fixed-width {max-width: 1000px;}.fl-node-daogly7etv30.fl-row-full-height > .fl-row-content-wrap, .fl-node-daogly7etv30.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-daogly7etv30.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-daogly7etv30.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-daogly7etv30.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-daogly7etv30.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-daogly7etv30.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-daogly7etv30.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-jm9cb1zgfo6t.fl-row-full-height > .fl-row-content-wrap, .fl-node-jm9cb1zgfo6t.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-jm9cb1zgfo6t.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-jm9cb1zgfo6t.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-jm9cb1zgfo6t.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-jm9cb1zgfo6t.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-jm9cb1zgfo6t.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-jm9cb1zgfo6t.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-jm9cb1zgfo6t > .fl-row-content-wrap {background-image: radial-gradient(at center center, #7084BC 0%, #14213D 100%);}.fl-node-jm9cb1zgfo6t .fl-builder-top-edge-layer {top: 11vw;}.fl-node-jm9cb1zgfo6t .fl-builder-top-edge-layer > * {width: 100%;left: auto;right: auto;height: 10vw;top: 0;bottom: auto;transform: scaleX(1) scaleY(1);}.fl-node-jm9cb1zgfo6t .fl-builder-top-edge-layer .fl-shape-content .fl-shape {fill: rgba(116,135,190,0.54);}.fl-node-jm9cb1zgfo6t .fl-builder-bottom-edge-layer > * {width: 1500px;left: auto;right: 0;height: auto;top: auto;bottom: 0;transform: scaleX(-1) scaleY(-1);}.fl-node-jm9cb1zgfo6t .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {fill: #14213d;}.fl-node-n5aojlg7x24f.fl-row-full-height > .fl-row-content-wrap, .fl-node-n5aojlg7x24f.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-n5aojlg7x24f.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-n5aojlg7x24f.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-n5aojlg7x24f.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-n5aojlg7x24f.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-n5aojlg7x24f.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-n5aojlg7x24f.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-n5aojlg7x24f > .fl-row-content-wrap {padding-top:0px;}.fl-node-548duktgzarm.fl-row-full-height > .fl-row-content-wrap, .fl-node-548duktgzarm.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-548duktgzarm.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-548duktgzarm.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-548duktgzarm.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-548duktgzarm.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-548duktgzarm.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-548duktgzarm.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-jmyxs5940d1a.fl-row-full-height > .fl-row-content-wrap, .fl-node-jmyxs5940d1a.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-jmyxs5940d1a.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-jmyxs5940d1a.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-jmyxs5940d1a.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-jmyxs5940d1a.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-jmyxs5940d1a.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-jmyxs5940d1a.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-3aej5dzwcrbh.fl-row-full-height > .fl-row-content-wrap, .fl-node-3aej5dzwcrbh.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-3aej5dzwcrbh.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-3aej5dzwcrbh.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-3aej5dzwcrbh.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-3aej5dzwcrbh.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-3aej5dzwcrbh.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-3aej5dzwcrbh.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-4g08x2vj7d9q.fl-row-full-height > .fl-row-content-wrap, .fl-node-4g08x2vj7d9q.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-4g08x2vj7d9q.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-4g08x2vj7d9q.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-4g08x2vj7d9q.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-4g08x2vj7d9q.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-4g08x2vj7d9q.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-4g08x2vj7d9q.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-0e3m4a2xfdq7.fl-row-full-height > .fl-row-content-wrap, .fl-node-0e3m4a2xfdq7.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-0e3m4a2xfdq7.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-0e3m4a2xfdq7.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-0e3m4a2xfdq7.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-0e3m4a2xfdq7.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-0e3m4a2xfdq7.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-0e3m4a2xfdq7.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-0vdb74xhnyj1.fl-row-full-height > .fl-row-content-wrap, .fl-node-0vdb74xhnyj1.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-0vdb74xhnyj1.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-0vdb74xhnyj1.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-0vdb74xhnyj1.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-0vdb74xhnyj1.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-0vdb74xhnyj1.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-0vdb74xhnyj1.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-0vdb74xhnyj1 > .fl-row-content-wrap {background-color: rgba(0,0,0,0.03);}.fl-node-0vdb74xhnyj1.fl-row-fixed-width, .fl-node-0vdb74xhnyj1 .fl-row-fixed-width {max-width: 1100px;} .fl-node-0vdb74xhnyj1 > .fl-row-content-wrap {padding-bottom:0px;}.fl-node-wfh74d6j0skl.fl-row-full-height > .fl-row-content-wrap, .fl-node-wfh74d6j0skl.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-wfh74d6j0skl.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-wfh74d6j0skl.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-wfh74d6j0skl.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-wfh74d6j0skl.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-wfh74d6j0skl.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-wfh74d6j0skl.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-9u1xrldz3gmy.fl-row-full-height > .fl-row-content-wrap, .fl-node-9u1xrldz3gmy.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-9u1xrldz3gmy.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-9u1xrldz3gmy.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-9u1xrldz3gmy.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-9u1xrldz3gmy.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-9u1xrldz3gmy.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-9u1xrldz3gmy.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-jcn5xl4g3b8o.fl-row-full-height > .fl-row-content-wrap, .fl-node-jcn5xl4g3b8o.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-jcn5xl4g3b8o.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-jcn5xl4g3b8o.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-jcn5xl4g3b8o.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-jcn5xl4g3b8o.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-jcn5xl4g3b8o.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-jcn5xl4g3b8o.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-68gp13tirck9.fl-row-full-height > .fl-row-content-wrap, .fl-node-68gp13tirck9.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-68gp13tirck9.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-68gp13tirck9.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-68gp13tirck9.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-68gp13tirck9.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-68gp13tirck9.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-68gp13tirck9.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-tecauqxnrjzi.fl-row-full-height > .fl-row-content-wrap, .fl-node-tecauqxnrjzi.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-tecauqxnrjzi.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-tecauqxnrjzi.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-tecauqxnrjzi.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-tecauqxnrjzi.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-tecauqxnrjzi.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-tecauqxnrjzi.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-lotbxu4a6zk0.fl-row-full-height > .fl-row-content-wrap, .fl-node-lotbxu4a6zk0.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-lotbxu4a6zk0.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-lotbxu4a6zk0.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-lotbxu4a6zk0.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-lotbxu4a6zk0.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-lotbxu4a6zk0.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-lotbxu4a6zk0.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-lotbxu4a6zk0 > .fl-row-content-wrap {border-style: none;border-width: 0;background-clip: border-box;}.fl-node-lotbxu4a6zk0 .fl-row-content {max-width: 1000px;} .fl-node-lotbxu4a6zk0 > .fl-row-content-wrap {margin-bottom:10px;} .fl-node-lotbxu4a6zk0 > .fl-row-content-wrap {padding-bottom:20px;}.fl-node-s3nbcrfoe6wy.fl-row-full-height > .fl-row-content-wrap, .fl-node-s3nbcrfoe6wy.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-s3nbcrfoe6wy.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-s3nbcrfoe6wy.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-s3nbcrfoe6wy.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-s3nbcrfoe6wy.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-s3nbcrfoe6wy.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-s3nbcrfoe6wy.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-1fye5x2s04rc.fl-row-full-height > .fl-row-content-wrap, .fl-node-1fye5x2s04rc.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-1fye5x2s04rc.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-1fye5x2s04rc.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-1fye5x2s04rc.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-1fye5x2s04rc.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-1fye5x2s04rc.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-1fye5x2s04rc.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-d1mbf34sal6g.fl-row-full-height > .fl-row-content-wrap, .fl-node-d1mbf34sal6g.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-d1mbf34sal6g.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-d1mbf34sal6g.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-d1mbf34sal6g.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-d1mbf34sal6g.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-d1mbf34sal6g.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-d1mbf34sal6g.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-yuls46hvenk2.fl-row-full-height > .fl-row-content-wrap, .fl-node-yuls46hvenk2.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-yuls46hvenk2.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-yuls46hvenk2.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-yuls46hvenk2.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-yuls46hvenk2.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-yuls46hvenk2.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-yuls46hvenk2.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-yuls46hvenk2 > .fl-row-content-wrap {background-image: url(https://japanswitch.com/jswp/wp-content/uploads/2022/03/affordable-japanese-lesson-better-quality-1-1.jpg);background-repeat: no-repeat;background-position: center center;background-attachment: scroll;background-size: contain;border-style: solid;border-width: 0;background-clip: border-box;border-color: #21366b;border-top-width: 10px;border-right-width: 10px;border-bottom-width: 10px;border-left-width: 10px;border-top-left-radius: 45px;border-top-right-radius: 45px;border-bottom-left-radius: 45px;border-bottom-right-radius: 45px;}.fl-node-yuls46hvenk2.fl-row-fixed-width, .fl-node-yuls46hvenk2 .fl-row-fixed-width {max-width: 758px;} .fl-node-yuls46hvenk2 > .fl-row-content-wrap {margin-top:0px;margin-right:-25px;margin-bottom:0px;margin-left:-17px;}.fl-node-r8dxab7sz3qt.fl-row-full-height > .fl-row-content-wrap, .fl-node-r8dxab7sz3qt.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-r8dxab7sz3qt.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-r8dxab7sz3qt.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-r8dxab7sz3qt.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-r8dxab7sz3qt.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-r8dxab7sz3qt.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-r8dxab7sz3qt.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-r8dxab7sz3qt.fl-row-fixed-width, .fl-node-r8dxab7sz3qt .fl-row-fixed-width {max-width: 1000px;}.fl-node-5t9yusji72l1.fl-row-full-height > .fl-row-content-wrap, .fl-node-5t9yusji72l1.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-5t9yusji72l1.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-5t9yusji72l1.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-5t9yusji72l1.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-5t9yusji72l1.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-5t9yusji72l1.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-5t9yusji72l1.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-4lv9nzauk37r.fl-row-full-height > .fl-row-content-wrap, .fl-node-4lv9nzauk37r.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-4lv9nzauk37r.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-4lv9nzauk37r.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-4lv9nzauk37r.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-4lv9nzauk37r.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-4lv9nzauk37r.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-4lv9nzauk37r.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-4lv9nzauk37r.fl-row-fixed-width, .fl-node-4lv9nzauk37r .fl-row-fixed-width {max-width: 1000px;}.fl-node-hfusicye2kxm.fl-row-full-height > .fl-row-content-wrap, .fl-node-hfusicye2kxm.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-hfusicye2kxm.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-hfusicye2kxm.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-hfusicye2kxm.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-hfusicye2kxm.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-hfusicye2kxm.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-hfusicye2kxm.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-m7btiwafne0v.fl-row-full-height > .fl-row-content-wrap, .fl-node-m7btiwafne0v.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-m7btiwafne0v.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-m7btiwafne0v.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-m7btiwafne0v.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-m7btiwafne0v.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-m7btiwafne0v.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-m7btiwafne0v.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-7xd2549nrofm.fl-row-full-height > .fl-row-content-wrap, .fl-node-7xd2549nrofm.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-7xd2549nrofm.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-7xd2549nrofm.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-7xd2549nrofm.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-7xd2549nrofm.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-7xd2549nrofm.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-7xd2549nrofm.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-asj2why5fzm9.fl-row-full-height > .fl-row-content-wrap, .fl-node-asj2why5fzm9.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-asj2why5fzm9.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-asj2why5fzm9.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-asj2why5fzm9.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-asj2why5fzm9.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-asj2why5fzm9.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-asj2why5fzm9.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-7r6b3gsihcdz.fl-row-full-height > .fl-row-content-wrap, .fl-node-7r6b3gsihcdz.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-7r6b3gsihcdz.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-7r6b3gsihcdz.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-7r6b3gsihcdz.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-7r6b3gsihcdz.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-7r6b3gsihcdz.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-7r6b3gsihcdz.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-8n2mypq4r9d7.fl-row-full-height > .fl-row-content-wrap, .fl-node-8n2mypq4r9d7.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-8n2mypq4r9d7.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-8n2mypq4r9d7.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-8n2mypq4r9d7.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-8n2mypq4r9d7.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-8n2mypq4r9d7.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-8n2mypq4r9d7.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-3v19yfxhlkja.fl-row-full-height > .fl-row-content-wrap, .fl-node-3v19yfxhlkja.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-3v19yfxhlkja.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-3v19yfxhlkja.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-3v19yfxhlkja.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-3v19yfxhlkja.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-3v19yfxhlkja.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-3v19yfxhlkja.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-3v19yfxhlkja > .fl-row-content-wrap {background-color: #880000;} .fl-node-3v19yfxhlkja > .fl-row-content-wrap {padding-right:0px;padding-left:0px;}.fl-node-aoup9q4n72l1 {width: 100%;}.fl-node-z4ocjnpayvbm {width: 50%;}.fl-node-2fsydb490eiz {width: 50%;}.fl-node-2af7m6e01ocg {width: 33.33%;}.fl-node-z0pqin95a3jy {width: 8%;}.fl-node-zlwjf1e9amdp {width: 58.67%;}.fl-node-v4wqrabt36jf {width: 100%;}.fl-node-ye9wkxncma17 {width: 100%;}.fl-node-5v0tn3iz79dp {width: 100%;}.fl-node-5v0tn3iz79dp > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-klyed9voxqzn {width: 100%;}.fl-node-pe37uykcmsfx {width: 100%;}.fl-node-kufdtvb1w284 {width: 100%;}.fl-node-s6jqg0mo3vef {width: 100%;}.fl-node-2zd0xtjc1f8r {width: 33.33%;}.fl-node-9saybqvpmj3w {width: 33.33%;}.fl-node-vbso3xc9d7q2 {width: 33.33%;}.fl-node-i68yvbq1e43l {width: 50%;}.fl-node-shmr13ne0toz {width: 50%;}.fl-node-is5beq61fymg {width: 100%;}.fl-node-4repq0u687xz {width: 100%;}.fl-node-4repq0u687xz > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-yf0uwezq4t7n {width: 100%;}.fl-node-dkfepocq3j1r {width: 100%;}.fl-node-3c5m7gk4anuh {width: 100%;}.fl-node-uld1yrw4m6nb {width: 100%;}.fl-node-9biy6a0hckjd {width: 100%;}.fl-node-9biy6a0hckjd > .fl-col-content {background-color: #ffffff;border-style: dashed;border-width: 0;background-clip: border-box;border-color: #800000;border-top-width: 5px;border-right-width: 5px;border-bottom-width: 5px;border-left-width: 5px;}.fl-node-um6tp5kqbcsy {width: 50%;}.fl-node-z8ujbhl5cyt0 {width: 50%;}.fl-node-zgw074amfhb3 {width: 100%;}.fl-node-4ied2hqraj75 {width: 100%;}.fl-node-qx19zm8inser {width: 100%;}.fl-node-67diwf0ujpyg {width: 34%;}.fl-node-bdj54xrkylfp {width: 65%;}.fl-node-gafq0zlbo3y6 {width: 100%;}.fl-node-heo8np9xr3qc {width: 100%;}.fl-node-s961tmidf2b0 {width: 100%;}.fl-node-rejb0alp8sn4 {width: 100%;}.fl-node-2y4isg1r6wcd {width: 100%;}.fl-node-d0ajl8sb6tih {width: 100%;}.fl-node-d0ajl8sb6tih > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-d30smgk4x6lo {width: 100%;}.fl-node-u3ecyb6tnkmz {width: 100%;}.fl-node-xqah26zucl35 {width: 100%;}.fl-node-5owbq420gau7 {width: 100%;}.fl-node-mcjsrz175of3 {width: 50%;}.fl-node-f4j7tnm26cxy {width: 50%;}.fl-node-6zpqcavjot41 {width: 50%;}.fl-node-qjdfitk3g4l8 {width: 50%;} .fl-node-mf6v18wtcey5 > .fl-module-content {margin-bottom:43px;}@media (max-width: 768px) { .fl-node-mf6v18wtcey5 > .fl-module-content { margin-bottom:20px; } } .fl-node-aly2czeij0wv > .fl-module-content {margin-top:54px;}@media (max-width: 768px) { .fl-node-aly2czeij0wv > .fl-module-content { margin-top:20px; } } .fl-node-2vm6i8xkqp9c > .fl-module-content {margin-top:10px;} .fl-node-kbqp07gxyico > .fl-module-content {margin-top:0px;margin-bottom:-20px;}@media (max-width: 768px) { .fl-node-kbqp07gxyico > .fl-module-content { margin-bottom:20px; } } .fl-node-8n5ab93kzo6l > .fl-module-content {margin-top:0px;margin-bottom:0px;} .fl-node-vnpz5uyi7gkc > .fl-module-content {margin-top:20px;margin-bottom:0px;} .fl-node-pwm8dofzey32 > .fl-module-content {margin-top:7px;margin-bottom:49px;}@media (max-width: 768px) { .fl-node-pwm8dofzey32 > .fl-module-content { margin-bottom:20px; } } .fl-node-r4zye2a5gx7s > .fl-module-content {margin-top:54px;}@media (max-width: 768px) { .fl-node-r4zye2a5gx7s > .fl-module-content { margin-top:20px; } } .fl-node-p9xgu27ys4rh > .fl-module-content {margin-top:10px;} .fl-node-91puy0iam4w2 > .fl-module-content {margin-bottom:0px;} .fl-node-ydotv6w2isak > .fl-module-content {margin-top:54px;}@media (max-width: 768px) { .fl-node-ydotv6w2isak > .fl-module-content { margin-top:20px; } } .fl-node-ywuvkqf8n1a6 > .fl-module-content {margin-top:18px;} .fl-node-cpiq2b8mt9le > .fl-module-content {margin-bottom:0px;} .fl-node-z8my3wt24aub > .fl-module-content {margin-bottom:0px;} .fl-node-pkudmoi58bx6 > .fl-module-content {margin-top:66px;margin-right:-105px;margin-bottom:0px;margin-left:100px;}@media (max-width: 768px) { .fl-node-pkudmoi58bx6 > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } } .fl-node-8ko1sm290chf > .fl-module-content {margin-top:54px;}@media (max-width: 768px) { .fl-node-8ko1sm290chf > .fl-module-content { margin-top:20px; } } .fl-node-n85vz9q0fowr > .fl-module-content {margin-top:54px;}@media (max-width: 768px) { .fl-node-n85vz9q0fowr > .fl-module-content { margin-top:20px; } } .fl-node-6naugkfz74mi > .fl-module-content {margin-top:10px;} .fl-node-duns3i6jmwzp > .fl-module-content {margin-top:0px;} .fl-node-bc8rzfiug032 > .fl-module-content {margin-top:0px;} .fl-node-x63uova7d04p > .fl-module-content {margin-bottom:100px;}@media (max-width: 768px) { .fl-node-x63uova7d04p > .fl-module-content { margin-bottom:20px; } } .fl-node-asu0rlqofp9g > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;} .fl-node-y6v2o1n85ehs > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content: flex-end;justify-content: flex-end;-webkit-box-align: end; -webkit-box-pack: end;-ms-flex-pack: end;}.uabb-module-content h1,.uabb-module-content h2,.uabb-module-content h3,.uabb-module-content h4,.uabb-module-content h5,.uabb-module-content h6 {margin: 0;clear: both;}.fl-module-content a,.fl-module-content a:hover,.fl-module-content a:focus {text-decoration: none;}.uabb-row-separator {position: absolute;width: 100%;left: 0;}.uabb-top-row-separator {top: 0;bottom: auto}.uabb-bottom-row-separator {top: auto;bottom: 0;}.fl-builder-content-editing .fl-visible-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: none !important;}@media (max-width: 992px) {.fl-builder-content-editing .fl-visible-desktop.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: none !important;}.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {display: block !important;}}@media (max-width: 768px) {.fl-builder-content-editing .fl-visible-desktop.uabb-row,.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium.uabb-row {display: none !important;}.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: block !important;}}.fl-responsive-preview-content .fl-builder-content-editing {overflow-x: hidden;overflow-y: visible;}.uabb-row-separator svg {width: 100%;}.uabb-top-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 50%;top: -1px;bottom: auto;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 50%;bottom: -1px;top: auto;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {bottom: 0;}.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {top: 0;}.uabb-bottom-row-separator.uabb-svg-triangle svg,.uabb-bottom-row-separator.uabb-xlarge-triangle svg,.uabb-top-row-separator.uabb-xlarge-triangle-left svg,.uabb-bottom-row-separator.uabb-svg-circle svg,.uabb-top-row-separator.uabb-slime-separator svg,.uabb-top-row-separator.uabb-grass-separator svg,.uabb-top-row-separator.uabb-grass-bend-separator svg,.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,.uabb-top-row-separator.uabb-wave-slide-separator svg,.uabb-top-row-separator.uabb-pine-tree-separator svg,.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,.uabb-bottom-row-separator.uabb-stamp-separator svg,.uabb-bottom-row-separator.uabb-xlarge-circle svg,.uabb-top-row-separator.uabb-wave-separator svg{left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-big-triangle svg {left: 50%;-webkit-transform: scale(1) scaleY(-1) translateX(-50%); -moz-transform: scale(1) scaleY(-1) translateX(-50%);-ms-transform: scale(1) scaleY(-1) translateX(-50%); -o-transform: scale(1) scaleY(-1) translateX(-50%);transform: scale(1) scaleY(-1) translateX(-50%);}.uabb-top-row-separator.uabb-big-triangle svg {left: 50%;-webkit-transform: translateX(-50%) scale(1); -moz-transform: translateX(-50%) scale(1);-ms-transform: translateX(-50%) scale(1); -o-transform: translateX(-50%) scale(1);transform: translateX(-50%) scale(1);}.uabb-top-row-separator.uabb-xlarge-triangle-right svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-curve-up-separator svg {left: 50%; -webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-top-row-separator.uabb-curve-down-separator svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-bottom-row-separator.uabb-curve-down-separator svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-top-row-separator.uabb-tilt-right-separator svg{left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-tilt-left-separator svg {left: 50%;-webkit-transform: translateX(-50%); -moz-transform: translateX(-50%);-ms-transform: translateX(-50%); -o-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-tilt-right-separator svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator,.uabb-top-row-separator.uabb-tilt-right-separator {top: 0;}.uabb-bottom-row-separator.uabb-tilt-left-separator,.uabb-bottom-row-separator.uabb-tilt-right-separator {bottom: 0;}.uabb-top-row-separator.uabb-arrow-outward-separator svg,.uabb-top-row-separator.uabb-arrow-inward-separator svg,.uabb-top-row-separator.uabb-cloud-separator svg,.uabb-top-row-separator.uabb-multi-triangle svg {left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-multi-triangle svg {bottom: -2px;}.uabb-row-separator.uabb-round-split:after,.uabb-row-separator.uabb-round-split:before {left: 0;width: 50%;background: inherit inherit/inherit inherit inherit inherit;content: '';position: absolute}.uabb-button-wrap a,.uabb-button-wrap a:visited {display: inline-block;font-size: 16px;line-height: 18px;text-decoration: none;text-shadow: none;}.fl-builder-content .uabb-button:hover {text-decoration: none;}.fl-builder-content .uabb-button-width-full .uabb-button {display: block;text-align: center;}.uabb-button-width-custom .uabb-button {display: inline-block;text-align: center;max-width: 100%;}.fl-builder-content .uabb-button-left {text-align: left;}.fl-builder-content .uabb-button-center {text-align: center;}.fl-builder-content .uabb-infobox .uabb-button-center,.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,.fl-builder-content .uabb-ultb3-box .uabb-button-center,.fl-builder-content .uabb-slide-down .uabb-button-center,.fl-builder-content .uabb-blog-post-content .uabb-button-center,.fl-builder-content .uabb-cta-wrap .uabb-button-center,.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{text-align: inherit;}.fl-builder-content .uabb-button-right {text-align: right;}.fl-builder-content .uabb-button i,.fl-builder-content .uabb-button i:before {font-size: 1em;height: 1em;line-height: 1em;width: 1em;}.uabb-button .uabb-button-icon-after {margin-left: 8px;margin-right: 0;}.uabb-button .uabb-button-icon-before {margin-left: 0;margin-right: 8px;}.uabb-button .uabb-button-icon-no-text {margin: 0;}.uabb-button-has-icon .uabb-button-text {vertical-align: middle;}.uabb-icon-wrap {display: inline-block;}.uabb-icon a {text-decoration: none;}.uabb-icon i {display: block;}.uabb-icon i:before {border: none !important;background: none !important;}.uabb-icon-text {display: table-cell;text-align: left;padding-left: 15px;vertical-align: middle;}.uabb-icon-text *:last-child {margin: 0 !important;padding: 0 !important;}.uabb-icon-text a {text-decoration: none;}.uabb-photo {line-height: 0;position: relative;z-index: 2;}.uabb-photo-align-left {text-align: left;}.uabb-photo-align-center {text-align: center;}.uabb-photo-align-right {text-align: right;}.uabb-photo-content {border-radius: 0;display: inline-block;line-height: 0;position: relative;max-width: 100%;overflow: hidden;}.uabb-photo-content img {border-radius: inherit;display: inline;height: auto;max-width: 100%;width: auto;}.fl-builder-content .uabb-photo-crop-circle img {-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;}.fl-builder-content .uabb-photo-crop-square img {-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;}.uabb-photo-caption {font-size: 13px;line-height: 18px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}.uabb-photo-caption-below {padding-bottom: 20px;padding-top: 10px;}.uabb-photo-caption-hover {background: rgba(0,0,0,0.7);bottom: 0;color: #fff;left: 0;opacity: 0;visibility: hidden;filter: alpha(opacity = 0);padding: 10px 15px;position: absolute;right: 0;-webkit-transition:visibility 200ms linear;-moz-transition:visibility 200ms linear;transition:visibility 200ms linear;}.uabb-photo-content:hover .uabb-photo-caption-hover {opacity: 100;visibility: visible;}.uabb-active-btn {background: #1e8cbe;border-color: #0074a2;-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);box-shadow: inset 0 1px 0 rgba(120,200,230,.6);color: white;}.fl-builder-bar .fl-builder-add-content-button {display: block !important;opacity: 1 !important;}.uabb-imgicon-wrap .uabb-icon {display: block;}.uabb-imgicon-wrap .uabb-icon i{float: none;}.uabb-imgicon-wrap .uabb-image {line-height: 0;position: relative;}.uabb-imgicon-wrap .uabb-image-align-left {text-align: left;}.uabb-imgicon-wrap .uabb-image-align-center {text-align: center;}.uabb-imgicon-wrap .uabb-image-align-right {text-align: right;}.uabb-imgicon-wrap .uabb-image-content {display: inline-block;border-radius: 0;line-height: 0;position: relative;max-width: 100%;}.uabb-imgicon-wrap .uabb-image-content img {display: inline;height: auto !important;max-width: 100%;width: auto;border-radius: inherit;box-shadow: none;box-sizing: content-box;}.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;}.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {background: #fafafa;border: 1px solid #ccc;color: #333;display: inline-block;vertical-align: middle;text-align: center;overflow: hidden;text-decoration: none;text-shadow: none;box-shadow: none;position: relative;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button-wrap a:focus {text-decoration: none;text-shadow: none;box-shadow: none;}.uabb-creative-button-wrap a .uabb-creative-button-text,.uabb-creative-button-wrap a .uabb-creative-button-icon,.uabb-creative-button-wrap a:visited .uabb-creative-button-text,.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button-wrap a:hover {text-decoration: none;}.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {display: block;text-align: center;}.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {display: inline-block;text-align: center;max-width: 100%;}.uabb-creative-button-wrap .uabb-creative-button-left {text-align: left;}.uabb-creative-button-wrap .uabb-creative-button-center {text-align: center;}.uabb-creative-button-wrap .uabb-creative-button-right {text-align: right;}.uabb-creative-button-wrap .uabb-creative-button i {font-size: 1.3em;height: auto;vertical-align: middle;width: auto;}.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {margin-left: 8px;margin-right: 0;}.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {margin-right: 8px;margin-left: 0;}.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {margin: 0;}.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {vertical-align: middle;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {padding: 12px 24px;}.uabb-creative-button.uabb-creative-transparent-btn {background: transparent;}.uabb-creative-button.uabb-creative-transparent-btn:after {content: '';position: absolute;z-index: 1;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-transparent-fill-top-btn:after,.uabb-transparent-fill-bottom-btn:after {width: 100%;height: 0;left: 0;}.uabb-transparent-fill-top-btn:after {top: 0;}.uabb-transparent-fill-bottom-btn:after {bottom: 0;}.uabb-transparent-fill-left-btn:after,.uabb-transparent-fill-right-btn:after {width: 0;height: 100%;top: 0;}.uabb-transparent-fill-left-btn:after {left: 0;}.uabb-transparent-fill-right-btn:after {right: 0;}.uabb-transparent-fill-center-btn:after{width: 0;height: 100%;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-transparent-fill-diagonal-btn:after,.uabb-transparent-fill-horizontal-btn:after {width: 100%;height: 0;top: 50%;left: 50%;}.uabb-transparent-fill-diagonal-btn{overflow: hidden;}.uabb-transparent-fill-diagonal-btn:after{-webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg ); -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );-ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg ); -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );transform: translateX(-50%) translateY(-50%) rotate( 45deg );}.uabb-transparent-fill-horizontal-btn:after{-webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {-webkit-transition: none; -moz-transition: none;-ms-transition: none; -o-transition: none;transition: none;}.perspective {-webkit-perspective: 800px; -moz-perspective: 800px;perspective: 800px;margin: 0;}.uabb-creative-button.uabb-creative-threed-btn:after {content: '';position: absolute;z-index: -1;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button.uabb-creative-threed-btn {outline: 1px solid transparent;-webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d;transform-style: preserve-3d;}.uabb-creative-threed-btn.uabb-animate_top-btn:after {height: 40%;left: 0;top: -40%;width: 100%;-webkit-transform-origin: 0% 100%; -moz-transform-origin: 0% 100%;transform-origin: 0% 100%;-webkit-transform: rotateX(90deg); -moz-transform: rotateX(90deg);transform: rotateX(90deg);}.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {width: 100%;height: 40%;left: 0;top: 100%;-webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%;-ms-transform-origin: 0% 0%;transform-origin: 0% 0%;-webkit-transform: rotateX(-90deg); -moz-transform: rotateX(-90deg);-ms-transform: rotateX(-90deg);transform: rotateX(-90deg);}.uabb-creative-threed-btn.uabb-animate_left-btn:after {width: 20%;height: 100%;left: -20%;top: 0;-webkit-transform-origin: 100% 0%; -moz-transform-origin: 100% 0%;-ms-transform-origin: 100% 0%;transform-origin: 100% 0%;-webkit-transform: rotateY(-60deg); -moz-transform: rotateY(-60deg);-ms-transform: rotateY(-60deg);transform: rotateY(-60deg);}.uabb-creative-threed-btn.uabb-animate_right-btn:after {width: 20%;height: 100%;left: 104%;top: 0;-webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%;-ms-transform-origin: 0% 0%;transform-origin: 0% 0%;-webkit-transform: rotateY(120deg); -moz-transform: rotateY(120deg);-ms-transform: rotateY(120deg);transform: rotateY(120deg);}.uabb-animate_top-btn:hover{-webkit-transform: rotateX(-15deg); -moz-transform: rotateX(-15deg);-ms-transform: rotateX(-15deg); -o-transform: rotateX(-15deg);transform: rotateX(-15deg);}.uabb-animate_bottom-btn:hover{-webkit-transform: rotateX(15deg); -moz-transform: rotateX(15deg);-ms-transform: rotateX(15deg); -o-transform: rotateX(15deg);transform: rotateX(15deg);}.uabb-animate_left-btn:hover{-webkit-transform: rotateY(6deg); -moz-transform: rotateY(6deg);-ms-transform: rotateY(6deg); -o-transform: rotateY(6deg);transform: rotateY(6deg);}.uabb-animate_right-btn:hover{-webkit-transform: rotateY(-6deg); -moz-transform: rotateY(-6deg);-ms-transform: rotateY(-6deg); -o-transform: rotateY(-6deg);transform: rotateY(-6deg);}.uabb-creative-flat-btn.uabb-animate_to_right-btn,.uabb-creative-flat-btn.uabb-animate_to_left-btn,.uabb-creative-flat-btn.uabb-animate_from_top-btn,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {overflow: hidden;position: relative;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i,.uabb-creative-flat-btn.uabb-animate_to_left-btn i,.uabb-creative-flat-btn.uabb-animate_from_top-btn i,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {bottom: 0;height: 100%;margin: 0;opacity: 1;position: absolute;right: 0;width: 100%;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;transition: all 200ms linear;-webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {display: inline-block;width: 100%;height: 100%;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;-webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;backface-visibility: hidden;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {position: absolute;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%);-moz-transform: translateX(-50%) translateY(-50%);-o-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {left: 0;}.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {top: 0;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i {top: 0;left: -100%;}.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {-webkit-transform: translateX(200%); -moz-transform: translateX(200%);-ms-transform: translateX(200%); -o-transform: translateX(200%);transform: translateX(200%);}.uabb-creative-flat-btn.uabb-animate_to_left-btn i {top: 0;left: 100%;}.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {-webkit-transform: translateX(-200%); -moz-transform: translateX(-200%);-ms-transform: translateX(-200%); -o-transform: translateX(-200%);transform: translateX(-200%);}.uabb-creative-flat-btn.uabb-animate_from_top-btn i {top: -100%;left: 0;}.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {-webkit-transform: translateY(400px); -moz-transform: translateY(400px);-ms-transform: translateY(400px); -o-transform: translateY(400px);transform: translateY(400px);}.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {top: 100%;left: 0;}.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {-webkit-transform: translateY(-400px); -moz-transform: translateY(-400px);-ms-transform: translateY(-400px); -o-transform: translateY(-400px);transform: translateY(-400px);}.uabb-tab-acc-content .wp-video, .uabb-tab-acc-content video.wp-video-shortcode, .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .uabb-tab-acc-content .mejs-overlay.load,.uabb-adv-accordion-content .wp-video, .uabb-adv-accordion-content video.wp-video-shortcode, .uabb-adv-accordion-content .mejs-container:not(.mejs-audio), .uabb-adv-accordion-content .mejs-overlay.load {width: 100% !important;height: 100% !important;}.uabb-tab-acc-content .mejs-container:not(.mejs-audio),.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {padding-top: 56.25%;}.uabb-tab-acc-content .wp-video, .uabb-tab-acc-content video.wp-video-shortcode,.uabb-adv-accordion-content .wp-video, .uabb-adv-accordion-content video.wp-video-shortcode {max-width: 100% !important;}.uabb-tab-acc-content video.wp-video-shortcode,.uabb-adv-accordion-content video.wp-video-shortcode {position: relative;}.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {position: absolute;top: 0;right: 0;bottom: 0;left: 0;}.uabb-tab-acc-content .mejs-overlay-play,.uabb-adv-accordion-content .mejs-overlay-play {top: 0;right: 0;bottom: 0;left: 0;width: auto !important;height: auto !important;}.fl-row-content-wrap .uabb-row-particles-background,.uabb-col-particles-background {width:100%;height:100%;position:absolute;left:0;top:0;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {font-family: inherit;font-weight: inherit;font-size: px;}.uabb-dual-button .uabb-btn,.uabb-dual-button .uabb-btn:visited {font-family: inherit;font-weight: inherit;font-size: px;}.uabb-js-breakpoint {content:"default";display:none;}@media screen and (max-width: 992px) {.uabb-js-breakpoint {content:"992";}}@media screen and (max-width: 768px) {.uabb-js-breakpoint {content:"768";}}.fl-node-1t03jd9m6exv.fl-row-full-height > .fl-row-content-wrap, .fl-node-1t03jd9m6exv.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-1t03jd9m6exv.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-1t03jd9m6exv.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-1t03jd9m6exv.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-1t03jd9m6exv.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-1t03jd9m6exv.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-1t03jd9m6exv.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-1t03jd9m6exv > .fl-row-content-wrap {padding-bottom:60px;}.fl-node-9zbv461rjxgp.fl-row-full-height > .fl-row-content-wrap, .fl-node-9zbv461rjxgp.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-9zbv461rjxgp.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-9zbv461rjxgp.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-9zbv461rjxgp.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-9zbv461rjxgp.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-9zbv461rjxgp.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-9zbv461rjxgp.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-9zbv461rjxgp > .fl-row-content-wrap {margin-top:20px;} .fl-node-9zbv461rjxgp > .fl-row-content-wrap {padding-top:20px;}.fl-node-u4cbzaexyn9o.fl-row-full-height > .fl-row-content-wrap, .fl-node-u4cbzaexyn9o.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-u4cbzaexyn9o.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-u4cbzaexyn9o.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-u4cbzaexyn9o.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-u4cbzaexyn9o.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-u4cbzaexyn9o.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-u4cbzaexyn9o.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-um2hoyx47ebg.fl-row-full-height > .fl-row-content-wrap, .fl-node-um2hoyx47ebg.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-um2hoyx47ebg.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-um2hoyx47ebg.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-um2hoyx47ebg.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-um2hoyx47ebg.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-um2hoyx47ebg.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-um2hoyx47ebg.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-um2hoyx47ebg > .fl-row-content-wrap {border-style: none;border-width: 0;background-clip: border-box;border-top-width: 7px;border-right-width: 7px;border-bottom-width: 7px;border-left-width: 7px;} .fl-node-um2hoyx47ebg > .fl-row-content-wrap {padding-top:5px;padding-bottom:20px;}.fl-node-klx09zsye37i.fl-row-full-height > .fl-row-content-wrap, .fl-node-klx09zsye37i.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-klx09zsye37i.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-klx09zsye37i.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-klx09zsye37i.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-klx09zsye37i.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-klx09zsye37i.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-klx09zsye37i.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-klx09zsye37i > .fl-row-content-wrap {padding-top:20px;}.fl-node-zm137dujkqhc.fl-row-full-height > .fl-row-content-wrap, .fl-node-zm137dujkqhc.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-zm137dujkqhc.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-zm137dujkqhc.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-zm137dujkqhc.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-zm137dujkqhc.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-zm137dujkqhc.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-zm137dujkqhc.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-qv9slno6zy83.fl-row-full-height > .fl-row-content-wrap, .fl-node-qv9slno6zy83.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-qv9slno6zy83.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-qv9slno6zy83.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-qv9slno6zy83.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-qv9slno6zy83.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-qv9slno6zy83.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-qv9slno6zy83.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-tv6n1k5cdsxj.fl-row-full-height > .fl-row-content-wrap, .fl-node-tv6n1k5cdsxj.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-tv6n1k5cdsxj.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-tv6n1k5cdsxj.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-tv6n1k5cdsxj.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-tv6n1k5cdsxj.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-tv6n1k5cdsxj.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-tv6n1k5cdsxj.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-tv6n1k5cdsxj > .fl-row-content-wrap {background-color: rgba(0,0,0,0.03);}.fl-node-tv6n1k5cdsxj.fl-row-fixed-width, .fl-node-tv6n1k5cdsxj .fl-row-fixed-width {max-width: 1100px;} .fl-node-tv6n1k5cdsxj > .fl-row-content-wrap {padding-bottom:0px;}.fl-node-gczhb8u1v2ks.fl-row-full-height > .fl-row-content-wrap, .fl-node-gczhb8u1v2ks.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-gczhb8u1v2ks.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-gczhb8u1v2ks.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-gczhb8u1v2ks.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-gczhb8u1v2ks.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-gczhb8u1v2ks.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-gczhb8u1v2ks.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-1dxf8lzpq4te.fl-row-full-height > .fl-row-content-wrap, .fl-node-1dxf8lzpq4te.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-1dxf8lzpq4te.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-1dxf8lzpq4te.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-1dxf8lzpq4te.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-1dxf8lzpq4te.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-1dxf8lzpq4te.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-1dxf8lzpq4te.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-aun7x1rskc3p.fl-row-full-height > .fl-row-content-wrap, .fl-node-aun7x1rskc3p.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-aun7x1rskc3p.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-aun7x1rskc3p.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-aun7x1rskc3p.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-aun7x1rskc3p.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-aun7x1rskc3p.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-aun7x1rskc3p.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-ji0txnfc29sz.fl-row-full-height > .fl-row-content-wrap, .fl-node-ji0txnfc29sz.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-ji0txnfc29sz.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-ji0txnfc29sz.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-ji0txnfc29sz.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-ji0txnfc29sz.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-ji0txnfc29sz.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-ji0txnfc29sz.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-49hfe35zjngd.fl-row-full-height > .fl-row-content-wrap, .fl-node-49hfe35zjngd.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-49hfe35zjngd.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-49hfe35zjngd.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-49hfe35zjngd.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-49hfe35zjngd.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-49hfe35zjngd.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-49hfe35zjngd.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-49hfe35zjngd > .fl-row-content-wrap {padding-top:20px;}.fl-node-h1lwid5x0nfc.fl-row-full-height > .fl-row-content-wrap, .fl-node-h1lwid5x0nfc.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-h1lwid5x0nfc.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-h1lwid5x0nfc.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-h1lwid5x0nfc.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-h1lwid5x0nfc.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-h1lwid5x0nfc.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-h1lwid5x0nfc.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-jvln2if0gczo.fl-row-full-height > .fl-row-content-wrap, .fl-node-jvln2if0gczo.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-jvln2if0gczo.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-jvln2if0gczo.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-jvln2if0gczo.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-jvln2if0gczo.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-jvln2if0gczo.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-jvln2if0gczo.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-jvln2if0gczo > .fl-row-content-wrap {background-color: #5e17eb;}.fl-node-jvln2if0gczo.fl-row-fixed-width, .fl-node-jvln2if0gczo .fl-row-fixed-width {max-width: 1000px;}.fl-node-1tbfrcwodn8m.fl-row-full-height > .fl-row-content-wrap, .fl-node-1tbfrcwodn8m.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-1tbfrcwodn8m.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-1tbfrcwodn8m.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-1tbfrcwodn8m.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-1tbfrcwodn8m.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-1tbfrcwodn8m.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-1tbfrcwodn8m.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-1tbfrcwodn8m > .fl-row-content-wrap {margin-top:50px;} .fl-node-1tbfrcwodn8m > .fl-row-content-wrap {padding-top:20px;}.fl-node-179lciqhmsdv.fl-row-full-height > .fl-row-content-wrap, .fl-node-179lciqhmsdv.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-179lciqhmsdv.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-179lciqhmsdv.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-179lciqhmsdv.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-179lciqhmsdv.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-179lciqhmsdv.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-179lciqhmsdv.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-ditv24f9kqr5.fl-row-full-height > .fl-row-content-wrap, .fl-node-ditv24f9kqr5.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-ditv24f9kqr5.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-ditv24f9kqr5.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-ditv24f9kqr5.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-ditv24f9kqr5.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-ditv24f9kqr5.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-ditv24f9kqr5.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-8kaz4mnxeo7y.fl-row-full-height > .fl-row-content-wrap, .fl-node-8kaz4mnxeo7y.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-8kaz4mnxeo7y.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-8kaz4mnxeo7y.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-8kaz4mnxeo7y.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-8kaz4mnxeo7y.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-8kaz4mnxeo7y.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-8kaz4mnxeo7y.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-8kaz4mnxeo7y > .fl-row-content-wrap {padding-top:20px;}.fl-node-kr85fjnzshbi.fl-row-full-height > .fl-row-content-wrap, .fl-node-kr85fjnzshbi.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-kr85fjnzshbi.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-kr85fjnzshbi.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-kr85fjnzshbi.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-kr85fjnzshbi.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-kr85fjnzshbi.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-kr85fjnzshbi.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}} .fl-node-kr85fjnzshbi > .fl-row-content-wrap {padding-top:20px;}.fl-node-728r6bs0a4mp.fl-row-full-height > .fl-row-content-wrap, .fl-node-728r6bs0a4mp.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-728r6bs0a4mp.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-728r6bs0a4mp.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-728r6bs0a4mp.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-728r6bs0a4mp.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-728r6bs0a4mp.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-728r6bs0a4mp.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-f7lqucyz029m.fl-row-full-height > .fl-row-content-wrap, .fl-node-f7lqucyz029m.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-f7lqucyz029m.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-f7lqucyz029m.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-f7lqucyz029m.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){.fl-node-f7lqucyz029m.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){.fl-node-f7lqucyz029m.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (device-aspect-ratio: 40/71) {.fl-node-f7lqucyz029m.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-f7lqucyz029m > .fl-row-content-wrap {background-color: #444486;}.fl-node-f7lqucyz029m .fl-builder-bottom-edge-layer > * {width: 1500px;left: auto;right: 0;height: 160px;top: auto;bottom: 0;transform: scaleX(-1) scaleY(-1);}.fl-node-f7lqucyz029m .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {fill: #f7f7f7;}.fl-node-7je0u1qlo4w5 {width: 65%;}.fl-node-kx9tdb6rhesy {width: 100%;}.fl-node-py20i6wd75c3 {width: 34%;}.fl-node-67mljebpsw90 {width: 50%;}.fl-node-rvx5ap6b709w {width: 50%;}.fl-node-8gwya5h0xkrc {width: 100%;}.fl-node-8gwya5h0xkrc > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;}.fl-node-rgxjmc4tbpve {width: 100%;}.fl-node-40swqiy6cmr8 {width: 50%;}.fl-node-sxcbfq0md9n4 {width: 50%;}.fl-node-i793segmuot6 {width: 100%;}.fl-node-k8sreyuvwoba {width: 100%;}.fl-node-39ujb6r8qmvf {width: 100%;}.fl-node-1j7npz4gkblo {width: 100%;}.fl-node-n8p2celk7tb9 {width: 100%;}.fl-node-s6jqg0mo3vef {width: 100%;}.fl-node-2zd0xtjc1f8r {width: 33.33%;}.fl-node-9saybqvpmj3w {width: 33.33%;}.fl-node-vbso3xc9d7q2 {width: 33.33%;}.fl-node-i68yvbq1e43l {width: 50%;}.fl-node-shmr13ne0toz {width: 50%;}.fl-node-i3mxqh1s9taz {width: 100%;}.fl-node-sp9dvgci3qzr {width: 100%;}.fl-node-7tl03j2ofmqd {width: 100%;}.fl-node-vqtp0be7c918 {width: 100%;}.fl-node-vqtp0be7c918 > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-ny0aw5pxu4kb {width: 100%;}.fl-node-j93yem4np1k5 {width: 100%;}.fl-node-wq9jklmis4o1 {width: 100%;}.fl-node-f0purnjboie3 {width: 100%;}.fl-node-zv0amp12jo9k {width: 100%;}.fl-node-vzb1ptsy7g56 {width: 50%;}.fl-node-velqozb05ksh {width: 49%;}.fl-node-y6nlhvds50f3 {width: 100%;}.fl-node-ukibang74ej0 {width: 100%;}.fl-node-ukibang74ej0 > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;border-color: #22376f;border-left-width: 24px;}.fl-node-agycxez31sdq {width: 100%;}.fl-node-8u26mo3ftv41 {width: 100%;}.fl-node-8l2t6aqrpm0y {width: 100%;}.fl-node-8l2t6aqrpm0y > .fl-col-content {border-style: solid;border-width: 0;background-clip: border-box;}.fl-node-tnzj4o7lci21 {width: 100%;}.fl-node-410vlyzhup3i {width: 100%;}.fl-node-vd05kwbmtroc {width: 34%;}.fl-node-rkvxagnspj4z {width: 65%;} .fl-node-vt0nyd4gp8xa > .fl-module-content {margin-top:40px;margin-bottom:0px;}@media (max-width: 768px) { .fl-node-vt0nyd4gp8xa > .fl-module-content { margin-top:20px; } } .fl-node-41w75vzksfop > .fl-module-content {margin-top:20px;} .fl-node-iasp15z6bn2h > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;} .fl-node-v7deuqt51gbw > .fl-module-content {margin-top:-35px;margin-right:-28px;margin-bottom:-1px;margin-left:-1px;}@media (max-width: 768px) { .fl-node-v7deuqt51gbw > .fl-module-content { margin-top:20px;margin-bottom:20px;margin-left:20px;margin-right:20px; } } .fl-node-hrge3c4zbvu5 > .fl-module-content {margin-top:20px;margin-bottom:20px;} .fl-node-u58o4tlrsi1y > .fl-module-content {margin-top:20px;margin-bottom:0px;} .fl-node-fc61mp5rdubn > .fl-module-content {margin-top:20px;} .fl-node-ng5b7kaq38jz > .fl-module-content {margin-top:20px;} .fl-node-a1hledn2svg0 > .fl-module-content {margin-top:20px;} .fl-node-7jr062pqvzg5 > .fl-module-content {margin-top:20px;} .fl-node-2evb97m08kl5 > .fl-module-content {margin-top:20px;} .fl-node-kbqp07gxyico > .fl-module-content {margin-top:0px;margin-bottom:-20px;}@media (max-width: 768px) { .fl-node-kbqp07gxyico > .fl-module-content { margin-bottom:20px; } } .fl-node-8n5ab93kzo6l > .fl-module-content {margin-top:0px;margin-bottom:0px;} .fl-node-vnpz5uyi7gkc > .fl-module-content {margin-top:20px;margin-bottom:0px;} .fl-node-pwm8dofzey32 > .fl-module-content {margin-top:7px;margin-bottom:49px;}@media (max-width: 768px) { .fl-node-pwm8dofzey32 > .fl-module-content { margin-bottom:20px; } } .fl-node-2z1wv7oc9neh > .fl-module-content {margin-top:20px;} .fl-node-943pbz0f21e7 > .fl-module-content {margin-top:20px;} .fl-node-fe6lk897s3iz > .fl-module-content {margin-top:20px;} .fl-node-mg4buj2hi68x > .fl-module-content {margin-top:20px;} .fl-node-5j8txluhdm1e > .fl-module-content {margin-top:20px;} .fl-node-v5b0an4dgwp6 > .fl-module-content {margin-top:20px;} .fl-node-xgupqe0jmcy2 > .fl-module-content {margin-top:20px;margin-right:20px;} .fl-node-ipxaujgqh40r > .fl-module-content {margin-top:20px;} .fl-node-j524vl3sk87f > .fl-module-content {margin-top:20px;} .fl-node-7ow6bdv0mk23 > .fl-module-content {margin-top:20px;} .fl-node-38pd4tfe1uh0 > .fl-module-content {margin-top:-80px;}@media (max-width: 768px) { .fl-node-38pd4tfe1uh0 > .fl-module-content { margin-top:20px; } } .fl-node-w91nkf7gqbvi > .fl-module-content {margin-top:5px;margin-bottom:20px;} .fl-node-d3kcl79e2xb5 > .fl-module-content {margin-top:0px;} .fl-node-9pa036cuvmtb > .fl-module-content {margin-top:-55px;}@media (max-width: 768px) { .fl-node-9pa036cuvmtb > .fl-module-content { margin-top:20px; } } .fl-node-z2f59jbtvi3n > .fl-module-content {margin-top:20px;} .fl-node-3ohkplzrey72 > .fl-module-content {margin-top:20px;} .fl-node-n4hto1dqsm73 > .fl-module-content {margin-top:20px;} .fl-node-2x3c9dwp8gnv > .fl-module-content {margin-top:20px;} .fl-node-jo2tnmicbzy9 > .fl-module-content {margin-top:20px;} .fl-node-sa2h9enbdvi6 > .fl-module-content {margin-top:20px;} .fl-node-b17vcedqzwxy > .fl-module-content {margin-top:20px;} .fl-node-rfysq2ziv1mg > .fl-module-content {margin-top:20px;} .fl-node-6xwumbzalnjr > .fl-module-content {margin-top:20px;} .fl-node-dc890ghk76tb > .fl-module-content {margin-top:20px;} .fl-node-rswzctyjuv7n > .fl-module-content {margin-top:20px;} .fl-node-su1e7znl4bmp > .fl-module-content {margin-top:10px;} .fl-node-qutz0nb1c9lx > .fl-module-content {margin-top:20px;} .fl-node-2hedzqtg064j > .fl-module-content {margin-left:-60px;}@media (max-width: 768px) { .fl-node-2hedzqtg064j > .fl-module-content { margin-left:20px; } }.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content: flex-end;justify-content: flex-end;-webkit-box-align: end; -webkit-box-pack: end;-ms-flex-pack: end;}.uabb-module-content h1,.uabb-module-content h2,.uabb-module-content h3,.uabb-module-content h4,.uabb-module-content h5,.uabb-module-content h6 {margin: 0;clear: both;}.fl-module-content a,.fl-module-content a:hover,.fl-module-content a:focus {text-decoration: none;}.uabb-row-separator {position: absolute;width: 100%;left: 0;}.uabb-top-row-separator {top: 0;bottom: auto}.uabb-bottom-row-separator {top: auto;bottom: 0;}.fl-builder-content-editing .fl-visible-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: none !important;}@media (max-width: 992px) {.fl-builder-content-editing .fl-visible-desktop.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: none !important;}.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {display: block !important;}}@media (max-width: 768px) {.fl-builder-content-editing .fl-visible-desktop.uabb-row,.fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,.fl-builder-content-editing .fl-visible-medium.uabb-row {display: none !important;}.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,.fl-builder-content-editing .fl-visible-mobile.uabb-row {display: block !important;}}.fl-responsive-preview-content .fl-builder-content-editing {overflow-x: hidden;overflow-y: visible;}.uabb-row-separator svg {width: 100%;}.uabb-top-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 50%;top: -1px;bottom: auto;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 50%;bottom: -1px;top: auto;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {bottom: 0;}.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {top: 0;}.uabb-bottom-row-separator.uabb-svg-triangle svg,.uabb-bottom-row-separator.uabb-xlarge-triangle svg,.uabb-top-row-separator.uabb-xlarge-triangle-left svg,.uabb-bottom-row-separator.uabb-svg-circle svg,.uabb-top-row-separator.uabb-slime-separator svg,.uabb-top-row-separator.uabb-grass-separator svg,.uabb-top-row-separator.uabb-grass-bend-separator svg,.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,.uabb-top-row-separator.uabb-wave-slide-separator svg,.uabb-top-row-separator.uabb-pine-tree-separator svg,.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,.uabb-bottom-row-separator.uabb-stamp-separator svg,.uabb-bottom-row-separator.uabb-xlarge-circle svg,.uabb-top-row-separator.uabb-wave-separator svg{left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-big-triangle svg {left: 50%;-webkit-transform: scale(1) scaleY(-1) translateX(-50%); -moz-transform: scale(1) scaleY(-1) translateX(-50%);-ms-transform: scale(1) scaleY(-1) translateX(-50%); -o-transform: scale(1) scaleY(-1) translateX(-50%);transform: scale(1) scaleY(-1) translateX(-50%);}.uabb-top-row-separator.uabb-big-triangle svg {left: 50%;-webkit-transform: translateX(-50%) scale(1); -moz-transform: translateX(-50%) scale(1);-ms-transform: translateX(-50%) scale(1); -o-transform: translateX(-50%) scale(1);transform: translateX(-50%) scale(1);}.uabb-top-row-separator.uabb-xlarge-triangle-right svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-curve-up-separator svg {left: 50%; -webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-top-row-separator.uabb-curve-down-separator svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-bottom-row-separator.uabb-curve-down-separator svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator svg {left: 50%;-webkit-transform: translateX(-50%) scale(-1); -moz-transform: translateX(-50%) scale(-1);-ms-transform: translateX(-50%) scale(-1); -o-transform: translateX(-50%) scale(-1);transform: translateX(-50%) scale(-1);}.uabb-top-row-separator.uabb-tilt-right-separator svg{left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-tilt-left-separator svg {left: 50%;-webkit-transform: translateX(-50%); -moz-transform: translateX(-50%);-ms-transform: translateX(-50%); -o-transform: translateX(-50%);transform: translateX(-50%);}.uabb-bottom-row-separator.uabb-tilt-right-separator svg {left: 50%;-webkit-transform: translateX(-50%) scaleX(-1); -moz-transform: translateX(-50%) scaleX(-1);-ms-transform: translateX(-50%) scaleX(-1); -o-transform: translateX(-50%) scaleX(-1);transform: translateX(-50%) scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator,.uabb-top-row-separator.uabb-tilt-right-separator {top: 0;}.uabb-bottom-row-separator.uabb-tilt-left-separator,.uabb-bottom-row-separator.uabb-tilt-right-separator {bottom: 0;}.uabb-top-row-separator.uabb-arrow-outward-separator svg,.uabb-top-row-separator.uabb-arrow-inward-separator svg,.uabb-top-row-separator.uabb-cloud-separator svg,.uabb-top-row-separator.uabb-multi-triangle svg {left: 50%;-webkit-transform: translateX(-50%) scaleY(-1); -moz-transform: translateX(-50%) scaleY(-1);-ms-transform: translateX(-50%) scaleY(-1); -o-transform: translateX(-50%) scaleY(-1);transform: translateX(-50%) scaleY(-1);}.uabb-bottom-row-separator.uabb-multi-triangle svg {bottom: -2px;}.uabb-row-separator.uabb-round-split:after,.uabb-row-separator.uabb-round-split:before {left: 0;width: 50%;background: inherit inherit/inherit inherit inherit inherit;content: '';position: absolute}.uabb-button-wrap a,.uabb-button-wrap a:visited {display: inline-block;font-size: 16px;line-height: 18px;text-decoration: none;text-shadow: none;}.fl-builder-content .uabb-button:hover {text-decoration: none;}.fl-builder-content .uabb-button-width-full .uabb-button {display: block;text-align: center;}.uabb-button-width-custom .uabb-button {display: inline-block;text-align: center;max-width: 100%;}.fl-builder-content .uabb-button-left {text-align: left;}.fl-builder-content .uabb-button-center {text-align: center;}.fl-builder-content .uabb-infobox .uabb-button-center,.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,.fl-builder-content .uabb-ultb3-box .uabb-button-center,.fl-builder-content .uabb-slide-down .uabb-button-center,.fl-builder-content .uabb-blog-post-content .uabb-button-center,.fl-builder-content .uabb-cta-wrap .uabb-button-center,.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{text-align: inherit;}.fl-builder-content .uabb-button-right {text-align: right;}.fl-builder-content .uabb-button i,.fl-builder-content .uabb-button i:before {font-size: 1em;height: 1em;line-height: 1em;width: 1em;}.uabb-button .uabb-button-icon-after {margin-left: 8px;margin-right: 0;}.uabb-button .uabb-button-icon-before {margin-left: 0;margin-right: 8px;}.uabb-button .uabb-button-icon-no-text {margin: 0;}.uabb-button-has-icon .uabb-button-text {vertical-align: middle;}.uabb-icon-wrap {display: inline-block;}.uabb-icon a {text-decoration: none;}.uabb-icon i {display: block;}.uabb-icon i:before {border: none !important;background: none !important;}.uabb-icon-text {display: table-cell;text-align: left;padding-left: 15px;vertical-align: middle;}.uabb-icon-text *:last-child {margin: 0 !important;padding: 0 !important;}.uabb-icon-text a {text-decoration: none;}.uabb-photo {line-height: 0;position: relative;z-index: 2;}.uabb-photo-align-left {text-align: left;}.uabb-photo-align-center {text-align: center;}.uabb-photo-align-right {text-align: right;}.uabb-photo-content {border-radius: 0;display: inline-block;line-height: 0;position: relative;max-width: 100%;overflow: hidden;}.uabb-photo-content img {border-radius: inherit;display: inline;height: auto;max-width: 100%;width: auto;}.fl-builder-content .uabb-photo-crop-circle img {-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;}.fl-builder-content .uabb-photo-crop-square img {-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;}.uabb-photo-caption {font-size: 13px;line-height: 18px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}.uabb-photo-caption-below {padding-bottom: 20px;padding-top: 10px;}.uabb-photo-caption-hover {background: rgba(0,0,0,0.7);bottom: 0;color: #fff;left: 0;opacity: 0;visibility: hidden;filter: alpha(opacity = 0);padding: 10px 15px;position: absolute;right: 0;-webkit-transition:visibility 200ms linear;-moz-transition:visibility 200ms linear;transition:visibility 200ms linear;}.uabb-photo-content:hover .uabb-photo-caption-hover {opacity: 100;visibility: visible;}.uabb-active-btn {background: #1e8cbe;border-color: #0074a2;-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);box-shadow: inset 0 1px 0 rgba(120,200,230,.6);color: white;}.fl-builder-bar .fl-builder-add-content-button {display: block !important;opacity: 1 !important;}.uabb-imgicon-wrap .uabb-icon {display: block;}.uabb-imgicon-wrap .uabb-icon i{float: none;}.uabb-imgicon-wrap .uabb-image {line-height: 0;position: relative;}.uabb-imgicon-wrap .uabb-image-align-left {text-align: left;}.uabb-imgicon-wrap .uabb-image-align-center {text-align: center;}.uabb-imgicon-wrap .uabb-image-align-right {text-align: right;}.uabb-imgicon-wrap .uabb-image-content {display: inline-block;border-radius: 0;line-height: 0;position: relative;max-width: 100%;}.uabb-imgicon-wrap .uabb-image-content img {display: inline;height: auto !important;max-width: 100%;width: auto;border-radius: inherit;box-shadow: none;box-sizing: content-box;}.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;}.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {-webkit-border-radius: 0;-moz-border-radius: 0;border-radius: 0;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {background: #fafafa;border: 1px solid #ccc;color: #333;display: inline-block;vertical-align: middle;text-align: center;overflow: hidden;text-decoration: none;text-shadow: none;box-shadow: none;position: relative;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button-wrap a:focus {text-decoration: none;text-shadow: none;box-shadow: none;}.uabb-creative-button-wrap a .uabb-creative-button-text,.uabb-creative-button-wrap a .uabb-creative-button-icon,.uabb-creative-button-wrap a:visited .uabb-creative-button-text,.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button-wrap a:hover {text-decoration: none;}.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {display: block;text-align: center;}.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {display: inline-block;text-align: center;max-width: 100%;}.uabb-creative-button-wrap .uabb-creative-button-left {text-align: left;}.uabb-creative-button-wrap .uabb-creative-button-center {text-align: center;}.uabb-creative-button-wrap .uabb-creative-button-right {text-align: right;}.uabb-creative-button-wrap .uabb-creative-button i {font-size: 1.3em;height: auto;vertical-align: middle;width: auto;}.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {margin-left: 8px;margin-right: 0;}.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {margin-right: 8px;margin-left: 0;}.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {margin: 0;}.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {vertical-align: middle;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {padding: 12px 24px;}.uabb-creative-button.uabb-creative-transparent-btn {background: transparent;}.uabb-creative-button.uabb-creative-transparent-btn:after {content: '';position: absolute;z-index: 1;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;}.uabb-transparent-fill-top-btn:after,.uabb-transparent-fill-bottom-btn:after {width: 100%;height: 0;left: 0;}.uabb-transparent-fill-top-btn:after {top: 0;}.uabb-transparent-fill-bottom-btn:after {bottom: 0;}.uabb-transparent-fill-left-btn:after,.uabb-transparent-fill-right-btn:after {width: 0;height: 100%;top: 0;}.uabb-transparent-fill-left-btn:after {left: 0;}.uabb-transparent-fill-right-btn:after {right: 0;}.uabb-transparent-fill-center-btn:after{width: 0;height: 100%;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-transparent-fill-diagonal-btn:after,.uabb-transparent-fill-horizontal-btn:after {width: 100%;height: 0;top: 50%;left: 50%;}.uabb-transparent-fill-diagonal-btn{overflow: hidden;}.uabb-transparent-fill-diagonal-btn:after{-webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg ); -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );-ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg ); -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );transform: translateX(-50%) translateY(-50%) rotate( 45deg );}.uabb-transparent-fill-horizontal-btn:after{-webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {-webkit-transition: none; -moz-transition: none;-ms-transition: none; -o-transition: none;transition: none;}.perspective {-webkit-perspective: 800px; -moz-perspective: 800px;perspective: 800px;margin: 0;}.uabb-creative-button.uabb-creative-threed-btn:after {content: '';position: absolute;z-index: -1;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;transition: all 200ms linear;}.uabb-creative-button.uabb-creative-threed-btn {outline: 1px solid transparent;-webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d;transform-style: preserve-3d;}.uabb-creative-threed-btn.uabb-animate_top-btn:after {height: 40%;left: 0;top: -40%;width: 100%;-webkit-transform-origin: 0% 100%; -moz-transform-origin: 0% 100%;transform-origin: 0% 100%;-webkit-transform: rotateX(90deg); -moz-transform: rotateX(90deg);transform: rotateX(90deg);}.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {width: 100%;height: 40%;left: 0;top: 100%;-webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%;-ms-transform-origin: 0% 0%;transform-origin: 0% 0%;-webkit-transform: rotateX(-90deg); -moz-transform: rotateX(-90deg);-ms-transform: rotateX(-90deg);transform: rotateX(-90deg);}.uabb-creative-threed-btn.uabb-animate_left-btn:after {width: 20%;height: 100%;left: -20%;top: 0;-webkit-transform-origin: 100% 0%; -moz-transform-origin: 100% 0%;-ms-transform-origin: 100% 0%;transform-origin: 100% 0%;-webkit-transform: rotateY(-60deg); -moz-transform: rotateY(-60deg);-ms-transform: rotateY(-60deg);transform: rotateY(-60deg);}.uabb-creative-threed-btn.uabb-animate_right-btn:after {width: 20%;height: 100%;left: 104%;top: 0;-webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%;-ms-transform-origin: 0% 0%;transform-origin: 0% 0%;-webkit-transform: rotateY(120deg); -moz-transform: rotateY(120deg);-ms-transform: rotateY(120deg);transform: rotateY(120deg);}.uabb-animate_top-btn:hover{-webkit-transform: rotateX(-15deg); -moz-transform: rotateX(-15deg);-ms-transform: rotateX(-15deg); -o-transform: rotateX(-15deg);transform: rotateX(-15deg);}.uabb-animate_bottom-btn:hover{-webkit-transform: rotateX(15deg); -moz-transform: rotateX(15deg);-ms-transform: rotateX(15deg); -o-transform: rotateX(15deg);transform: rotateX(15deg);}.uabb-animate_left-btn:hover{-webkit-transform: rotateY(6deg); -moz-transform: rotateY(6deg);-ms-transform: rotateY(6deg); -o-transform: rotateY(6deg);transform: rotateY(6deg);}.uabb-animate_right-btn:hover{-webkit-transform: rotateY(-6deg); -moz-transform: rotateY(-6deg);-ms-transform: rotateY(-6deg); -o-transform: rotateY(-6deg);transform: rotateY(-6deg);}.uabb-creative-flat-btn.uabb-animate_to_right-btn,.uabb-creative-flat-btn.uabb-animate_to_left-btn,.uabb-creative-flat-btn.uabb-animate_from_top-btn,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {overflow: hidden;position: relative;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i,.uabb-creative-flat-btn.uabb-animate_to_left-btn i,.uabb-creative-flat-btn.uabb-animate_from_top-btn i,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {bottom: 0;height: 100%;margin: 0;opacity: 1;position: absolute;right: 0;width: 100%;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;transition: all 200ms linear;-webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {display: inline-block;width: 100%;height: 100%;-webkit-transition: all 200ms linear; -moz-transition: all 200ms linear;-ms-transition: all 200ms linear; -o-transition: all 200ms linear;transition: all 200ms linear;-webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;backface-visibility: hidden;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {position: absolute;top: 50%;left: 50%;-webkit-transform: translateX(-50%) translateY(-50%);-moz-transform: translateX(-50%) translateY(-50%);-o-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%);transform: translateX(-50%) translateY(-50%);}.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {left: 0;}.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {top: 0;}.uabb-creative-flat-btn.uabb-animate_to_right-btn i {top: 0;left: -100%;}.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {-webkit-transform: translateX(200%); -moz-transform: translateX(200%);-ms-transform: translateX(200%); -o-transform: translateX(200%);transform: translateX(200%);}.uabb-creative-flat-btn.uabb-animate_to_left-btn i {top: 0;left: 100%;}.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {-webkit-transform: translateX(-200%); -moz-transform: translateX(-200%);-ms-transform: translateX(-200%); -o-transform: translateX(-200%);transform: translateX(-200%);}.uabb-creative-flat-btn.uabb-animate_from_top-btn i {top: -100%;left: 0;}.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {-webkit-transform: translateY(400px); -moz-transform: translateY(400px);-ms-transform: translateY(400px); -o-transform: translateY(400px);transform: translateY(400px);}.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {top: 100%;left: 0;}.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {-webkit-transform: translateY(-400px); -moz-transform: translateY(-400px);-ms-transform: translateY(-400px); -o-transform: translateY(-400px);transform: translateY(-400px);}.uabb-tab-acc-content .wp-video, .uabb-tab-acc-content video.wp-video-shortcode, .uabb-tab-acc-content .mejs-container:not(.mejs-audio), .uabb-tab-acc-content .mejs-overlay.load,.uabb-adv-accordion-content .wp-video, .uabb-adv-accordion-content video.wp-video-shortcode, .uabb-adv-accordion-content .mejs-container:not(.mejs-audio), .uabb-adv-accordion-content .mejs-overlay.load {width: 100% !important;height: 100% !important;}.uabb-tab-acc-content .mejs-container:not(.mejs-audio),.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {padding-top: 56.25%;}.uabb-tab-acc-content .wp-video, .uabb-tab-acc-content video.wp-video-shortcode,.uabb-adv-accordion-content .wp-video, .uabb-adv-accordion-content video.wp-video-shortcode {max-width: 100% !important;}.uabb-tab-acc-content video.wp-video-shortcode,.uabb-adv-accordion-content video.wp-video-shortcode {position: relative;}.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {position: absolute;top: 0;right: 0;bottom: 0;left: 0;}.uabb-tab-acc-content .mejs-overlay-play,.uabb-adv-accordion-content .mejs-overlay-play {top: 0;right: 0;bottom: 0;left: 0;width: auto !important;height: auto !important;}.fl-row-content-wrap .uabb-row-particles-background,.uabb-col-particles-background {width:100%;height:100%;position:absolute;left:0;top:0;}.uabb-creative-button-wrap a,.uabb-creative-button-wrap a:visited {font-family: inherit;font-weight: inherit;font-size: px;}.uabb-dual-button .uabb-btn,.uabb-dual-button .uabb-btn:visited {font-family: inherit;font-weight: inherit;font-size: px;}.uabb-js-breakpoint {content:"default";display:none;}@media screen and (max-width: 992px) {.uabb-js-breakpoint {content:"992";}}@media screen and (max-width: 768px) {.uabb-js-breakpoint {content:"768";}}