@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-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:before,
.fl-module:after,
.fl-module-content:before,
.fl-module-content:after {
display: table;
content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:after,
.fl-module-content:after {
clear: both;
}
.fl-clear {
clear: both;
} .fl-clearfix:before,
.fl-clearfix:after {
display: table;
content: " ";
}
.fl-clearfix:after {
clear: both;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
} .fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
display: none;
} .fl-row,
.fl-row-content {
margin-left: auto;
margin-right: auto;
min-width: 0;
}
.fl-row-content-wrap {
position: relative;
} .fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
background-attachment: scroll;
} .fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
position: relative;
}
.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
}
.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
bottom: 0;
left: 0px;
max-width: none;
position: absolute;
right: 0;
top: 0px;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
pointer-events: none;
width: 100vw;
height: 56.25vw; max-width: none;
min-height: 100vh;
min-width: 177.77vh; position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); }
.fl-bg-video-fallback {
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
bottom: 0px;
left: 0px;
position: absolute;
right: 0px;
top: 0px;
} .fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
position: relative;
}
.fl-row .fl-bg-slideshow {
bottom: 0;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
bottom: 0;
height: auto !important;
left: 0;
position: absolute !important;
right: 0;
top: 0;
} .fl-row-bg-overlay .fl-row-content-wrap:after {
border-radius: inherit;
content: '';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
position: relative;
z-index: 1;
} .fl-row-custom-height .fl-row-content-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -moz-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
width: 100%;
}
.fl-row-custom-height .fl-row-content-wrap {
min-height: 0;
}
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
-webkit-box-flex: 1 1 auto;
-moz-box-flex: 1 1 auto;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
max-width: 100%;
width: 100%;
} .fl-builder-ie-11 .fl-row.fl-row-full-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile),
.fl-builder-ie-11 .fl-row.fl-row-custom-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile) {
display: flex;
flex-direction: column;
height: 100%;
} .fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content-wrap {
height: auto;
}
.fl-builder-ie-11 .fl-row-full-height .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content {
flex: 0 0 auto;
flex-basis: 100%;
margin: 0;
}
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content {
margin: 0 auto;
}
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height),
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height) {
display: flex;
align-items: center;
justify-content: center;
-webkit-align-items: center;
-webkit-box-align: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-align: center;
-ms-flex-pack: center;
} .fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
align-items: center;
justify-content: center;
-webkit-align-items: center;
-webkit-box-align: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-align: center;
-ms-flex-pack: center;
} .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
align-items: flex-end;
justify-content: flex-end;
-webkit-align-items: flex-end;
-webkit-justify-content: flex-end;
-webkit-box-align: end;
-webkit-box-pack: end;
-ms-flex-align: end;
-ms-flex-pack: end;
} .fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
justify-content: flex-start;
-webkit-justify-content: flex-start;
} .fl-col-group-equal-height,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.fl-col-group-equal-height{
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
-webkit-box-flex: 1 1 auto;
-moz-box-flex: 1 1 auto;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
flex-shrink: 1;
min-width: 1px;
max-width: 100%;
width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
content: none;
} .fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
justify-content: flex-start;
-webkit-justify-content: flex-start;	
} .fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
align-items: center;
justify-content: center;
-webkit-align-items: center;
-webkit-box-align: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-align: center;
-ms-flex-pack: center;
} .fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
justify-content: flex-end;
-webkit-justify-content: flex-end;
-webkit-box-align: end;
-webkit-box-pack: end;
-ms-flex-pack: end;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
width: 100%;
} .fl-builder-ie-11 .fl-col-group-equal-height,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col-content,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
min-height: 1px;
} .fl-col {
float: left;
min-height: 1px;
} .fl-col-bg-overlay .fl-col-content {
position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
border-radius: inherit;
content: '';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
}
.fl-col-bg-overlay .fl-module {
position: relative;
z-index: 2;
} .fl-module img {
max-width: 100%;
} .fl-builder-module-template {
margin: 0 auto;
max-width: 1100px;
padding: 20px;
} .fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
display: inline-block;
font-size: 16px;
font-weight: normal;
line-height: 18px;
padding: 12px 24px;
text-decoration: none;
text-shadow: none;
}
.fl-builder-content .fl-button:hover {
text-decoration: none;
}
.fl-builder-content .fl-button:active {
position: relative;
top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
display: block;
text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
display: inline-block;
text-align: center;
max-width: 100%;
}
.fl-builder-content .fl-button-left {
text-align: left;
}
.fl-builder-content .fl-button-center {
text-align: center;
}
.fl-builder-content .fl-button-right {
text-align: right;
}
.fl-builder-content .fl-button i {
font-size: 1.3em;
height: auto;
margin-right:8px;
vertical-align: middle;
width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
margin-left: 8px;
margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
vertical-align: middle;
} .fl-icon-wrap {
display: inline-block;
}
.fl-icon {
display: table-cell;
vertical-align: middle;
}
.fl-icon a {
text-decoration: none;
}
.fl-icon i {
float: right;
height: auto;
width: auto;
}
.fl-icon i:before {
border: none !important;
height: auto;
width: auto;
}
.fl-icon-text {
display: table-cell;
text-align: left;
padding-left: 15px;
vertical-align: middle;
}
.fl-icon-text-empty {
display: none;
}
.fl-icon-text *:last-child {
margin: 0 !important;
padding: 0 !important;
}
.fl-icon-text a {
text-decoration: none;
}
.fl-icon-text span {
display: block;
}
.fl-icon-text span.mce-edit-focus {
min-width: 1px;
} .fl-photo {
line-height: 0;
position: relative;
}
.fl-photo-align-left {
text-align: left;
}
.fl-photo-align-center {
text-align: center;
}
.fl-photo-align-right {
text-align: right;
}
.fl-photo-content {
display: inline-block;
line-height: 0;
position: relative;
max-width: 100%;
}
.fl-photo-img-svg {
width: 100%;
}
.fl-photo-content img {
display: inline;
height: auto;
max-width: 100%;
}
.fl-photo-crop-circle img {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.fl-photo-caption {
font-size: 13px;
line-height: 18px;
overflow: hidden;
text-overflow: ellipsis;
}
.fl-photo-caption-below {
padding-bottom: 20px;
padding-top: 10px;
}
.fl-photo-caption-hover {
background: rgba(0,0,0,0.7);
bottom: 0;
color: #fff;
left: 0;
opacity: 0;
filter: alpha(opacity = 0);
padding: 10px 15px;
position: absolute;
right: 0;
-webkit-transition:opacity 0.3s ease-in;
-moz-transition:opacity 0.3s ease-in;
transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
opacity: 100;
filter: alpha(opacity = 100);
} .fl-builder-pagination,
.fl-builder-pagination-load-more {
padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
.fl-builder-pagination li {
display: inline-block;
list-style: none;
margin: 0;
padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
border: 1px solid #e6e6e6;
display: inline-block;
padding: 5px 10px;
margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
background: #f5f5f5;
text-decoration: none;
} .fl-slideshow,
.fl-slideshow * {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.fl-slideshow .fl-slideshow-image img {
max-width: none !important;
}
.fl-slideshow-social {
line-height: 0 !important;
}
.fl-slideshow-social * {
margin: 0 !important;
} .fl-builder-content .bx-wrapper .bx-viewport {
background: transparent;
border: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
left: 0;
} .mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
background: transparent !important;
border: none !important;
outline: none;
position: absolute;
top: 50%;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
background: transparent !important;
border: none !important;
outline: none;
position: absolute;
top: 0;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
top: 32px!important;
}
img.mfp-img {
padding: 0;
}
.mfp-counter {
display: none;
}
.mfp-wrap .mfp-preloader.fa {
font-size: 30px;
} .fl-form-field {
margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
border-color: #DD6420;
}
.fl-form-error-message {
clear: both;
color: #DD6420;
display: none;
padding-top: 8px;
font-size: 12px;
font-weight: lighter;
}
.fl-form-button-disabled {
opacity: 0.5;
} .fl-animation {
opacity: 0;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
opacity: 1;
}
.fl-animated {
animation-fill-mode: both;
-webkit-animation-fill-mode: both;
} .fl-button.fl-button-icon-animation i {
width: 0 !important;
opacity: 0;
-ms-filter: "alpha(opacity=0)";
transition: all 0.2s ease-out;
-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
opacity: 1! important;
-ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
margin-right: 20px !important;
margin-left: -10px;
} .single:not(.woocommerce).single-fl-builder-template .fl-content {
width: 100%;
} .fl-builder-layer {
position: absolute;
top:0;
left:0;
right: 0;
bottom: 0;
z-index: 0;
pointer-events: none;
overflow: hidden;
}
.fl-builder-shape-layer {
z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
z-index: 2;
}
.fl-row-has-layers .fl-row-content {
z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
z-index: 2;
}
.fl-builder-layer > * {
display: block;
position: absolute;
top:0;
left:0;
width: 100%;
}
.fl-builder-layer + .fl-row-content {
position: relative;
}
.fl-builder-layer .fl-shape {
fill: #aaa;
stroke: none;
stroke-width: 0;
width:100%;
} @supports (-webkit-touch-callout: inherit) {
.fl-row.fl-row-bg-parallax .fl-row-content-wrap,
.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
background-position: center !important;
background-attachment: scroll !important;
}
}
@supports (-webkit-touch-callout: none) {
.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
background-position: center !important;
background-attachment: scroll !important;
}
}
.fl-row-fixed-width { max-width: 1100px; }.fl-row-content-wrap{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-row-content-wrap{padding-top: 20px;padding-right: 20px;padding-bottom: 20px;padding-left: 20px;}.fl-col-content{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-col-content{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.fl-module-content{margin-top: 20px;margin-right: 20px;margin-bottom: 20px;margin-left: 20px;}@media (max-width: 1200px) { body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl {
display: none !important;
}
.fl-visible-xl,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
display: none;
}
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col {
display: block;
}
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col {
display: flex;
}
}@media (max-width: 1122px) { body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large {
display: none !important;
}
.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-large,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
display: none;
}
.fl-visible-desktop-medium,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col {
display: block;
}
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium-mobile.fl-col {
display: flex;
}
}@media (max-width: 768px) { body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large-medium {
display: none !important;
}
.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-xl.fl-col,
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col {
display: none;
}
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
display: block;
} .fl-row-content-wrap {
background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
background-attachment: scroll !important;
background-position: center center !important;
}  .fl-col-group.fl-col-group-equal-height {
display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
} .fl-col-group.fl-col-group-responsive-reversed {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex;
flex-wrap: wrap-reverse;
-webkit-flex-wrap: wrap-reverse;
-ms-box-orient: horizontal;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
min-width: 0;
} .fl-col {
clear: both;
float: none;
margin-left: auto;
margin-right: auto;
width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
max-width: 400px;
}
.fl-block-col-resize {
display:none;
} .fl-row[data-node] .fl-row-content-wrap {
margin: 0;
padding-left: 0;
padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
left: 0;
right: 0;
} .fl-col[data-node] .fl-col-content {
margin: 0;
padding-left: 0;
padding-right: 0;
}
}.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }
.fl-node-5c34eaeb90cb1 > .fl-row-content-wrap {
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
border-style: solid;
border-width: 0;
background-clip: border-box;
border-color: #ffffff;
border-top-width: 20px;
border-right-width: 20px;
border-bottom-width: 20px;
border-left-width: 20px;
}
.fl-builder-mobile .fl-node-5c34eaeb90cb1 > .fl-row-content-wrap {
background-image: url(https://www.inhp.org/wp-content/uploads/2021/05/DSC07575_1920x1280.jpg);
background-position: center center;
background-attachment: scroll;
}
.fl-node-5c34eaeb90cb1 > .fl-row-content-wrap {
padding-top:300px;
padding-right:10px;
padding-bottom:10px;
padding-left:10px;
}
.fl-node-5c34eaeb90cb7 > .fl-row-content-wrap {
background-color: rgba(240,235,225,0.5);
}
.fl-node-5c34eaeb90cb7 > .fl-row-content-wrap {
padding-top:75px;
padding-bottom:60px;
}
.fl-node-5eb1d5a030b0a > .fl-row-content-wrap {
background-color: #ffffff;
}
.fl-node-5eb1d2f33eda5 > .fl-row-content-wrap {
background-color: #f7f5f0;
}
.fl-node-5eb1d2f33eda5 > .fl-row-content-wrap {
padding-bottom:80px;
}
.fl-node-5c34eaeb90cf8 > .fl-row-content-wrap {
background-color: rgba(255,255,255,0.5);
}
.fl-node-5c34eaeb90cf8 > .fl-row-content-wrap {
padding-top:020px;
padding-bottom:10px;
}
.fl-node-5c34eaeb90cb5 {
width: 100%;
}
.fl-node-5c34eaeb90cb9 {
width: 100%;
}
.fl-node-5c34eaeb90cdd {
width: 100%;
}
.fl-node-5eb1cfa2279d4 {
width: 50%;
}
.fl-node-5eb1cfa2279d7 {
width: 50%;
}
.fl-node-5eb1d5a030b02 {
width: 100%;
}
.fl-node-5eb1d2f34dace {
width: 100%;
}
.fl-node-619c139410e34 {
width: 50%;
}
.fl-node-619c0d3acfe9e {
width: 50%;
}
.fl-node-5c052f8ad1a21 {
width: 100%;
}
body a.infobox-title-link {
text-decoration: none;
}
body h1.uabb-infobox-title,
body h2.uabb-infobox-title,
body h3.uabb-infobox-title,
body h4.uabb-infobox-title,
body h5.uabb-infobox-title,
body h6.uabb-infobox-title,
.uabb-infobox-content .uabb-infobox-title-prefix {
margin: 0;
padding: 0;
}
.uabb-module-content .uabb-text-editor :not(a) {
color: inherit;
}
.uabb-module-content .uabb-text-editor :not(i) {
font-family: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
font-size: inherit;
line-height: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
font-weight: inherit;
}
.uabb-infobox-content .uabb-infobox-text p:last-of-type {
margin-bottom: 0;
}
.uabb-infobox-content .uabb-infobox-text p {
padding: 0 0 10px;
}
.fl-builder-content .uabb-infobox-text h1,
.fl-builder-content .uabb-infobox-text h2,
.fl-builder-content .uabb-infobox-text h3,
.fl-builder-content .uabb-infobox-text h4,
.fl-builder-content .uabb-infobox-text h5,
.fl-builder-content .uabb-infobox-text h6 {
margin: 0;
}
.infobox-icon-above-title .uabb-infobox-left-right-wrap,
.infobox-icon-below-title .uabb-infobox-left-right-wrap,
.infobox-photo-above-title .uabb-infobox-left-right-wrap,
.infobox-photo-below-title .uabb-infobox-left-right-wrap {
display: block;
min-width: 100%;
width: 100%;
}
.infobox-icon-above-title .uabb-icon,
.infobox-icon-below-title .uabb-icon,
.infobox-photo-above-title .uabb-imgicon-wrap {
display: block;
}
.infobox-icon-left-title .uabb-infobox-title,
.infobox-icon-right-title .uabb-infobox-title,
.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-infobox-title,
.infobox-photo-right-title .uabb-infobox-title,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap {
display: inline-block;
vertical-align: middle;
}
.infobox-icon-left-title .left-title-image,
.infobox-icon-right-title .right-title-image,
.infobox-icon-left .uabb-infobox-left-right-wrap,
.infobox-icon-right .uabb-infobox-left-right-wrap,
.infobox-photo-left .uabb-infobox-left-right-wrap,
.infobox-photo-right .uabb-infobox-left-right-wrap {
display: inline-block;
width: 100%;
}
.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-left .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-left .uabb-imgicon-wrap {
margin-right: 20px;
}
.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap {
margin-left: 20px;
}
.infobox-icon-left .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-icon-left .uabb-infobox-content,
.infobox-icon-right .uabb-infobox-content,
.infobox-photo-left .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap,
.infobox-photo-left .uabb-infobox-content,
.infobox-photo-right .uabb-infobox-content {
display: inline-block;
vertical-align: top;
}
.infobox-photo-below-title .uabb-imgicon-wrap {
display: block;
margin: 10px 0 15px;
}
.infobox-photo-left-title .uabb-infobox-title-wrap,
.infobox-icon-left-title .uabb-infobox-title-wrap,
.infobox-photo-right-title .uabb-infobox-title-wrap,
.infobox-icon-right-title .uabb-infobox-title-wrap {
vertical-align: middle;
}
.fl-module-info-box .fl-module-content {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
flex-shrink: 1;
}
.fl-module-info-box .uabb-separator-parent {
line-height: 0;
}
.fl-module-info-box .uabb-infobox-module-link {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 4;
}@media (max-width: 768px) { .infobox-photo-left,
.infobox-photo-right {
display: block;
}
.infobox-photo-left .infobox-photo,
.infobox-photo-left-text .infobox-photo {
display: block;
margin-bottom: 15px;
padding-left: 0;
padding-right: 0;
width: auto;
}
.infobox-photo-right .infobox-photo,
.infobox-photo-right-text .infobox-photo {
display: block;
margin-top: 25px;
padding-left: 0;
padding-right: 0;
width: auto;
}
.infobox-photo-left .infobox-content,
.infobox-photo-left-text .infobox-content,
.infobox-photo-right .infobox-content,
.infobox-photo-right-text .infobox-content {
display: block;
width: auto;
} }
.fl-node-5c34eaeb90cb6 {
width: 100%;
}
.fl-node-5c34eaeb90cb6 .uabb-icon-wrap .uabb-icon i {
width: auto;
}   .fl-node-5c34eaeb90cb6 .uabb-infobox {
background: rgba(0,148,201,0.85);
padding-top:30px;padding-bottom:30px;padding-left:30px;padding-right:30px;
} .fl-node-5c34eaeb90cb6 .infobox-left,
.fl-node-5c34eaeb90cb6 .uabb-infobox .uabb-separator {
text-align: left;
}  .fl-builder-content .fl-node-5c34eaeb90cb6 .uabb-infobox-title {
margin-top: 10px;
margin-bottom: 10px;
}  .fl-node-5c34eaeb90cb6 h2.uabb-infobox-title,
.fl-node-5c34eaeb90cb6 h2.uabb-infobox-title span a,
.fl-node-5c34eaeb90cb6 h2.uabb-infobox-title * {
color: #ffffff}
.fl-builder-content .fl-node-5c34eaeb90cb6 .uabb-infobox-text {
margin-top: 0px;
margin-bottom: 0px;
} .fl-node-5c34eaeb90cb6 .uabb-infobox-text {
color:
#5b5b5b;
}      .fl-builder-content .fl-node-5c34eaeb90cb6 .uabb-infobox-title-prefix {
color: #ffffff;
}      @media (max-width: 1122px) { 
.fl-builder-content .fl-node-5c34eaeb90cb6 .uabb-infobox {
;		}
}
@media (max-width: 768px) { 
.fl-builder-content .fl-node-5c34eaeb90cb6 .uabb-infobox {
;	}
.fl-node-5c34eaeb90cb6 .infobox-responsive- {
text-align: ;
} }
.fl-node-5c34eaeb90cb6 .uabb-infobox-text {
font-family: Montserrat, sans-serif;
font-weight: 200;
font-size: 20px;
}
.fl-node-5c34eaeb90cb6 .uabb-infobox-title-prefix {
font-family: Montserrat, sans-serif;
font-weight: 700;
}
.fl-node-5c34eaeb90cb6 > .fl-module-content {
margin-right:0px;
margin-bottom:-80px;
margin-left:0px;
}
@media (max-width: 768px) { .fl-node-5c34eaeb90cb6 > .fl-module-content { margin-bottom:20px; } }.fl-animated.fl-fade-up {
animation: fl-fade-up 1s ease;
-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
from {
opacity: 0;
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fl-fade-up {
from {
opacity: 0;
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.uabb-heading-wrapper .uabb-heading {
padding: 0;
margin: 0;
}
.uabb-module-content.uabb-heading-wrapper {
position: relative;
}
.uabb-module-content .uabb-text-editor :not(a) {
color: inherit;
}
.uabb-module-content .uabb-text-editor :not(i) {
font-family: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
font-size: inherit;
line-height: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
font-weight: inherit;
}
.uabb-background-heading-wrap {
z-index: 2;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.uabb-background-heading-wrap::before {
position: absolute;
top: 50%;
left: 0;
z-index: 0;
display: block;
color: rgba(0, 0, 0, 0.09);
content: attr(data-background-text);
font-size: 100px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-center .uabb-background-heading-wrap:before {
top: 40%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-right .uabb-background-heading-wrap:before {
right: 0;
left: auto;
}
.uabb-heading-wrapper .uabb-heading a,
.uabb-heading a,
.uabb-heading a:hover,
.uabb-heading a:focus,
.uabb-heading a:active {
text-decoration: none;
}
.uabb-heading-align-left .uabb-heading,
.uabb-heading-align-left .uabb-subheading,
.uabb-heading-align-left .uabb-subheading *,
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-left .uabb-background-heading-wrap {
text-align: left;
}
.uabb-heading-align-center .uabb-heading,
.uabb-heading-align-center .uabb-subheading,
.uabb-heading-align-center .uabb-subheading *,
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-center .uabb-background-heading-wrap {
text-align: center;
}
.uabb-heading-align-right .uabb-heading,
.uabb-heading-align-right .uabb-subheading,
.uabb-heading-align-right .uabb-subheading *,
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-right .uabb-background-heading-wrap {
text-align: right;
}	.uabb-heading-wrapper .uabb-subheading * {
margin: 0;
}
.fl-node-5c34eaeb90cba .uabb-heading .uabb-heading-text {
}
.fl-node-5c34eaeb90cba .uabb-heading .uabb-heading-text {
}
.fl-node-5c34eaeb90cba .uabb-heading-wrapper .uabb-heading {
margin-top: 0px;
margin-bottom: 15px;
}
.fl-node-5c34eaeb90cba .uabb-subheading {
margin-top: 15px;
margin-bottom: 0px;
} .fl-node-5c34eaeb90cba .fl-module-content.fl-node-content .uabb-heading,
.fl-node-5c34eaeb90cba .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,
.fl-node-5c34eaeb90cba .fl-module-content.fl-node-content .uabb-heading * {
color: #003b5c;
}   .fl-node-5c34eaeb90cba .uabb-module-content.uabb-heading-wrapper .uabb-background-heading-wrap::before {
color: ;
}
@media ( max-width: 1122px ) { .fl-node-5c34eaeb90cba .uabb-responsive-medsmall .uabb-side-left,
.fl-node-5c34eaeb90cba .uabb-responsive-medsmall .uabb-side-right {
width: 20%;
}
.fl-node-5c34eaeb90cba .uabb-responsive-medsmall .uabb-divider-content h3 {
white-space: normal;
}
.fl-node-5c34eaeb90cba .uabb-heading .uabb-heading-text {
}
.uabb-background-heading-wrap::before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
@media ( max-width: 768px ) { .fl-node-5c34eaeb90cba .uabb-responsive-mobile .uabb-side-left,
.fl-node-5c34eaeb90cba .uabb-responsive-mobile .uabb-side-right,
.fl-node-5c34eaeb90cba .uabb-responsive-medsmall .uabb-side-left,
.fl-node-5c34eaeb90cba .uabb-responsive-medsmall .uabb-side-right {
width: 10%;
}
.fl-node-5c34eaeb90cba .uabb-responsive-mobile .uabb-divider-content h3 {
white-space: normal;
}
.fl-node-5c34eaeb90cba .uabb-heading .uabb-heading-text {
}
.fl-node-5c34eaeb90cba .uabb-heading-wrapper .uabb-heading,
.fl-node-5c34eaeb90cba .uabb-heading-wrapper .uabb-subheading,
.fl-node-5c34eaeb90cba .uabb-heading-wrapper .uabb-subheading * {
text-align: center;
}
.uabb-background-heading-wrap::before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
.fl-node-5c34eaeb90cba > .fl-module-content {
margin-top:20px;
margin-bottom:0px;
}
.fl-node-5c34eaeb90cdb .uabb-separator-parent {
line-height: 0;
text-align: center;
}
.fl-node-5c34eaeb90cdb .uabb-image-outter-wrap {
width: 70px;
} .fl-node-5c34eaeb90cdb .uabb-imgicon-wrap {
text-align: center;
}
.fl-node-5c34eaeb90cdb .uabb-image .uabb-photo-img {
width: 70px;
}
.fl-node-5c34eaeb90cdb .uabb-image .uabb-image-content{
} @media ( max-width: 1122px ) {
.fl-node-5c34eaeb90cdb .uabb-imgicon-wrap {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-5c34eaeb90cdb .uabb-imgicon-wrap {
text-align: ;
}
}
.fl-node-5c34eaeb90cdb .uabb-separator-wrap {
width: 100%;
display: table;
}
.fl-node-5c34eaeb90cdb .uabb-separator-wrap.uabb-separator-center {
margin-left: auto;
margin-right: auto;
}
.fl-node-5c34eaeb90cdb .uabb-separator-line {
display: table-cell;
vertical-align:middle;
}
.fl-node-5c34eaeb90cdb .uabb-separator-line > span {
border-top:1px solid #003b5c;
display: block;
margin-top: 0 !important;
}
.fl-node-5c34eaeb90cdb .uabb-divider-content{
padding-left: 10px;
padding-right: 10px;
}
.fl-node-5c34eaeb90cdb .uabb-side-left{
width: 50%;
}
.fl-node-5c34eaeb90cdb .uabb-side-right{
width: 50%;
}
.fl-node-5c34eaeb90cdb .uabb-divider-content {
display: table-cell;
}
.fl-node-5c34eaeb90cdb .uabb-divider-content .uabb-icon-wrap{
display: block;
}
@media ( max-width: 1122px ) { .fl-node-5c34eaeb90cdb .uabb-responsive-medsmall .uabb-side-left {
width: 20%;
}
.fl-node-5c34eaeb90cdb .uabb-responsive-medsmall .uabb-side-right {
width: 20%;
}
.fl-node-5c34eaeb90cdb .uabb-responsive-medsmall .uabb-divider-content h3 {
white-space: normal;
}
}
@media ( max-width: 768px ) { .fl-node-5c34eaeb90cdb .uabb-responsive-mobile .uabb-side-left,
.fl-node-5c34eaeb90cdb .uabb-responsive-medsmall .uabb-side-left {
width: 10%;
}
.fl-node-5c34eaeb90cdb .uabb-responsive-mobile .uabb-side-right,
.fl-node-5c34eaeb90cdb .uabb-responsive-medsmall .uabb-side-right {
width: 10%;
}
.fl-node-5c34eaeb90cdb .uabb-responsive-mobile .uabb-divider-content h3 {
white-space: normal;
}
}
.fl-node-5c34eaeb90cdb > .fl-module-content {
margin-top:0px;
}
.fl-module-info-banner .uabb-infobanner-module-link {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 9;
}
.uabb-ultb3-desc {
margin-bottom: 24px;
}
.uabb-module-content .uabb-text-editor :not(a) {
color: inherit;
}
.uabb-module-content .uabb-text-editor :not(i) {
font-family: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
font-size: inherit;
line-height: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
font-weight: inherit;
}
.uabb-ultb3-align-left {
text-align: left;
}
.uabb-ultb3-align-center {
text-align: center;
}
.uabb-ultb3-align-right {
text-align: right;
}
.uabb-ultb3-box {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
overflow: hidden;
}
.uabb-ultb3-img {
top: 0;
left: 0;
border: 0;
box-shadow: none;
max-width: none!important;
width: auto!important;
float: none;
margin: 0 auto;
display: block;
position: absolute;
z-index: 1;
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
transition: all 300ms linear;
}
.uabb-ultb3-box-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
}
.uabb-ultb3-info {
padding: 25px;
position: relative;
z-index: 5;
width: 100%;
}
.uabb-ultb3-img.uabb-ultb3-img-top-right {
left: auto;
right: 0;
}
.uabb-ultb3-img.uabb-ultb3-img-center-left {
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.uabb-ultb3-img.uabb-ultb3-img-center {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.uabb-ultb3-img.uabb-ultb3-img-center-right {
left: auto;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ultb3-img.uabb-ultb3-img-bottom-center,
.uabb-ultb3-img.uabb-ultb3-img-bottom-right {
top: auto;
bottom: 0;
}
.uabb-ultb3-img.uabb-ultb3-img-bottom-right {
right: 0;
left: auto;
}
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-top-right {
top: -30px;
}
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-50%, -47%);
-moz-transform: translate(-50%, -47%);
-ms-transform: translate(-50%, -47%);
-o-transform: translate(-50%, -47%);
transform: translate(-50%, -47%);
}
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center,
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
bottom: -30px;
}
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-top-right {
top: -20px;
}
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-center-left {
-webkit-transform: translateY(-60%);
-moz-transform: translateY(-60%);
-ms-transform: translateY(-60%);
-o-transform: translateY(-60%);
transform: translateY(-60%);
}
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-50%, -60%);
-moz-transform: translate(-50%, -60%);
-ms-transform: translate(-50%, -60%);
-o-transform: translate(-50%, -60%);
transform: translate(-50%, -60%);
}
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-55%);
-moz-transform: translateY(-55%);
-ms-transform: translateY(-55%);
-o-transform: translateY(-55%);
transform: translateY(-55%);
}
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-bottom-center,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
bottom: -50px;
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-center-left {
left: -30px;
}
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-top-center {
-webkit-transform: translateX(-35%);
-moz-transform: translateX(-35%);
-ms-transform: translateX(-35%);
-o-transform: translateX(-35%);
transform: translateX(-35%);
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-top-center {
-webkit-transform: translateX(-40%);
-moz-transform: translateX(-40%);
-ms-transform: translateX(-40%);
-o-transform: translateX(-40%);
transform: translateX(-40%);
}
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
right: -40px;
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-55%, -50%);
-moz-transform: translate(-55%, -50%);
-ms-transform: translate(-55%, -50%);
-o-transform: translate(-55%, -50%);
transform: translate(-55%, -50%);
}
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translate(25%, -50%);
-moz-transform: translate(25%, -50%);
-ms-transform: translate(25%, -50%);
-o-transform: translate(25%, -50%);
transform: translate(25%, -50%);
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translate(20%, -50%);
-moz-transform: translate(20%, -50%);
-ms-transform: translate(20%, -50%);
-o-transform: translate(20%, -50%);
transform: translate(20%, -50%);
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-webkit-transform: translate(-55%);
-moz-transform: translate(-55%);
-ms-transform: translate(-55%);
-o-transform: translate(-55%);
transform: translate(-55%);
}
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-top-center {
-webkit-transform: translateX(-60%);
-moz-transform: translateX(-60%);
-ms-transform: translateX(-60%);
-o-transform: translateX(-60%);
transform: translateX(-60%);
}
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-top-center {
-webkit-transform: translateX(-65%);
-moz-transform: translateX(-65%);
-ms-transform: translateX(-65%);
-o-transform: translateX(-65%);
transform: translateX(-65%);
}
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
right: -20px;
}
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-45%, -50%);
-moz-transform: translate(-45%, -50%);
-ms-transform: translate(-45%, -50%);
-o-transform: translate(-45%, -50%);
transform: translate(-45%, -50%);
}
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translate(10%, -50%);
-moz-transform: translate(10%, -50%);
-ms-transform: translate(10%, -50%);
-o-transform: translate(10%, -50%);
transform: translate(10%, -50%);
}
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-bottom-left {
left: -50px;
}
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-webkit-transform: translate(-45%);
-moz-transform: translate(-45%);
-ms-transform: translate(-45%);
-o-transform: translate(-45%);
transform: translate(-45%);
}
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
-webkit-transform: rotate(5deg) scale(1.1);
-moz-transform: rotate(5deg) scale(1.1);
-ms-transform: rotate(5deg) scale(1.1);
-o-transform: rotate(5deg) scale(1.1);
transform: rotate(5deg) scale(1.1);
}
.uabb-ib-pan .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-pan .uabb-ultb3-img.uabb-ultb3-img-top-right {
top: -15px;
}
* .uabb-ib-pan .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-pan .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
bottom: -15px;
}
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-50%, -50%) rotate(5deg) scale(1.1);
-moz-transform: translate(-50%, -50%) rotate(5deg) scale(1.1);
-ms-transform: translate(-50%, -50%) rotate(5deg) scale(1.1);
-o-transform: translate(-50%, -50%) rotate(5deg) scale(1.1);
transform: translate(-50%, -50%) rotate(5deg) scale(1.1);
}
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-webkit-transform: translateX(-50%) scale(1.1);
-moz-transform: translateX(-50%) scale(1.1);
-ms-transform: translateX(-50%) scale(1.1);
-o-transform: translateX(-50%) scale(1.1);
transform: translateX(-50%) scale(1.1);
}
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-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-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-50%, -50%) scale(1);
-moz-transform: translate(-50%, -50%) scale(1);
-ms-transform: translate(-50%, -50%) scale(1);
-o-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
}
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
-webkit-transform: scale(1.15);
-moz-transform: scale(1.15);
-ms-transform: scale(1.15);
-o-transform: scale(1.15);
transform: scale(1.15);
}
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-webkit-transform: translateX(-50%) scale(1.15);
-moz-transform: translateX(-50%) scale(1.15);
-ms-transform: translateX(-50%) scale(1.15);
-o-transform: translateX(-50%) scale(1.15);
transform: translateX(-50%) scale(1.15);
}
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-50%) scale(1.15);
-moz-transform: translateY(-50%) scale(1.15);
-ms-transform: translateY(-50%) scale(1.15);
-o-transform: translateY(-50%) scale(1.15);
transform: translateY(-50%) scale(1.15);
}
.uabb-ultb3-box .uabb-ultb3-title,
.uabb-ultb3-desc p:last-child {
margin: 0;
}
.uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ultb3-img.uabb-ultb3-img-bottom-center {
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
}
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-top-right {
top: 0;
}
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-center-right,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-slide-down:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-47%);
-moz-transform: translateY(-47%);
-ms-transform: translateY(-47%);
-o-transform: translateY(-47%);
transform: translateY(-47%);
}
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-center,
.uabb-ib-slide-up .uabb-ultb3-img.uabb-ultb3-img-center,
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-center,
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-bottom-center,
.uabb-ib-slide-down .uabb-ultb3-img.uabb-ultb3-img-bottom-right,
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center,
.uabb-ib-slide-up:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right {
bottom: 0;
}
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-slide-right:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left {
left: 0;
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-right,
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-top-right,
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-bottom-right,
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-top-right {
right: 0;
}
.uabb-ib-slide-left:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-left,
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-top-left,
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-center-left {
left: -40px;
}
.uabb-ib-slide-left .uabb-ultb3-img.uabb-ultb3-img-bottom-center,
.uabb-ib-slide-right .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-webkit-transform: translate(-50%);
-moz-transform: translate(-50%);
-ms-transform: translate(-50%);
-o-transform: translate(-50%);
transform: translate(-50%);
}
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-top-center,
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-bottom-center {
-webkit-transform: translateX(-50%) rotate(5deg) scale(1.1);
-moz-transform: translateX(-50%) rotate(5deg) scale(1.1);
-ms-transform: translateX(-50%) rotate(5deg) scale(1.1);
-o-transform: translateX(-50%) rotate(5deg) scale(1.1);
transform: translateX(-50%) rotate(5deg) scale(1.1);
}
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-pan:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-50%) rotate(5deg) scale(1.1);
-moz-transform: translateY(-50%) rotate(5deg) scale(1.1);
-ms-transform: translateY(-50%) rotate(5deg) scale(1.1);
-o-transform: translateY(-50%) rotate(5deg) scale(1.1);
transform: translateY(-50%) rotate(5deg) scale(1.1);
}
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-50%) scale(1.1);
-moz-transform: translateY(-50%) scale(1.1);
-ms-transform: translateY(-50%) scale(1.1);
-o-transform: translateY(-50%) scale(1.1);
transform: translateY(-50%) scale(1.1);
}
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-center-left,
.uabb-ib-zoom-out:hover .uabb-ultb3-img.uabb-ultb3-img-center-right {
-webkit-transform: translateY(-50%) scale(1);
-moz-transform: translateY(-50%) scale(1);
-ms-transform: translateY(-50%) scale(1);
-o-transform: translateY(-50%) scale(1);
transform: translateY(-50%) scale(1);
}
.uabb-ib-zoom-out .uabb-ultb3-img.uabb-ultb3-img-center,
.uabb-ib-zoom-in:hover .uabb-ultb3-img.uabb-ultb3-img-center {
-webkit-transform: translate(-50%, -50%) scale(1.1);
-moz-transform: translate(-50%, -50%) scale(1.1);
-ms-transform: translate(-50%, -50%) scale(1.1);
-o-transform: translate(-50%, -50%) scale(1.1);
transform: translate(-50%, -50%) scale(1.1);
} .fl-node-5eb1d18385541 .uabb-ultb3-box {
min-height: 275px;
-ms-grid-row-align: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.internet-explorer .fl-node-5eb1d18385541 .uabb-ultb3-box {
height: 275px;
} .fl-node-5eb1d18385541 .uabb-ultb3-box {
background: #0094c9;
}
.fl-node-5eb1d18385541 .uabb-ultb3-box .uabb-ultb3-title {
color: #ffffff;
margin-top: 0px;
margin-bottom: 10px;
}  .fl-node-5eb1d18385541 .uabb-text-editor {
color: #ffffff;
margin-top: 0px;
margin-bottom: 20px;
}
.fl-node-5eb1d18385541 .uabb-button .uabb-btn-img {
width: 20px;
}
.fl-node-5eb1d18385541 .uabb-creative-button-wrap a,
.fl-node-5eb1d18385541 .uabb-creative-button-wrap a:visited {
padding:12px 24px;			border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
background: #003b5c;
border: 1px solid #003b5c;
}
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button,
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button *,
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button:visited,
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button:visited * {
color: #ffffff;
}
.fl-node-5eb1d18385541 .uabb-creative-button-wrap a:focus,
.fl-node-5eb1d18385541 .uabb-creative-button-wrap a:hover {
background: #eb6e1f;
border: 1px solid #eb6e1f;
}
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button:focus,
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button:focus *,
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button:hover,
.fl-builder-content .fl-node-5eb1d18385541 .uabb-creative-button-wrap a.uabb-button:hover * {
color: #ffffff;
}
@media ( max-width: 768px ) {
.fl-node-5eb1d18385541 .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
text-align: ;
}
}
@media ( max-width: 1122px ) {
.fl-node-5eb1d18385541 .uabb-creative-button-wrap.uabb-creative-button-tablet- {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-5eb1d18385541 .uabb-creative-button-wrap a,
.fl-node-5eb1d18385541 .uabb-creative-button-wrap a:visited {
padding-top:;padding-bottom:;padding-left:;padding-right:;}
}
.fl-node-5eb1d18385541 .uabb-ultb3-box .uabb-ultb3-title {
font-family: Montserrat, sans-serif;
font-weight: 700;
}
.fl-node-5eb1d18385541 .uabb-ultb3-box-overlay {
}  @media ( max-width: 768px ) {
}  .fl-node-5eb1d015c0b93 .uabb-ultb3-box {
min-height: 275px;
-ms-grid-row-align: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.internet-explorer .fl-node-5eb1d015c0b93 .uabb-ultb3-box {
height: 275px;
} .fl-node-5eb1d015c0b93 .uabb-ultb3-box {
background: #82d2e5;
}
.fl-node-5eb1d015c0b93 .uabb-ultb3-box .uabb-ultb3-title {
color: #ffffff;
margin-top: 0px;
margin-bottom: 10px;
}  .fl-node-5eb1d015c0b93 .uabb-text-editor {
color: #ffffff;
margin-top: 0px;
margin-bottom: 20px;
}
.fl-node-5eb1d015c0b93 .uabb-button .uabb-btn-img {
width: 20px;
}
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a,
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a:visited {
padding:12px 24px;			border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
background: #003b5c;
border: 1px solid #003b5c;
}
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button,
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button *,
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button:visited,
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button:visited * {
color: #ffffff;
}
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a:focus,
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a:hover {
background: #eb6e1f;
border: 1px solid #eb6e1f;
}
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button:focus,
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button:focus *,
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button:hover,
.fl-builder-content .fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a.uabb-button:hover * {
color: #ffffff;
}
@media ( max-width: 768px ) {
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
text-align: ;
}
}
@media ( max-width: 1122px ) {
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap.uabb-creative-button-tablet- {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a,
.fl-node-5eb1d015c0b93 .uabb-creative-button-wrap a:visited {
padding-top:;padding-bottom:;padding-left:;padding-right:;}
}
.fl-node-5eb1d015c0b93 .uabb-ultb3-box .uabb-ultb3-title {
font-family: Montserrat, sans-serif;
font-weight: 700;
}
.fl-node-5eb1d015c0b93 .uabb-ultb3-box-overlay {
}  @media ( max-width: 768px ) {
} .uabb-heading-wrapper .uabb-subheading * {
margin: 0;
}
.fl-node-5eb1d777408e9 .uabb-heading .uabb-heading-text {
}
.fl-node-5eb1d777408e9 .uabb-heading .uabb-heading-text {
}
.fl-node-5eb1d777408e9 .uabb-heading-wrapper .uabb-heading {
margin-top: 0px;
margin-bottom: 15px;
}
.fl-node-5eb1d777408e9 .uabb-subheading {
margin-top: 15px;
margin-bottom: 0px;
} .fl-node-5eb1d777408e9 .fl-module-content.fl-node-content .uabb-heading,
.fl-node-5eb1d777408e9 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,
.fl-node-5eb1d777408e9 .fl-module-content.fl-node-content .uabb-heading * {
color: #003b5c;
}   .fl-node-5eb1d777408e9 .uabb-module-content.uabb-heading-wrapper .uabb-background-heading-wrap::before {
color: ;
}
@media ( max-width: 1122px ) { .fl-node-5eb1d777408e9 .uabb-responsive-medsmall .uabb-side-left,
.fl-node-5eb1d777408e9 .uabb-responsive-medsmall .uabb-side-right {
width: 20%;
}
.fl-node-5eb1d777408e9 .uabb-responsive-medsmall .uabb-divider-content h3 {
white-space: normal;
}
.fl-node-5eb1d777408e9 .uabb-heading .uabb-heading-text {
}
.uabb-background-heading-wrap::before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
@media ( max-width: 768px ) { .fl-node-5eb1d777408e9 .uabb-responsive-mobile .uabb-side-left,
.fl-node-5eb1d777408e9 .uabb-responsive-mobile .uabb-side-right,
.fl-node-5eb1d777408e9 .uabb-responsive-medsmall .uabb-side-left,
.fl-node-5eb1d777408e9 .uabb-responsive-medsmall .uabb-side-right {
width: 10%;
}
.fl-node-5eb1d777408e9 .uabb-responsive-mobile .uabb-divider-content h3 {
white-space: normal;
}
.fl-node-5eb1d777408e9 .uabb-heading .uabb-heading-text {
}
.fl-node-5eb1d777408e9 .uabb-heading-wrapper .uabb-heading,
.fl-node-5eb1d777408e9 .uabb-heading-wrapper .uabb-subheading,
.fl-node-5eb1d777408e9 .uabb-heading-wrapper .uabb-subheading * {
text-align: center;
}
.uabb-background-heading-wrap::before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
.fl-node-5eb1d777408e9 > .fl-module-content {
margin-top:20px;
margin-bottom:0px;
}
.fl-node-5eb1d76f4842b .uabb-separator-parent {
line-height: 0;
text-align: center;
}
.fl-node-5eb1d76f4842b .uabb-image-outter-wrap {
width: 70px;
} .fl-node-5eb1d76f4842b .uabb-imgicon-wrap {
text-align: center;
}
.fl-node-5eb1d76f4842b .uabb-image .uabb-photo-img {
width: 70px;
}
.fl-node-5eb1d76f4842b .uabb-image .uabb-image-content{
} @media ( max-width: 1122px ) {
.fl-node-5eb1d76f4842b .uabb-imgicon-wrap {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-5eb1d76f4842b .uabb-imgicon-wrap {
text-align: ;
}
}
.fl-node-5eb1d76f4842b .uabb-separator-wrap {
width: 100%;
display: table;
}
.fl-node-5eb1d76f4842b .uabb-separator-wrap.uabb-separator-center {
margin-left: auto;
margin-right: auto;
}
.fl-node-5eb1d76f4842b .uabb-separator-line {
display: table-cell;
vertical-align:middle;
}
.fl-node-5eb1d76f4842b .uabb-separator-line > span {
border-top:1px solid #003b5c;
display: block;
margin-top: 0 !important;
}
.fl-node-5eb1d76f4842b .uabb-divider-content{
padding-left: 10px;
padding-right: 10px;
}
.fl-node-5eb1d76f4842b .uabb-side-left{
width: 50%;
}
.fl-node-5eb1d76f4842b .uabb-side-right{
width: 50%;
}
.fl-node-5eb1d76f4842b .uabb-divider-content {
display: table-cell;
}
.fl-node-5eb1d76f4842b .uabb-divider-content .uabb-icon-wrap{
display: block;
}
@media ( max-width: 1122px ) { .fl-node-5eb1d76f4842b .uabb-responsive-medsmall .uabb-side-left {
width: 20%;
}
.fl-node-5eb1d76f4842b .uabb-responsive-medsmall .uabb-side-right {
width: 20%;
}
.fl-node-5eb1d76f4842b .uabb-responsive-medsmall .uabb-divider-content h3 {
white-space: normal;
}
}
@media ( max-width: 768px ) { .fl-node-5eb1d76f4842b .uabb-responsive-mobile .uabb-side-left,
.fl-node-5eb1d76f4842b .uabb-responsive-medsmall .uabb-side-left {
width: 10%;
}
.fl-node-5eb1d76f4842b .uabb-responsive-mobile .uabb-side-right,
.fl-node-5eb1d76f4842b .uabb-responsive-medsmall .uabb-side-right {
width: 10%;
}
.fl-node-5eb1d76f4842b .uabb-responsive-mobile .uabb-divider-content h3 {
white-space: normal;
}
}
.fl-node-5eb1d76f4842b > .fl-module-content {
margin-top:0px;
} .fl-module-post-grid .fl-sep {
display: inline-block;
margin: 0 2px;
} body.rtl .fl-post-column {
float: right;
}
.fl-post-column {
float: left;
}
.fl-post-column .fl-post-grid-post {
visibility: visible;
} .fl-post-grid {
margin: 0 auto;
position: relative;
}
.fl-post-grid:before,
.fl-post-grid:after {
display: table;
content: " ";
}
.fl-post-grid:after {
clear: both;
}
.fl-post-grid-post {
background: #fff;
border: 1px solid #e6e6e6;
visibility: hidden;
}
.fl-post-grid-post,
.fl-post-feed-post {
overflow: hidden;
}
.fl-post-grid-image {
position: relative;
}
.fl-post-grid-image img {
height: auto !important;
width: 100% !important;
}
.fl-post-grid-text {
padding: 20px;
}
.fl-post-grid-title {
padding-bottom: 7px;
}
body .fl-post-grid-text,
body .fl-post-grid-content p {
font-size: 14px;
line-height: 22px;
}
body .fl-post-grid-text > *:last-child {
margin-bottom: 0;
padding-bottom: 0;
}
body .fl-post-grid-content p:last-of-type {
margin-bottom: 0;
padding-bottom: 0;
}
body .fl-post-grid-text a {
text-decoration: none;
}
body .fl-post-grid-title {
font-size: 20px;
line-height: 26px;
margin: 0 0 10px;
padding: 0;
}
body .fl-post-grid-meta {
font-size: 14px;
padding-bottom: 10px;
}
.fl-post-feed-comments .fa {
vertical-align: text-top;
}
.fl-post-grid-more {
margin-top: 10px;
display: inline-block;
}
.fl-post-grid #infscr-loading {
bottom: 0;
left: 0;
right: 0;
padding: 40px 0;
position: absolute;
text-align: center;
width: 100%;
} .fl-post-gallery-post {
overflow: hidden;
position: relative;
visibility: hidden;
}
.fl-post-gallery-link {
display: block;
height: 100%;
}
.fl-post-gallery-img {
position: relative;
z-index: 1;
}
.fl-post-gallery-img-horiz {
height: 100% !important;
max-height: 100% !important;
max-width: none !important;
width: auto !important;
}
.fl-post-gallery-img-vert {
height: auto !important;
max-height: none !important;
max-width: 100% !important;
width: 100% !important;
}
.fl-post-gallery-text-wrap {
position: absolute;
top: 0;
bottom: 0;
z-index: 2;
width: 100%;
height: 100%;
padding: 0 20px;
text-align: center;
filter: alpha(opacity = 0);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
.fl-post-gallery-link:hover .fl-post-gallery-text-wrap {
filter: alpha(opacity = 100);
opacity: 1;
}
.fl-post-gallery-text {
position: absolute;
top: 50%;
left: 50%;
display: block;
width: 100%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
} .fl-post-gallery-text,
.fl-post-gallery-link:hover .fl-post-gallery-text{
-webkit-transform: translate3d(-50%,-50%,0);
-moz-transform: translate3d(-50%,-50%,0);
-ms-transform: translate(-50%,-50%);
transform: translate3d(-50%,-50%,0);
} .fl-post-gallery-text .fl-gallery-icon{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.fl-post-gallery-text .fl-gallery-icon i,
.fl-post-gallery-text .fl-gallery-icon i:before{
width: 24px;
height: 24px;
font-size: 24px;
}
.fl-post-gallery-text h2.fl-post-gallery-title {
font-size: 22px;
margin: 0 0 5px 0;
}
.fl-post-gallery #infscr-loading {
clear: both;
padding: 40px 0;
text-align: center;
width: 100%;
} .fl-post-feed-post {
border-bottom: 1px solid #e6e6e6;
margin-bottom: 40px;
}
.fl-post-feed-post:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.fl-post-feed-header {
margin-bottom: 20px;
}
.fl-post-feed-header a {
text-decoration: none;
}
body h2.fl-post-feed-title {
margin: 0 0 10px;
padding: 0;
clear: none;
}
body .fl-post-feed-meta {
font-size: 14px;
margin-bottom: 5px;
}
.fl-post-feed-meta .fl-sep {
margin: 0 3px;
}
.fl-post-feed-image {
margin-bottom: 25px;
position: relative;
}
.fl-post-feed-image img {
height: auto !important;
width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image {
float: left;
margin-bottom: 0;
width: 33%;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text {
margin-left: 37%;
}
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
float: right;
margin-bottom: 0;
width: 33%;
}
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
margin-right: 37%;
}
.fl-post-feed-content a {
text-decoration: none;
}
.fl-post-feed-content p:last-of-type {
margin-bottom: 0;
padding-bottom: 0;
}
.fl-post-feed-more {
margin-top: 15px;
display: inline-block;
}
.fl-post-feed #infscr-loading {
padding: 40px 0;
text-align: center;
width: 100%;
} .fl-post-grid-empty {
}
li.fl-post-feed-post,li.fl-post-gallery-post, li.fl-post-grid-post {
list-style: none;
}
@media (max-width: 768px) { .fl-post-feed-post.fl-post-feed-image-beside,
.fl-post-feed-post.fl-post-feed-image-beside-content,
.fl-post-feed-post.fl-post-feed-image-beside-right,
.fl-post-feed-post.fl-post-feed-image-beside-content-right {
max-width: 300px;
margin-left: auto;
margin-right: auto;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside .fl-post-feed-image img,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image img,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image img,
.fl-post-feed-image-beside-content-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image img {
float: none;
width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
margin-bottom: 20px;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text,
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
margin-left: 0 !important;
margin-right: 0 !important;
}
}
.fl-node-5eb1d5a030b05 .fl-post-grid {
margin-left: -10px;
margin-right: -10px;
}
.fl-node-5eb1d5a030b05 .fl-post-column {
padding-bottom: 20px;
padding-left: 10px;
padding-right: 10px;
width: 33.333333333333%;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(3n + 1) {
clear: both;
}
@media screen and (max-width: 1200px) {
.fl-node-5eb1d5a030b05 .fl-post-column {
width: 33.333333333333%;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(3n + 1) {
clear: none;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(3n + 1) {
clear: both;
}
}
@media screen and (max-width: 1122px) {
.fl-node-5eb1d5a030b05 .fl-post-column {
width: 50%;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(3n + 1) {
clear: none;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(2n + 1) {
clear: both;
}
}
@media screen and (max-width: 768px) {
.fl-node-5eb1d5a030b05 .fl-post-column {
width: 100%;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(2n + 1) {
clear: none;
}
.fl-node-5eb1d5a030b05 .fl-post-column:nth-child(1n + 1) {
clear: both;
}
}
.fl-node-5eb1d5a030b05 .fl-post-grid-post {
text-align: left;
}
.fl-node-5eb1d5a030b05 .fl-post-grid-text {
padding: 20px;
}
.fl-builder-content .fl-node-5eb1d5a030b05 .fl-post-grid-content a,
.fl-builder-content .fl-node-5eb1d5a030b05 .page-numbers {
color: #0094c9;
}
.fl-builder-content .fl-node-5eb1d5a030b05 .fl-post-grid-content a:hover,
.fl-builder-content .fl-node-5eb1d5a030b05 .page-numbers:hover {
color: #eb6e1f;
}
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:hover,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:visited {
background: #003b5c;
}
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:hover {
background-color: #003b5c;
}
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:visited,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button *,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:visited * {
color: #ffffff;
}
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:hover,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:hover * {
color: #ffffff;
}
.fl-node-5eb1d5a030b05 .fl-post-grid-post {
border-style: none;
border-width: 0;
background-clip: border-box;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
}
.fl-builder-content .fl-node-5eb1d5a030b05 .fl-post-grid-meta, .fl-builder-content .fl-node-5eb1d5a030b05 .fl-post-grid-meta a {
letter-spacing: 0px;
}
.fl-node-5eb1d5a030b05 .fl-button-wrap {
text-align: center;
}
.fl-builder-content .fl-node-5eb1d5a030b05 .fl-button-wrap a.fl-button {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
}
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button, .fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:visited {
font-size: 14px;
line-height: 14px;
border: 1px solid #002f50;
border-style: none;
border-width: 0;
background-clip: border-box;
}
.fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:hover, .fl-builder-content .fl-node-5eb1d5a030b05 a.fl-button:focus {
border: 1px solid #002f50;
border-style: none;
border-width: 0;
background-clip: border-box;
}
.fl-node-5eb1d5a030b05 > .fl-module-content {
margin-top:10px;
margin-right:10px;
margin-bottom:0px;
margin-left:10px;
}
.uabb-heading-wrapper .uabb-subheading * {
margin: 0;
}
.fl-node-5eb1d38c2b8f8 .uabb-heading .uabb-heading-text {
}
.fl-node-5eb1d38c2b8f8 .uabb-heading .uabb-heading-text {
}
.fl-node-5eb1d38c2b8f8 .uabb-heading-wrapper .uabb-heading {
margin-top: 0px;
margin-bottom: 15px;
}
.fl-node-5eb1d38c2b8f8 .uabb-subheading {
margin-top: 15px;
margin-bottom: 0px;
} .fl-node-5eb1d38c2b8f8 .fl-module-content.fl-node-content .uabb-heading,
.fl-node-5eb1d38c2b8f8 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,
.fl-node-5eb1d38c2b8f8 .fl-module-content.fl-node-content .uabb-heading * {
color: #003b5c;
}   .fl-node-5eb1d38c2b8f8 .uabb-module-content.uabb-heading-wrapper .uabb-background-heading-wrap::before {
color: ;
}
@media ( max-width: 1122px ) { .fl-node-5eb1d38c2b8f8 .uabb-responsive-medsmall .uabb-side-left,
.fl-node-5eb1d38c2b8f8 .uabb-responsive-medsmall .uabb-side-right {
width: 20%;
}
.fl-node-5eb1d38c2b8f8 .uabb-responsive-medsmall .uabb-divider-content h3 {
white-space: normal;
}
.fl-node-5eb1d38c2b8f8 .uabb-heading .uabb-heading-text {
}
.uabb-background-heading-wrap::before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
@media ( max-width: 768px ) { .fl-node-5eb1d38c2b8f8 .uabb-responsive-mobile .uabb-side-left,
.fl-node-5eb1d38c2b8f8 .uabb-responsive-mobile .uabb-side-right,
.fl-node-5eb1d38c2b8f8 .uabb-responsive-medsmall .uabb-side-left,
.fl-node-5eb1d38c2b8f8 .uabb-responsive-medsmall .uabb-side-right {
width: 10%;
}
.fl-node-5eb1d38c2b8f8 .uabb-responsive-mobile .uabb-divider-content h3 {
white-space: normal;
}
.fl-node-5eb1d38c2b8f8 .uabb-heading .uabb-heading-text {
}
.fl-node-5eb1d38c2b8f8 .uabb-heading-wrapper .uabb-heading,
.fl-node-5eb1d38c2b8f8 .uabb-heading-wrapper .uabb-subheading,
.fl-node-5eb1d38c2b8f8 .uabb-heading-wrapper .uabb-subheading * {
text-align: center;
}
.uabb-background-heading-wrap::before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
.fl-node-5eb1d2f33e175 .uabb-separator-parent {
line-height: 0;
text-align: center;
}
.fl-node-5eb1d2f33e175 .uabb-image-outter-wrap {
width: 70px;
} .fl-node-5eb1d2f33e175 .uabb-imgicon-wrap {
text-align: center;
}
.fl-node-5eb1d2f33e175 .uabb-image .uabb-photo-img {
width: 70px;
}
.fl-node-5eb1d2f33e175 .uabb-image .uabb-image-content{
} @media ( max-width: 1122px ) {
.fl-node-5eb1d2f33e175 .uabb-imgicon-wrap {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-5eb1d2f33e175 .uabb-imgicon-wrap {
text-align: ;
}
}
.fl-node-5eb1d2f33e175 .uabb-separator-wrap {
width: 100%;
display: table;
}
.fl-node-5eb1d2f33e175 .uabb-separator-wrap.uabb-separator-center {
margin-left: auto;
margin-right: auto;
}
.fl-node-5eb1d2f33e175 .uabb-separator-line {
display: table-cell;
vertical-align:middle;
}
.fl-node-5eb1d2f33e175 .uabb-separator-line > span {
border-top:1px solid #003b5c;
display: block;
margin-top: 0 !important;
}
.fl-node-5eb1d2f33e175 .uabb-divider-content{
padding-left: 10px;
padding-right: 10px;
}
.fl-node-5eb1d2f33e175 .uabb-side-left{
width: 50%;
}
.fl-node-5eb1d2f33e175 .uabb-side-right{
width: 50%;
}
.fl-node-5eb1d2f33e175 .uabb-divider-content {
display: table-cell;
}
.fl-node-5eb1d2f33e175 .uabb-divider-content .uabb-icon-wrap{
display: block;
}
@media ( max-width: 1122px ) { .fl-node-5eb1d2f33e175 .uabb-responsive-medsmall .uabb-side-left {
width: 20%;
}
.fl-node-5eb1d2f33e175 .uabb-responsive-medsmall .uabb-side-right {
width: 20%;
}
.fl-node-5eb1d2f33e175 .uabb-responsive-medsmall .uabb-divider-content h3 {
white-space: normal;
}
}
@media ( max-width: 768px ) { .fl-node-5eb1d2f33e175 .uabb-responsive-mobile .uabb-side-left,
.fl-node-5eb1d2f33e175 .uabb-responsive-medsmall .uabb-side-left {
width: 10%;
}
.fl-node-5eb1d2f33e175 .uabb-responsive-mobile .uabb-side-right,
.fl-node-5eb1d2f33e175 .uabb-responsive-medsmall .uabb-side-right {
width: 10%;
}
.fl-node-5eb1d2f33e175 .uabb-responsive-mobile .uabb-divider-content h3 {
white-space: normal;
}
}
.fl-node-5eb1d2f33e175 > .fl-module-content {
margin-top:0px;
} .fl-node-619c0cf476864 .uabb-ultb3-box {
min-height: 275px;
-ms-grid-row-align: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.internet-explorer .fl-node-619c0cf476864 .uabb-ultb3-box {
height: 275px;
} .fl-node-619c0cf476864 .uabb-ultb3-box {
background: #0094c9;
}
.fl-node-619c0cf476864 .uabb-ultb3-box .uabb-ultb3-title {
color: #ffffff;
margin-top: 0px;
margin-bottom: 10px;
}  .fl-node-619c0cf476864 .uabb-text-editor {
color: #ffffff;
margin-top: 0px;
margin-bottom: 20px;
}
.fl-node-619c0cf476864 .uabb-button .uabb-btn-img {
width: 20px;
}
.fl-node-619c0cf476864 .uabb-creative-button-wrap a,
.fl-node-619c0cf476864 .uabb-creative-button-wrap a:visited {
padding:12px 24px;			border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
background: #003b5c;
border: 1px solid #003b5c;
}
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button,
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button *,
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button:visited,
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button:visited * {
color: #ffffff;
}
.fl-node-619c0cf476864 .uabb-creative-button-wrap a:focus,
.fl-node-619c0cf476864 .uabb-creative-button-wrap a:hover {
background: #eb6e1f;
border: 1px solid #eb6e1f;
}
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button:focus,
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button:focus *,
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button:hover,
.fl-builder-content .fl-node-619c0cf476864 .uabb-creative-button-wrap a.uabb-button:hover * {
color: #ffffff;
}
@media ( max-width: 768px ) {
.fl-node-619c0cf476864 .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
text-align: ;
}
}
@media ( max-width: 1122px ) {
.fl-node-619c0cf476864 .uabb-creative-button-wrap.uabb-creative-button-tablet- {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-619c0cf476864 .uabb-creative-button-wrap a,
.fl-node-619c0cf476864 .uabb-creative-button-wrap a:visited {
padding-top:;padding-bottom:;padding-left:;padding-right:;}
}
.fl-node-619c0cf476864 .uabb-ultb3-box .uabb-ultb3-title {
font-family: Montserrat, sans-serif;
font-weight: 700;
}
.fl-node-619c0cf476864 .uabb-ultb3-box-overlay {
}  @media ( max-width: 768px ) {
} .uabb-info-list .uabb-info-list-left,
.uabb-info-list .uabb-info-list-right {
float: none;
}
.uabb-info-list .uabb-info-list-wrapper > li {
list-style: none;
margin: 0;
padding: 0;
position: relative;
}
.uabb-module-content .uabb-text-editor :not(a) {
color: inherit;
}
.uabb-module-content .uabb-text-editor :not(i) {
font-family: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
font-size: inherit;
line-height: inherit;
}
.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
font-weight: inherit;
}
.uabb-info-list-content .uabb-info-list-description p:last-of-type {
margin-bottom: 0;
}
.uabb-info-list-connector,
.uabb-info-list-connector-top {
height: 100%;
position: absolute;
z-index: 1;
border-width: 0 0 0 1px;
}
.uabb-info-list-connector-top {
top: 0;
}
.uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-icon,
.uabb-info-list-content-wrapper.uabb-info-list-right .uabb-info-list-icon {
display: inline-block;
vertical-align: top;
}
.uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-icon {
margin-right: 20px;
}
.uabb-info-list-content-wrapper.uabb-info-list-right {
text-align: right;
direction: rtl;
}
.uabb-info-list-content-wrapper.uabb-info-list-right * {
direction: ltr;
}
.uabb-info-list-content-wrapper.uabb-info-list-right .uabb-info-list-icon {
margin-left: 20px;
}
.uabb-info-list-wrapper.uabb-info-list-top li .uabb-info-list-icon {
float: none;
margin: 0 auto;
}
.uabb-info-list-wrapper.uabb-info-list-top li .uabb-info-list-content {
margin: 15px;
padding-bottom: 0;
text-align: center;
}
.uabb-info-list-wrapper.uabb-info-list-top li .uabb-info-list-connector {
height: 0;
left: 50%;
margin-left: 0;
position: absolute;
width: 100%;
}
.uabb-info-list-content.uabb-info-list-top {
margin-right: 1em;
padding: 0;
}
.uabb-info-list-link {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 9;
}
.uabb-info-list-item .uabb-info-list-icon .uabb-icon-wrap {
vertical-align: middle;
}
.uabb-info-list-item .uabb-info-list-icon a {
box-shadow: none;
}
.uabb-info-list-wrapper.uabb-info-list-top .uabb-info-list-item {
width: 100%;
vertical-align: top;
}
.uabb-imgicon-wrap .uabb-icon i {
margin: 0;
}
.uabb-info-list .uabb-info-list-wrapper,
.uabb-info-list-content-wrapper .uabb-info-list-content h2,
.uabb-info-list-content-wrapper .uabb-info-list-content h3,
.uabb-info-list-content-wrapper .uabb-info-list-content h4,
.uabb-info-list-content-wrapper .uabb-info-list-content h5,
.uabb-info-list-content-wrapper .uabb-info-list-content h6 {
margin: 0;
padding: 0;
}
.uabb-info-list-content-wrapper,
.uabb-info-list-icon {
position: relative;
z-index: 5;
}
.uabb-info-list-item:first-child .uabb-info-list-connector-top,
.uabb-info-list-wrapper li:last-child .uabb-info-list-connector {
display: none;
}
.uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-content,
.uabb-info-list-content-wrapper.uabb-info-list-right .uabb-info-list-content,
.uabb-info-list-wrapper.uabb-info-list-top li,
.uabb-info-list-icon .icon {
display: inline-block;
}
.uabb-info-list-content-wrapper.uabb-info-list-top .uabb-info-list-icon,
.uabb-info-list-content-wrapper.uabb-info-list-top .uabb-info-list-content,
.uabb-info-list-wrapper.uabb-info-list-top {
display: block;
}
@media only screen and (max-width:767px) {
.uabb-info-list-wrapper.uabb-info-list-top .uabb-info-list-item .uabb-info-list-connector {
display: none;
}
}
.fl-node-619c03778e95f .uabb-info-list-wrapper .uabb-info-list-item:last-child {
padding-bottom: 0;
}
.fl-node-619c03778e95f .uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-content {
width: calc( 100% - 60px );
}
.fl-node-619c03778e95f .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector,
.fl-node-619c03778e95f .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector-top {
left: 20px;
}
.fl-node-619c03778e95f .uabb-info-list-wrapper .uabb-info-list-item {
padding-bottom: 20px;
}
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-icon .custom-character0 {
text-align: center;
color: ##0094c9;
font-size:20px;
width:40px;
height:40px;
line-height:40px;
background: #ffffff;
border-radius: 100%;
} .fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-imgicon-wrap {
text-align: center;
} .fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i,
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {
color: #0094c9			;
font-size: 20px;
height: auto;
width: auto;
background: #ffffff;
border-radius: 100%;
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
line-height:
40px;
height:
40px;				width:
40px;				text-align: center; }
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {
background: none;
}
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover,
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before {
color: ;
}
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before {
background: none;
} @media ( max-width: 1122px ) {
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-imgicon-wrap {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-imgicon-wrap {
text-align: ;
}
}
.fl-node-619c03778e95f .info-list-icon-dynamic0 .uabb-imgicon-wrap .uabb-photo-img {
background: #ffffff;
}
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-icon .custom-character1 {
text-align: center;
color: ##0094c9;
font-size:20px;
width:40px;
height:40px;
line-height:40px;
background: #ffffff;
border-radius: 100%;
} .fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-imgicon-wrap {
text-align: center;
} .fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i,
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:before {
color: #0094c9			;
font-size: 20px;
height: auto;
width: auto;
background: #ffffff;
border-radius: 100%;
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
line-height:
40px;
height:
40px;				width:
40px;				text-align: center; }
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:before {
background: none;
}
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:hover,
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:hover:before {
color: ;
}
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:hover:before {
background: none;
} @media ( max-width: 1122px ) {
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-imgicon-wrap {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-imgicon-wrap {
text-align: ;
}
}
.fl-node-619c03778e95f .info-list-icon-dynamic1 .uabb-imgicon-wrap .uabb-photo-img {
background: #ffffff;
}
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-icon .custom-character2 {
text-align: center;
color: ##0094c9;
font-size:20px;
width:40px;
height:40px;
line-height:40px;
background: #ffffff;
border-radius: 100%;
} .fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-imgicon-wrap {
text-align: center;
} .fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i,
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:before {
color: #0094c9			;
font-size: 20px;
height: auto;
width: auto;
background: #ffffff;
border-radius: 100%;
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
line-height:
40px;
height:
40px;				width:
40px;				text-align: center; }
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:before {
background: none;
}
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:hover,
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:hover:before {
color: ;
}
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:hover:before {
background: none;
} @media ( max-width: 1122px ) {
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-imgicon-wrap {
text-align: ;
}
}
@media ( max-width: 768px ) {
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-imgicon-wrap {
text-align: ;
}
}
.fl-node-619c03778e95f .info-list-icon-dynamic2 .uabb-imgicon-wrap .uabb-photo-img {
background: #ffffff;
}
.fl-node-619c03778e95f .uabb-icon i {
float: none;
}
.fl-node-619c03778e95f .uabb-icon {
display: block;
}
.fl-node-619c03778e95f .uabb-info-list-content .uabb-info-list-title,
.fl-node-619c03778e95f .uabb-info-list-content .uabb-info-list-title * {
color: #0094c9;
}
.fl-node-619c03778e95f .uabb-info-list-content .uabb-info-list-description {
} @media ( max-width: 1122px) {
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-left,
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-right {
text-align: ;
}	
}
@media ( max-width: 768px ) {
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-left,
.fl-node-619c03778e95f .uabb-info-list .uabb-info-list-right {
text-align: ;
}	
} .fl-node-619c03778e95f > .fl-module-content {
margin-left:20px;
}
@media ( max-width: 768px ) {
.fl-node-619c03778e95f.fl-module > .fl-module-content {
margin-left:36px;
}
}
.fl-icon-group .fl-icon {
display: inline-block;
margin-bottom: 10px;
margin-top: 10px;
}
.fl-node-5c052f8ad1a22 .fl-icon i,
.fl-node-5c052f8ad1a22 .fl-icon i:before {
color: #0094c9;
}
.fl-node-5c052f8ad1a22 .fl-icon i:hover,
.fl-node-5c052f8ad1a22 .fl-icon i:hover:before,
.fl-node-5c052f8ad1a22 .fl-icon a:hover i,
.fl-node-5c052f8ad1a22 .fl-icon a:hover i:before {
color: #eb6e1f;
}
.fl-node-5c052f8ad1a22 .fl-icon i, .fl-node-5c052f8ad1a22 .fl-icon i:before {
font-size: 40px;
}
.fl-node-5c052f8ad1a22 .fl-icon-wrap .fl-icon-text {
height: 70px;
}
@media(max-width: 1200px) {
.fl-node-5c052f8ad1a22 .fl-icon-wrap .fl-icon-text {
height: 70px;
}
}
@media(max-width: 1122px) {
.fl-node-5c052f8ad1a22 .fl-icon-wrap .fl-icon-text {
height: 70px;
}
}
@media(max-width: 768px) {
.fl-node-5c052f8ad1a22 .fl-icon-wrap .fl-icon-text {
height: 70px;
}
}
.fl-node-5c052f8ad1a22 .fl-icon-group {
text-align: center;
}
.fl-node-5c052f8ad1a22 .fl-icon + .fl-icon {
margin-left: 20px;
}
.fl-node-5c052f8ad1a22 > .fl-module-content {
margin-top:0px;
margin-bottom:0px;
}  #no-link-posts .uabb-post-thumbnail a,
#no-link-posts .uabb-post-title a,
#no-link-posts a {
pointer-events: none;
cursor: default;
}      .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-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 {
}
.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
} .uabb-js-breakpoint {
content:"default";
display:none;
}
@media screen and (max-width: 1122px) {
.uabb-js-breakpoint {
content:"1122";
}
}
@media screen and (max-width: 768px) {
.uabb-js-breakpoint {
content:"768";
}
}.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; }
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; }
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; }
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}.divider {
border-bottom: solid 1px #ccc;
clear: both;
display: block;
margin-bottom: 5px;
padding-top: 5px;
width: 100%;
}
.bootstrap .alert {
padding: 8px 6px !important;
height: 38px !important;
border: 1px solid transparent;
border-radius: 0 !important;
}
.sweet-overlay {
z-index: 99998 !important;
}
.gform_button, .inhp-button {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
display: inline-block;
font-size: 16px;
font-weight: normal;
line-height: 18px;
padding: 12px 24px !important;
text-decoration: none;
text-shadow: none;
color: #ffffff !important;
background: #56AA1C !important;
font-family: "Montserrat",sans-serif !important;
font-weight: 300 !important;
font-size: 16px !important;
line-height: 1.2 !important;
text-transform: none;
border-style: solid;
border-width: 1px;
border-color: #4a9219;
border-radius: 5px;
text-transform: uppercase;
text-decoration: none !important;
background-color: #1795c7 !important;
border-color: #1380ab;
}
.gform_button:hover, .gform_button.active, .inhp-button:hover, .inhp-button.active {
background: #eb6e1f !important;
border: 1px solid #df6213;
color: #ffffff !important;
}
.clickable-info-box {
cursor: pointer;
}
.bootstrap h3 {
font-family: inherit;
font-weight: 200 !important;
line-height: 1.4 !important;
color: inherit;
}
.inhp-blue-button {
background-color: #1795c7 !important;
border-color: #1380ab;
}
.inhp-button-text {
}
.inhp_addons_class_listings_container {
font-size: 16px;
}
.inhp_addons_divider {
width: 100%;
border-top: solid 1px #abaaaa;
height: 15px;
margin-top: 5px;
}
.inhp_addons_class_listings_container h5 {
font-size: 1.000em;
color: #d14414;
font-weight: 500;
}
.inhp_addons_class_listings_container h4 {
color: #004052;
font-weight: 500;
}
.inhp_addons_vmiddle_row {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
.inhp_addons_align_btn_center {
margin: 0 auto;
text-align: center;
}
.inhp_addons_column_header {
font-weight: bold;
}
.centered {
text-align: center;
}
.inhp_addons_form_container h3 {
margin-top: 0px;
}
#clickdimensions {
display: none;
}
@media only screen and (max-width: 600px) {
.inhp_addons_vmiddle_row {
display: block;
}
.inhp_addons_vmiddle_row .col-md-2 {
text-align: center !important;
padding-bottom: 10px;
}
.inhp_addons_vmiddle_row .col-md-4 {
padding-bottom: 10px;
}
}.fl-node-5be70b3f0e6ac > .fl-row-content-wrap {
background-color: #003b5c;
}
.fl-node-5be70b3f0e6ac .fl-row-content {
max-width: 1101px;
}
.fl-node-5be70b3f0e6ac > .fl-row-content-wrap {
padding-top:40px;
padding-bottom:30px;
}
@media ( max-width: 1122px ) {
.fl-node-5be70b3f0e6ac.fl-row > .fl-row-content-wrap {
padding-top:20px;
padding-bottom:20px;
}
}
.fl-node-5be706272b3a2 {
color: #ffffff;
}
.fl-builder-content .fl-node-5be706272b3a2 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
color: inherit;
}
.fl-builder-content .fl-node-5be706272b3a2 a {
color: #ffffff;
}
.fl-builder-content .fl-node-5be706272b3a2 a:hover {
color: #ffffff;
}
.fl-builder-content .fl-node-5be706272b3a2 h1,
.fl-builder-content .fl-node-5be706272b3a2 h2,
.fl-builder-content .fl-node-5be706272b3a2 h3,
.fl-builder-content .fl-node-5be706272b3a2 h4,
.fl-builder-content .fl-node-5be706272b3a2 h5,
.fl-builder-content .fl-node-5be706272b3a2 h6,
.fl-builder-content .fl-node-5be706272b3a2 h1 a,
.fl-builder-content .fl-node-5be706272b3a2 h2 a,
.fl-builder-content .fl-node-5be706272b3a2 h3 a,
.fl-builder-content .fl-node-5be706272b3a2 h4 a,
.fl-builder-content .fl-node-5be706272b3a2 h5 a,
.fl-builder-content .fl-node-5be706272b3a2 h6 a {
color: #ffffff;
}
.fl-node-5be706272b3a2 > .fl-row-content-wrap {
background-color: rgba(0,59,92,0.9);
border-top-width: 1px;
border-bottom-width: 1px;
}
.fl-node-5be706272b3a2 .fl-row-content {
max-width: 1101px;
}
.fl-node-5be706272b3a2 > .fl-row-content-wrap {
padding-top:10px;
padding-bottom:10px;
}
@media ( max-width: 768px ) {
.fl-node-5be706272b3a2.fl-row > .fl-row-content-wrap {
padding-top:10px;
padding-right:20px;
padding-bottom:10px;
padding-left:20px;
}
}
.fl-node-5c0ac8a70e205 {
width: 16.65%;
}
.fl-node-5be70b3f117db {
width: 18.28%;
}
.fl-node-5be70b3f117dd {
width: 18.47%;
}
.fl-node-5be70b3f117de {
width: 24.92%;
}
.fl-node-614b941240382 {
width: 13.68%;
}
.fl-node-614b923f9448d {
width: 8%;
}
.fl-node-5be73ca6d4837 {
width: 54%;
}
.fl-node-5be73ca6d4839 {
width: 45%;
}
img.mfp-img {
padding-bottom: 40px !important;
}
@media (max-width: 768px) { .fl-photo-content {
width: 100%;
} }.fl-node-5be70b6028e81 .fl-photo {
text-align: left;
}
.fl-node-5be70b6028e81 > .fl-module-content {
margin-top:0px;
margin-right:100px;
}
@media (max-width: 768px) { .fl-node-5be70b6028e81 > .fl-module-content { margin-right:20px; } }.fl-menu ul,
.fl-menu li{
list-style: none;
margin: 0;
padding: 0;
}
.fl-menu .menu:before,
.fl-menu .menu:after{
content: '';
display: table;
clear: both;
} .fl-menu-horizontal {
display: inline-flex;
flex-wrap: wrap;
align-items: center;
}
.fl-menu li{
position: relative;
}
.fl-menu a{
display: block;
padding: 10px;
text-decoration: none;
}
.fl-menu a:hover{
text-decoration: none;
}
.fl-menu .sub-menu{
min-width: 220px;
} .fl-module[data-node] .fl-menu .fl-menu-expanded .sub-menu {
background-color: transparent;
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
} .fl-menu .fl-has-submenu:focus,
.fl-menu .fl-has-submenu .sub-menu:focus,
.fl-menu .fl-has-submenu-container:focus {
outline: 0;
}
.fl-menu .fl-has-submenu-container{ position: relative; } .fl-menu .fl-menu-accordion .fl-has-submenu > .sub-menu{
display: none;
}
.fl-menu .fl-menu-accordion .fl-has-submenu.fl-active .hide-heading > .sub-menu {
box-shadow: none;
display: block !important;
} .fl-menu .fl-menu-toggle{
position: absolute;
top: 50%;
right: 0;
cursor: pointer;
}
.fl-menu .fl-toggle-arrows .fl-menu-toggle:before,
.fl-menu .fl-toggle-none .fl-menu-toggle:before{
border-color: #333;
}
.fl-menu .fl-menu-expanded .fl-menu-toggle{
display: none;
} .fl-menu .fl-menu-mobile-toggle {
position: relative;
padding: 8px;
background-color: transparent;
border: none;
color: #333;
border-radius: 0;
}
.fl-menu .fl-menu-mobile-toggle.text{
width: 100%;
text-align: center;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .fl-menu-mobile-toggle-label,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .fl-menu-mobile-toggle-label{
display: inline-block;
margin-left: 10px;
vertical-align: middle;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .svg-container,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .svg-container{
display: inline-block;
position: relative;
width: 1.4em;
height: 1.4em;
vertical-align: middle;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .hamburger-menu{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu rect,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .hamburger-menu rect{
fill: currentColor;
} li.mega-menu .hide-heading > a,
li.mega-menu .hide-heading > .fl-has-submenu-container,
li.mega-menu-disabled .hide-heading > a,
li.mega-menu-disabled .hide-heading > .fl-has-submenu-container {
display: none;
} ul.fl-menu-horizontal li.mega-menu {
position: static;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu {
top: inherit !important;
left: 0 !important;
right: 0 !important;
width: 100%;
}
ul.fl-menu-horizontal li.mega-menu.fl-has-submenu:hover > ul.sub-menu,
ul.fl-menu-horizontal li.mega-menu.fl-has-submenu.focus > ul.sub-menu {
display: flex !important;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu li {
border-color: transparent;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li {
width: 100%;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a {
font-weight: bold;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a:hover {
background: transparent;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu .fl-menu-toggle {
display: none;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu ul.sub-menu {
background: transparent;
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
display: block;
min-width: 0;
opacity: 1;
padding: 0;
position: static;
visibility: visible;
} .fl-menu-mobile-clone {
clear: both;
}
.fl-menu-mobile-clone .fl-menu .menu {
float: none !important;
} .fl-menu-mobile-close {
display: none;
}
.fl-menu-mobile-close,
.fl-menu-mobile-close:hover,
.fl-menu-mobile-close:focus {
background: none;
border: 0 none;
color: inherit;
font-size: 18px;
padding: 10px 6px 10px 14px;
} .fl-builder-ie-11 .fl-module-menu .fl-menu-horizontal .fl-has-submenu:hover > .sub-menu {
z-index: 60;
}
.fl-node-5be7326c6a158 .fl-menu .menu {
}
.fl-node-5be7326c6a158 .menu a{
padding-left: 0;
padding-right: 0;
padding-top: 8px;
padding-bottom: 8px;
}
.fl-builder-content .fl-node-5be7326c6a158 .menu > li > a,
.fl-builder-content .fl-node-5be7326c6a158 .menu > li > .fl-has-submenu-container > a,
.fl-builder-content .fl-node-5be7326c6a158 .sub-menu > li > a,
.fl-builder-content .fl-node-5be7326c6a158 .sub-menu > li > .fl-has-submenu-container > a{
color: #ffffff;
}
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-arrows .fl-menu-toggle:before,
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-none .fl-menu-toggle:before {
border-color: #ffffff;
}
.fl-node-5be7326c6a158 .menu > li > a:hover,
.fl-node-5be7326c6a158 .menu > li > a:focus,
.fl-node-5be7326c6a158 .menu > li > .fl-has-submenu-container:hover > a,
.fl-node-5be7326c6a158 .menu > li > .fl-has-submenu-container.focus > a,
.fl-node-5be7326c6a158 .menu > li.current-menu-item > a,
.fl-node-5be7326c6a158 .menu > li.current-menu-item > .fl-has-submenu-container > a,
.fl-node-5be7326c6a158 .sub-menu > li > a:hover,
.fl-node-5be7326c6a158 .sub-menu > li > a:focus,
.fl-node-5be7326c6a158 .sub-menu > li > .fl-has-submenu-container:hover > a,
.fl-node-5be7326c6a158 .sub-menu > li > .fl-has-submenu-container.focus > a,
.fl-node-5be7326c6a158 .sub-menu > li.current-menu-item > a,
.fl-node-5be7326c6a158 .sub-menu > li.current-menu-item > .fl-has-submenu-container > a{
color: #82d2e5;}
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-arrows .fl-has-submenu-container:hover > .fl-menu-toggle:before,
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-arrows .fl-has-submenu-container.focus > .fl-menu-toggle:before,
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-arrows li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before,
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-none .fl-has-submenu-container:hover > .fl-menu-toggle:before,
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-none .fl-has-submenu-container.focus > .fl-menu-toggle:before,
.fl-node-5be7326c6a158 .fl-menu .fl-toggle-none li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before{
border-color: #82d2e5;
}
.fl-node-5be7326c6a158 .menu .fl-has-submenu .sub-menu{
display: none;
}
.fl-node-5be7326c6a158 .fl-menu .sub-menu {
background-color: #ffffff;-webkit-box-shadow: 0 1px 20px rgba(0,0,0,0.1);-ms-box-shadow: 0 1px 20px rgba(0,0,0,0.1);box-shadow: 0 1px 20px rgba(0,0,0,0.1);}
.fl-node-5be7326c6a158 .fl-menu-vertical.fl-toggle-arrows .fl-has-submenu-container a{
padding-right: 14px;
}
.fl-node-5be7326c6a158 .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be7326c6a158 .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
width: 10px;
height: 10px;
margin: -5px 0 0;
}
.fl-node-5be7326c6a158 .fl-menu-horizontal.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be7326c6a158 .fl-menu-horizontal.fl-toggle-none .fl-menu-toggle,
.fl-node-5be7326c6a158 .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be7326c6a158 .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
width: 14px;
height: 10px;
margin: -5px 0 0;
}
.fl-node-5be7326c6a158 .fl-menu li{
border-top: 1px solid transparent;
}
.fl-node-5be7326c6a158 .fl-menu li:first-child{
border-top: none;
}
@media ( max-width: 768px ) {
.fl-node-5be7326c6a158 .fl-menu .sub-menu {
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
}
.fl-node-5be7326c6a158 .mega-menu.fl-active .hide-heading > .sub-menu,
.fl-node-5be7326c6a158 .mega-menu-disabled.fl-active .hide-heading > .sub-menu {
display: block !important;
}
.fl-node-5be7326c6a158 .fl-menu-logo,
.fl-node-5be7326c6a158 .fl-menu-search-item {
display: none;
}
} 
@media ( min-width: 769px ) {
.fl-node-5be7326c6a158 .menu .fl-has-submenu .sub-menu{
position: absolute;
top: 0;
left: 100%;
z-index: 10;
visibility: hidden;
opacity: 0;
}
.fl-node-5be7326c6a158 .fl-menu .fl-has-submenu:hover > .sub-menu,
.fl-node-5be7326c6a158 .fl-menu .fl-has-submenu.focus > .sub-menu{
display: block;
visibility: visible;
opacity: 1;
}
.fl-node-5be7326c6a158 .menu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
left: inherit;
right: 0;
}
.fl-node-5be7326c6a158 .menu .fl-has-submenu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
top: 0;
left: inherit;
right: 100%;
}
.fl-node-5be7326c6a158 .fl-menu .fl-has-submenu.fl-active > .fl-has-submenu-container .fl-menu-toggle{
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.fl-node-5be7326c6a158 .fl-menu .fl-menu-toggle{
display: none;
}
.fl-node-5be7326c6a158 ul.sub-menu {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.fl-node-5be7326c6a158 ul.sub-menu a {
}
}
.fl-node-5be7326c6a158 ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a:hover {
color: #ffffff;
}
.fl-node-5be7326c6a158 .fl-menu .menu, .fl-node-5be7326c6a158 .fl-menu .menu > li {
font-size: 14px;
text-transform: none;
}
.fl-node-5be7326c6a158 .fl-menu .menu .sub-menu > li {
font-size: 16px;
line-height: 1;
}
@media(max-width: 768px) {
.fl-node-5be7326c6a158 .menu li.fl-has-submenu ul.sub-menu {
padding-left: 15px;
}
.fl-node-5be7326c6a158 .fl-menu .sub-menu {
background-color: transparent;
}
}
.fl-node-5be7326c6a158 > .fl-module-content {
margin-top:0px;
margin-bottom:0px;
}
.fl-node-5be73293c96fc .fl-menu .menu {
}
.fl-node-5be73293c96fc .menu a{
padding-left: 0;
padding-right: 0;
padding-top: 8px;
padding-bottom: 8px;
}
.fl-builder-content .fl-node-5be73293c96fc .menu > li > a,
.fl-builder-content .fl-node-5be73293c96fc .menu > li > .fl-has-submenu-container > a,
.fl-builder-content .fl-node-5be73293c96fc .sub-menu > li > a,
.fl-builder-content .fl-node-5be73293c96fc .sub-menu > li > .fl-has-submenu-container > a{
color: #ffffff;
}
.fl-node-5be73293c96fc .fl-menu .fl-toggle-arrows .fl-menu-toggle:before,
.fl-node-5be73293c96fc .fl-menu .fl-toggle-none .fl-menu-toggle:before {
border-color: #ffffff;
}
.fl-node-5be73293c96fc .menu > li > a:hover,
.fl-node-5be73293c96fc .menu > li > a:focus,
.fl-node-5be73293c96fc .menu > li > .fl-has-submenu-container:hover > a,
.fl-node-5be73293c96fc .menu > li > .fl-has-submenu-container.focus > a,
.fl-node-5be73293c96fc .menu > li.current-menu-item > a,
.fl-node-5be73293c96fc .menu > li.current-menu-item > .fl-has-submenu-container > a,
.fl-node-5be73293c96fc .sub-menu > li > a:hover,
.fl-node-5be73293c96fc .sub-menu > li > a:focus,
.fl-node-5be73293c96fc .sub-menu > li > .fl-has-submenu-container:hover > a,
.fl-node-5be73293c96fc .sub-menu > li > .fl-has-submenu-container.focus > a,
.fl-node-5be73293c96fc .sub-menu > li.current-menu-item > a,
.fl-node-5be73293c96fc .sub-menu > li.current-menu-item > .fl-has-submenu-container > a{
color: #82d2e5;}
.fl-node-5be73293c96fc .fl-menu .fl-toggle-arrows .fl-has-submenu-container:hover > .fl-menu-toggle:before,
.fl-node-5be73293c96fc .fl-menu .fl-toggle-arrows .fl-has-submenu-container.focus > .fl-menu-toggle:before,
.fl-node-5be73293c96fc .fl-menu .fl-toggle-arrows li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before,
.fl-node-5be73293c96fc .fl-menu .fl-toggle-none .fl-has-submenu-container:hover > .fl-menu-toggle:before,
.fl-node-5be73293c96fc .fl-menu .fl-toggle-none .fl-has-submenu-container.focus > .fl-menu-toggle:before,
.fl-node-5be73293c96fc .fl-menu .fl-toggle-none li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before{
border-color: #82d2e5;
}
.fl-node-5be73293c96fc .menu .fl-has-submenu .sub-menu{
display: none;
}
.fl-node-5be73293c96fc .fl-menu .sub-menu {
background-color: #ffffff;-webkit-box-shadow: 0 1px 20px rgba(0,0,0,0.1);-ms-box-shadow: 0 1px 20px rgba(0,0,0,0.1);box-shadow: 0 1px 20px rgba(0,0,0,0.1);}
.fl-node-5be73293c96fc .fl-menu-vertical.fl-toggle-arrows .fl-has-submenu-container a{
padding-right: 14px;
}
.fl-node-5be73293c96fc .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be73293c96fc .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
width: 10px;
height: 10px;
margin: -5px 0 0;
}
.fl-node-5be73293c96fc .fl-menu-horizontal.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be73293c96fc .fl-menu-horizontal.fl-toggle-none .fl-menu-toggle,
.fl-node-5be73293c96fc .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be73293c96fc .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
width: 14px;
height: 10px;
margin: -5px 0 0;
}
.fl-node-5be73293c96fc .fl-menu li{
border-top: 1px solid transparent;
}
.fl-node-5be73293c96fc .fl-menu li:first-child{
border-top: none;
}
@media ( max-width: 768px ) {
.fl-node-5be73293c96fc .fl-menu .sub-menu {
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
}
.fl-node-5be73293c96fc .mega-menu.fl-active .hide-heading > .sub-menu,
.fl-node-5be73293c96fc .mega-menu-disabled.fl-active .hide-heading > .sub-menu {
display: block !important;
}
.fl-node-5be73293c96fc .fl-menu-logo,
.fl-node-5be73293c96fc .fl-menu-search-item {
display: none;
}
} 
@media ( min-width: 769px ) {
.fl-node-5be73293c96fc .menu .fl-has-submenu .sub-menu{
position: absolute;
top: 0;
left: 100%;
z-index: 10;
visibility: hidden;
opacity: 0;
}
.fl-node-5be73293c96fc .fl-menu .fl-has-submenu:hover > .sub-menu,
.fl-node-5be73293c96fc .fl-menu .fl-has-submenu.focus > .sub-menu{
display: block;
visibility: visible;
opacity: 1;
}
.fl-node-5be73293c96fc .menu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
left: inherit;
right: 0;
}
.fl-node-5be73293c96fc .menu .fl-has-submenu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
top: 0;
left: inherit;
right: 100%;
}
.fl-node-5be73293c96fc .fl-menu .fl-has-submenu.fl-active > .fl-has-submenu-container .fl-menu-toggle{
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.fl-node-5be73293c96fc .fl-menu .fl-menu-toggle{
display: none;
}
.fl-node-5be73293c96fc ul.sub-menu {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.fl-node-5be73293c96fc ul.sub-menu a {
}
}
.fl-node-5be73293c96fc ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a:hover {
color: #ffffff;
}
.fl-node-5be73293c96fc .fl-menu .menu, .fl-node-5be73293c96fc .fl-menu .menu > li {
font-size: 14px;
text-transform: none;
}
.fl-node-5be73293c96fc .fl-menu .menu .sub-menu > li {
font-size: 16px;
line-height: 1;
}
@media(max-width: 768px) {
.fl-node-5be73293c96fc .menu li.fl-has-submenu ul.sub-menu {
padding-left: 15px;
}
.fl-node-5be73293c96fc .fl-menu .sub-menu {
background-color: transparent;
}
}
.fl-node-5be73293c96fc > .fl-module-content {
margin-top:0px;
margin-bottom:0px;
}
.fl-node-5be7329d50f60 .fl-menu .menu {
}
.fl-node-5be7329d50f60 .menu a{
padding-left: 0;
padding-right: 0;
padding-top: 8px;
padding-bottom: 8px;
}
.fl-builder-content .fl-node-5be7329d50f60 .menu > li > a,
.fl-builder-content .fl-node-5be7329d50f60 .menu > li > .fl-has-submenu-container > a,
.fl-builder-content .fl-node-5be7329d50f60 .sub-menu > li > a,
.fl-builder-content .fl-node-5be7329d50f60 .sub-menu > li > .fl-has-submenu-container > a{
color: #ffffff;
}
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-arrows .fl-menu-toggle:before,
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-none .fl-menu-toggle:before {
border-color: #ffffff;
}
.fl-node-5be7329d50f60 .menu > li > a:hover,
.fl-node-5be7329d50f60 .menu > li > a:focus,
.fl-node-5be7329d50f60 .menu > li > .fl-has-submenu-container:hover > a,
.fl-node-5be7329d50f60 .menu > li > .fl-has-submenu-container.focus > a,
.fl-node-5be7329d50f60 .menu > li.current-menu-item > a,
.fl-node-5be7329d50f60 .menu > li.current-menu-item > .fl-has-submenu-container > a,
.fl-node-5be7329d50f60 .sub-menu > li > a:hover,
.fl-node-5be7329d50f60 .sub-menu > li > a:focus,
.fl-node-5be7329d50f60 .sub-menu > li > .fl-has-submenu-container:hover > a,
.fl-node-5be7329d50f60 .sub-menu > li > .fl-has-submenu-container.focus > a,
.fl-node-5be7329d50f60 .sub-menu > li.current-menu-item > a,
.fl-node-5be7329d50f60 .sub-menu > li.current-menu-item > .fl-has-submenu-container > a{
color: #82d2e5;}
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-arrows .fl-has-submenu-container:hover > .fl-menu-toggle:before,
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-arrows .fl-has-submenu-container.focus > .fl-menu-toggle:before,
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-arrows li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before,
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-none .fl-has-submenu-container:hover > .fl-menu-toggle:before,
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-none .fl-has-submenu-container.focus > .fl-menu-toggle:before,
.fl-node-5be7329d50f60 .fl-menu .fl-toggle-none li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before{
border-color: #82d2e5;
}
.fl-node-5be7329d50f60 .menu .fl-has-submenu .sub-menu{
display: none;
}
.fl-node-5be7329d50f60 .fl-menu .sub-menu {
background-color: #ffffff;-webkit-box-shadow: 0 1px 20px rgba(0,0,0,0.1);-ms-box-shadow: 0 1px 20px rgba(0,0,0,0.1);box-shadow: 0 1px 20px rgba(0,0,0,0.1);}
.fl-node-5be7329d50f60 .fl-menu-vertical.fl-toggle-arrows .fl-has-submenu-container a{
padding-right: 14px;
}
.fl-node-5be7329d50f60 .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be7329d50f60 .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
width: 10px;
height: 10px;
margin: -5px 0 0;
}
.fl-node-5be7329d50f60 .fl-menu-horizontal.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be7329d50f60 .fl-menu-horizontal.fl-toggle-none .fl-menu-toggle,
.fl-node-5be7329d50f60 .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
.fl-node-5be7329d50f60 .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
width: 14px;
height: 10px;
margin: -5px 0 0;
}
.fl-node-5be7329d50f60 .fl-menu li{
border-top: 1px solid transparent;
}
.fl-node-5be7329d50f60 .fl-menu li:first-child{
border-top: none;
}
@media ( max-width: 768px ) {
.fl-node-5be7329d50f60 .fl-menu .sub-menu {
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
}
.fl-node-5be7329d50f60 .mega-menu.fl-active .hide-heading > .sub-menu,
.fl-node-5be7329d50f60 .mega-menu-disabled.fl-active .hide-heading > .sub-menu {
display: block !important;
}
.fl-node-5be7329d50f60 .fl-menu-logo,
.fl-node-5be7329d50f60 .fl-menu-search-item {
display: none;
}
} 
@media ( min-width: 769px ) {
.fl-node-5be7329d50f60 .menu .fl-has-submenu .sub-menu{
position: absolute;
top: 0;
left: 100%;
z-index: 10;
visibility: hidden;
opacity: 0;
}
.fl-node-5be7329d50f60 .fl-menu .fl-has-submenu:hover > .sub-menu,
.fl-node-5be7329d50f60 .fl-menu .fl-has-submenu.focus > .sub-menu{
display: block;
visibility: visible;
opacity: 1;
}
.fl-node-5be7329d50f60 .menu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
left: inherit;
right: 0;
}
.fl-node-5be7329d50f60 .menu .fl-has-submenu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
top: 0;
left: inherit;
right: 100%;
}
.fl-node-5be7329d50f60 .fl-menu .fl-has-submenu.fl-active > .fl-has-submenu-container .fl-menu-toggle{
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.fl-node-5be7329d50f60 .fl-menu .fl-menu-toggle{
display: none;
}
.fl-node-5be7329d50f60 ul.sub-menu {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.fl-node-5be7329d50f60 ul.sub-menu a {
}
}
.fl-node-5be7329d50f60 ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a:hover {
color: #ffffff;
}
.fl-node-5be7329d50f60 .fl-menu .menu, .fl-node-5be7329d50f60 .fl-menu .menu > li {
font-size: 14px;
text-transform: none;
}
.fl-node-5be7329d50f60 .fl-menu .menu .sub-menu > li {
font-size: 16px;
line-height: 1;
}
@media(max-width: 768px) {
.fl-node-5be7329d50f60 .menu li.fl-has-submenu ul.sub-menu {
padding-left: 15px;
}
.fl-node-5be7329d50f60 .fl-menu .sub-menu {
background-color: transparent;
}
}
.fl-node-5be7329d50f60 > .fl-module-content {
margin-top:0px;
margin-bottom:0px;
}
.fl-node-614b917864c89 .fl-photo {
text-align: left;
}
.fl-node-614b917864c89 .fl-photo-img, .fl-node-614b917864c89 .fl-photo-content {
width: 110px;
}
.fl-node-614b917864c89 > .fl-module-content {
margin-top:0px;
margin-right:100px;
}
@media (max-width: 768px) { .fl-node-614b917864c89 > .fl-module-content { margin-right:20px; } }.fl-node-5be73cb1e0d5f .fl-photo {
text-align: left;
}
.fl-node-5be73cb1e0d5f > .fl-module-content {
margin-top:0px;
margin-right:0px;
margin-bottom:0px;
margin-left:0px;
}
@media ( max-width: 1122px ) {
.fl-node-5be73cb1e0d5f.fl-module > .fl-module-content {
margin-right:0px;
margin-left:0px;
}
}
@media ( max-width: 768px ) {
.fl-node-5be73cb1e0d5f.fl-module > .fl-module-content {
margin-top:10px;
margin-right:20px;
margin-bottom:10px;
margin-left:20px;
}
}
.fl-module-heading .fl-heading {
padding: 0 !important;
margin: 0 !important;
}.fl-node-5be73da3e97e2.fl-module-heading .fl-heading {
font-size: 12px;
text-align: left;
}
@media ( max-width: 1122px ) {
.fl-node-5be73da3e97e2.fl-module > .fl-module-content {
margin-right:0px;
margin-left:0px;
}
}
.fl-builder-content .fl-rich-text strong {
font-weight: bold;
}
.fl-node-5be86a4eb8b78 > .fl-module-content {
margin-top:20px;
margin-right:0px;
margin-bottom:10px;
margin-left:0px;
}
@media ( max-width: 768px ) {
.fl-node-5be86a4eb8b78.fl-module > .fl-module-content {
margin-top:0px;
margin-bottom: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-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 {
}
.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
} .uabb-js-breakpoint {
content:"default";
display:none;
}
@media screen and (max-width: 1122px) {
.uabb-js-breakpoint {
content:"1122";
}
}
@media screen and (max-width: 768px) {
.uabb-js-breakpoint {
content:"768";
}
}
.fl-node-5be7453a18cef > .fl-row-content-wrap {
background-color: #003b5c;
}
.fl-node-5be7453a18cef .fl-row-content {
max-width: 1115px;
}
.fl-node-5be7453a18cef > .fl-row-content-wrap {
padding-top:10px;
padding-bottom:10px;
}
.fl-node-5be85be01a5d6 > .fl-row-content-wrap {
background-color: #82d2e5;
}
.fl-node-5be85be01a5d6 > .fl-row-content-wrap {
padding-top:0px;
padding-bottom:0px;
padding-left:20px;
}
.fl-node-5be7453a20b3d {
width: 34.01%;
}
.fl-node-5be7453a20b41 {
width: 65.99%;
}
.fl-node-5bfec42ddb53a {
width: 100%;
}
.fl-node-5be85be01c72e {
width: 100%;
}
.fl-node-5be7454d5a89e .fl-photo {
text-align: left;
}
.fl-node-5be7454d5a89e > .fl-module-content {
margin-top:30px;
margin-right:30px;
margin-bottom:15px;
margin-left:30px;
}
@media (max-width: 768px) { .fl-node-5be7454d5a89e > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }.fl-row .fl-col .fl-node-5be7457fad446 h3.fl-heading a,
.fl-row .fl-col .fl-node-5be7457fad446 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5be7457fad446 h3.fl-heading .fl-heading-text *,
.fl-node-5be7457fad446 h3.fl-heading .fl-heading-text {
color: #ffffff;
}
.fl-node-5be7457fad446.fl-module-heading .fl-heading {
font-size: 14px;
text-align: right;
}
.fl-node-5be7457fad446 > .fl-module-content {
margin-bottom:0px;
}
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:hover,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:visited {
background: #0094c9;
}
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:hover {
background-color: #82d2e5;
}
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:visited,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button *,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:visited * {
color: #ffffff;
}
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:hover,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:hover * {
color: #ffffff;
}
.fl-node-5cd594a62cab8 .fl-button-wrap {
text-align: right;
}
.fl-builder-content .fl-node-5cd594a62cab8 .fl-button-wrap a.fl-button {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
}
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button, .fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:visited {
border: 1px solid #0088bd;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:hover, .fl-builder-content .fl-node-5cd594a62cab8 a.fl-button:focus {
border: 1px solid #76c6d9;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
@media(max-width: 768px) {
.fl-node-5cd594a62cab8 .fl-button-wrap {
text-align: center;
}
}
.fl-node-5cd594a62cab8 > .fl-module-content {
margin-top:10px;
margin-right:10px;
margin-bottom:5px;
margin-left:10px;
}
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:hover,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:visited {
background: #eaaf0f;
}
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:hover {
background-color: #82d2e5;
}
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:visited,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button *,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:visited * {
color: #ffffff;
}
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:hover,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:hover * {
color: #ffffff;
}
.fl-node-5bfec42ddb5fc .fl-button-wrap {
text-align: right;
}
.fl-builder-content .fl-node-5bfec42ddb5fc .fl-button-wrap a.fl-button {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
}
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button, .fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:visited {
border: 1px solid #dea303;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:hover, .fl-builder-content .fl-node-5bfec42ddb5fc a.fl-button:focus {
border: 1px solid #76c6d9;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
@media(max-width: 768px) {
.fl-node-5bfec42ddb5fc .fl-button-wrap {
text-align: center;
}
}
.fl-node-5bfec42ddb5fc > .fl-module-content {
margin-top:10px;
margin-right:10px;
margin-bottom:5px;
margin-left:10px;
}
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:hover,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:visited {
background: #eb6e1f;
}
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:hover {
background-color: #82d2e5;
}
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:visited,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button *,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:visited * {
color: #ffffff;
}
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:hover,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:hover * {
color: #ffffff;
}
.fl-node-5be745fea6e5e .fl-button-wrap {
text-align: right;
}
.fl-builder-content .fl-node-5be745fea6e5e .fl-button-wrap a.fl-button {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
}
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button, .fl-builder-content .fl-node-5be745fea6e5e a.fl-button:visited {
border: 1px solid #df6213;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-5be745fea6e5e a.fl-button:hover, .fl-builder-content .fl-node-5be745fea6e5e a.fl-button:focus {
border: 1px solid #76c6d9;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
@media(max-width: 768px) {
.fl-node-5be745fea6e5e .fl-button-wrap {
text-align: center;
}
}
.fl-node-5be745fea6e5e > .fl-module-content {
margin-top:10px;
margin-right:10px;
margin-bottom:5px;
}
.fl-node-5bf8e1ee197b7 > .fl-module-content {
margin-top:5px;
margin-right:15px;
margin-bottom:0px;
margin-left:0px;
} .uabb-creative-menu ul,
.uabb-creative-menu li {
list-style: none !important;
margin: 0;
padding: 0;
}
.uabb-creative-menu .menu:before,
.uabb-creative-menu .menu:after {
content: '';
display: table;
clear: both;
} .uabb-creative-menu .menu {
position: relative;
padding-left: 0;
}
.uabb-creative-menu li {
position: relative;
}
.uabb-creative-menu a {
display: block;
line-height: 1;
text-decoration: none;
}
.uabb-creative-menu .menu a {
box-shadow: none;
}
.uabb-creative-menu a:hover {
text-decoration: none;
}
.uabb-creative-menu .sub-menu {
min-width: 220px;
margin: 0;
}
.uabb-creative-menu-horizontal {
font-size: 0;
}
.uabb-creative-menu-horizontal li,
.uabb-creative-menu-horizontal > li {
font-size: medium;
}
.uabb-creative-menu-horizontal > li > .uabb-has-submenu-container > a > span.menu-item-text {
display: inline-block;
} .fl-module[data-node] .uabb-creative-menu .uabb-creative-menu-expanded .sub-menu {
background-color: transparent;
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
} .uabb-creative-menu .uabb-has-submenu:focus,
.uabb-creative-menu .uabb-has-submenu .sub-menu:focus,
.uabb-creative-menu .uabb-has-submenu-container:focus {
outline: 0;
}
.uabb-creative-menu .uabb-has-submenu-container {
position: relative;
} .uabb-creative-menu .uabb-creative-menu-accordion .uabb-has-submenu > .sub-menu {
display: none;
} .uabb-creative-menu .uabb-menu-toggle {
cursor: pointer;
}
.uabb-creative-menu .uabb-toggle-arrows .uabb-menu-toggle:before,
.uabb-creative-menu .uabb-toggle-none .uabb-menu-toggle:before {
border-color: #333;
}
.uabb-creative-menu .uabb-menu-expanded .uabb-menu-toggle {
display: none;
} ul.uabb-creative-menu-horizontal li.mega-menu {
position: static;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu {
top: inherit !important;
left: 0 !important;
right: 0 !important;
width: 100%;
}
ul.uabb-creative-menu-horizontal li.mega-menu.uabb-has-submenu:hover > ul.sub-menu,
ul.uabb-creative-menu-horizontal li.mega-menu.uabb-has-submenu.focus > ul.sub-menu {
display: flex !important;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu li {
border-color: transparent;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu > li {
width: 100%;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu > li > .uabb-has-submenu-container a {
font-weight: bold;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu > li > .uabb-has-submenu-container a:hover {
background: transparent;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu .uabb-menu-toggle {
display: none;
}
ul.uabb-creative-menu-horizontal li.mega-menu > ul.sub-menu ul.sub-menu {
background: transparent;
-webkit-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
display: block;
min-width: 0;
opacity: 1;
padding: 0;
position: static;
visibility: visible;
} .uabb-creative-menu-mobile-toggle {
position: relative;
padding: 8px;
background-color: transparent;
border: none;
color: #333;
border-radius: 0;
cursor: pointer;
display: inline-block;
z-index: 5;
}
.uabb-creative-menu-mobile-toggle.text {
width: auto;
text-align: center;
}
.uabb-creative-menu-mobile-toggle.hamburger .uabb-creative-menu-mobile-toggle-label,
.uabb-creative-menu-mobile-toggle.hamburger-label .uabb-creative-menu-mobile-toggle-label {
display: inline-block;
margin-left: 10px;
vertical-align: middle;
}
.uabb-creative-menu-mobile-toggle.hamburger .uabb-svg-container,
.uabb-creative-menu-mobile-toggle.hamburger-label .uabb-svg-container {
display: inline-block;
position: relative;
width: 1.4em;
height: 1.4em;
vertical-align: middle;
}
.uabb-creative-menu-mobile-toggle.hamburger .hamburger-menu,
.uabb-creative-menu-mobile-toggle.hamburger-label .hamburger-menu {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.uabb-creative-menu-mobile-toggle.hamburger .hamburger-menu rect,
.uabb-creative-menu-mobile-toggle.hamburger-label .hamburger-menu rect {
fill: currentColor;
}
.uabb-creative-menu.off-canvas .uabb-off-canvas-menu .uabb-menu-close-btn {
width: 20px;
height: 10px;
position: absolute;
right: 20px;
top: 20px;
cursor: pointer;
display: block;
z-index: 99;
}
.uabb-creative-menu-mobile-toggle:focus{
outline: thin dotted;
} .uabb-creative-menu .uabb-menu-overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0,0,0,0.8);
z-index: 99999;
overflow-y: auto;
overflow-x: hidden;
}
.uabb-creative-menu .uabb-menu-overlay > ul.menu {
text-align: center;
position: relative;
top: 50%;
width: 40%;
height: 60%;
margin: 0 auto;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.uabb-creative-menu .uabb-overlay-fade {
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
transition: opacity 0.5s, visibility 0s 0.5s;
}
.uabb-creative-menu.menu-open .uabb-overlay-fade {
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.5s;
transition: opacity 0.5s;
}
.uabb-creative-menu .uabb-overlay-slide-down {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}
.uabb-creative-menu.menu-open .uabb-overlay-slide-down {
visibility: visible;
-webkit-transform: translateY(0%);
transform: translateY(0%);
-webkit-transition: -webkit-transform 0.4s ease-in-out;
transition: transform 0.4s ease-in-out;
}
.uabb-creative-menu .uabb-overlay-scale {
visibility: hidden;
opacity: 0;
-webkit-transform: scale(0.9);
transform: scale(0.9);
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}
.uabb-creative-menu.menu-open .uabb-overlay-scale {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s;
}
.uabb-creative-menu .uabb-overlay-door {
visibility: hidden;
width: 0;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: width 0.5s 0.3s, visibility 0s 0.8s;
transition: width 0.5s 0.3s, visibility 0s 0.8s;
}
.uabb-creative-menu.menu-open .uabb-overlay-door {
visibility: visible;
width: 100%;
-webkit-transition: width 0.5s;
transition: width 0.5s;
}
.uabb-creative-menu .uabb-overlay-door > ul.menu {
left: 0;
right: 0;
transform: translateY(-50%);
}
.uabb-creative-menu .uabb-overlay-door > ul,
.uabb-creative-menu .uabb-overlay-door .uabb-menu-close-btn {
opacity: 0;
-webkit-transition: opacity 0.3s 0.5s;
transition: opacity 0.3s 0.5s;
}
.uabb-creative-menu.menu-open .uabb-overlay-door > ul,
.uabb-creative-menu.menu-open .uabb-overlay-door .uabb-menu-close-btn {
opacity: 1;
-webkit-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.uabb-creative-menu.menu-close .uabb-overlay-door > ul,
.uabb-creative-menu.menu-close .uabb-overlay-door .uabb-menu-close-btn {
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.uabb-creative-menu .uabb-menu-overlay .uabb-toggle-arrows .uabb-has-submenu-container a > span {
padding-right: 0 !important;
}
.uabb-creative-menu .uabb-menu-overlay .uabb-menu-close-btn {
position: absolute;
display: block;
width: 55px;
height: 45px;
right: 40px;
top: 40px;
overflow: hidden;
border: none;
outline: none;
z-index: 100;
font-size: 30px;
cursor: pointer;
background-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: background-color 0.3s;
transition: background-color 0.3s;
}
.uabb-creative-menu .uabb-menu-overlay .uabb-menu-close-btn:before,
.uabb-creative-menu .uabb-menu-overlay .uabb-menu-close-btn:after {
content: '';
position: absolute;
left: 50%;
width: 2px;
height: 40px;
background-color: #ffffff;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
-webkit-transform: translateY(0) rotate(45deg);
transform: translateY(0) rotate(45deg);
}
.uabb-creative-menu .uabb-menu-overlay .uabb-menu-close-btn:after {
-webkit-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
} .uabb-creative-menu .uabb-off-canvas-menu .menu {
margin-top: 40px;
}
.uabb-creative-menu.off-canvas .uabb-clear {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99998;
background: rgba(0,0,0,0.0);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.uabb-creative-menu .uabb-off-canvas-menu.uabb-menu-left {
position: fixed;
top: 0;
left: 0;
transform: translate3d(-320px, 0px, 0px);
}
.uabb-creative-menu .uabb-off-canvas-menu.uabb-menu-right {
position: fixed;
top: 0;
right: 0;
transform: translate3d(320px, 0px, 0px);
}
.uabb-creative-menu .uabb-off-canvas-menu {
z-index: 99999;
width: 300px;
height: 100%;
background: rgb(55, 58, 71);
padding: 60px 20px;
-webkit-transition: all 0.8s;
transition: transform 0.8s ease;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
perspective: 1000;
backface-visibility: hidden;
}
.menu-open.uabb-creative-menu .uabb-off-canvas-menu.uabb-menu-left {
transform: translate3d(0px, 0px, 0px);
transition: transform 0.8s ease;
}
.menu-open.uabb-creative-menu .uabb-off-canvas-menu.uabb-menu-right {
transform: translate3d(0px, 0px, 0px);
transition: transform 0.8s ease;
}
.uabb-creative-menu.off-canvas.menu-open .uabb-clear {
visibility: visible;
opacity: 1;
}
@media ( max-width: 992px ) {
.uabb-creative-menu .uabb-menu-overlay .uabb-menu-close-btn {
right: 20px;
top: 20px;
}
} .theme-twentytwentyone .uabb-creative-menu button.sub-menu-toggle {
display: none;
}  .fl-node-5be861fba8fb2 .uabb-creative-menu .menu {
text-align: center;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu.uabb-creative-menu-horizontal > li > a span.uabb-menu-toggle,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu.uabb-creative-menu-horizontal > li > .uabb-has-submenu-container a span.uabb-menu-toggle {
padding-left: 10px;
float: right;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu.uabb-creative-menu-horizontal .uabb-menu-toggle {
padding-left: 10px;
float: right;
} .fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li {
margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.text:hover .uabb-creative-menu-mobile-toggle-label,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.hamburger-label:hover .uabb-svg-container .uabb-creative-menu-mobile-toggle-label,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.hamburger:hover .uabb-svg-container {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.text,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.hamburger-label,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.hamburger {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.text:hover,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.hamburger-label:hover,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle.hamburger:hover {
}
.fl-node-5be861fba8fb2 .menu .uabb-has-submenu .sub-menu {
display: none;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu li:first-child {
border-top: none;
}
@media only screen and ( max-width: 1122px ) {
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu {
margin-top: 20px;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-off-canvas-menu .uabb-menu-close-btn,
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-menu-overlay .uabb-menu-close-btn {
display: block;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu {
text-align: center;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li {
margin-left: 0 !important;
margin-right: 0 !important;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a span.uabb-menu-toggle,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container a span.menu-item-text > span.uabb-menu-toggle {
padding-left: 10px;
float: right;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu .uabb-menu-toggle {
padding-left: 10px;
float: right;
}
}
@media only screen and ( min-width: 1123px ) {
.fl-node-5be861fba8fb2 .menu > li {
display: inline-block;
}
.fl-node-5be861fba8fb2 .menu li {
border-left: none;
border-top: none;
}
.fl-node-5be861fba8fb2 .menu li li {
border-top: none;
border-left: none;
}
.fl-node-5be861fba8fb2 .menu .uabb-has-submenu .sub-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 16;
visibility: hidden;
opacity: 0;
text-align:left;
transition: all 300ms ease-in;
}
.fl-node-5be861fba8fb2 .uabb-has-submenu .uabb-has-submenu .sub-menu {
top:  0;
left: 100%;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-has-submenu:hover > .sub-menu,
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-has-submenu:focus > .sub-menu {
visibility: visible;
opacity: 1;
display: block;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-has-submenu:focus-within > .sub-menu {
visibility: visible;
opacity: 1;
display: block;
}
.fl-node-5be861fba8fb2 .menu .uabb-has-submenu.uabb-menu-submenu-right .sub-menu {
top: 100%;
left: inherit;
right: 0;
}
.fl-node-5be861fba8fb2 .menu .uabb-has-submenu .uabb-has-submenu.uabb-menu-submenu-right .sub-menu {
top: 0;
left: inherit;
right: 100%;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-has-submenu-container a span.menu-item-text {
color: #ffffff;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-menu-toggle {
display: none;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle {
display: none;
}
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.uabb-menu-default .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.uabb-menu-default .menu > li > .uabb-has-submenu-container > a {
padding-top:20px;padding-bottom:20px;padding-left:12px;padding-right:12px;}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .fl-module-content .uabb-creative-menu .menu > li > a span.menu-item-text,
.fl-node-5be861fba8fb2 .fl-module-content .uabb-creative-menu .menu > li > .uabb-has-submenu-container > a span.menu-item-text {
width: 100%;
color:#ffffff;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-toggle-arrows .uabb-menu-toggle:before,
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-toggle-none .uabb-menu-toggle:before {
color: #ffffff;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a:hover,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a:focus,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li:hover > .uabb-has-submenu-container > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li:focus > .uabb-has-submenu-container > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-item > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-item > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-ancestor > .uabb-has-submenu-container > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-item > .uabb-has-submenu-container > a {
background-color: #0094c9;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-item > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-item > .uabb-has-submenu-container > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-ancestor > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-ancestor > .uabb-has-submenu-container > a {
background-color: #0094c9;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a:hover span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a:focus span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li:hover > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li:focus > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-item > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-item > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.focus > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.focus > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-ancestor > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li.current-menu-ancestor > .uabb-has-submenu-container > a span.menu-item-text > i {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-item > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-item > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-item > a span.menu-item-text > i,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-item > .uabb-has-submenu-container > a span.menu-item-text > i,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-ancestor > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-ancestor > .uabb-has-submenu-container > a span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-ancestor > a span.menu-item-text > i,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.current-menu-ancestor > .uabb-has-submenu-container > a span.menu-item-text > i {
color: #ffffff;	} .fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a {
padding-top: 15px;padding-bottom: 15px;padding-left: 15px;padding-right: 15px;
background-color: #ffffff;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu:not(.off-canvas):not(.full-screen):not(.menu-item) .uabb-creative-menu .sub-menu {
min-width: 220px;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.uabb-creative-menu > a > span,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a > span {
color: #636466;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li {
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: #0094c9;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li:last-child {
border-bottom: none;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu ul.sub-menu > li.uabb-creative-menu.uabb-has-submenu li:first-child,
.fl-node-5be861fba8fb2 .uabb-creative-menu ul.sub-menu > li.uabb-creative-menu.uabb-has-submenu li li:first-child {
border-top: none;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li.uabb-active > .sub-menu > li:first-child,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu.uabb-creative-menu-expanded .sub-menu > li > .sub-menu > li:first-child {
border-top-style: solid;
border-top-width: 1px;
border-top-color: #0094c9;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu {
-webkit-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.3);
-moz-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.3);
-o-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.3);
box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.3);
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li:last-child > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li:last-child > .uabb-has-submenu-container > a {
border: 0;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu ul.sub-menu > li.menu-item.uabb-creative-menu > a:hover span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu ul.sub-menu > li.menu-item.uabb-creative-menu > a:focus span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu ul.sub-menu > li.menu-item.uabb-creative-menu > .uabb-has-submenu-container > a:hover span.menu-item-text,
.fl-node-5be861fba8fb2 .uabb-creative-menu ul.sub-menu > li.menu-item.uabb-creative-menu > .uabb-has-submenu-container > a:focus span.menu-item-text {
color: #ffffff;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > a:hover,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > a:focus,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a:hover,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a:focus {
background-color: #0094c9;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-toggle-arrows .sub-menu li .uabb-menu-toggle:before,
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-toggle-none .sub-menu li .uabb-menu-toggle:before {
color: #636466;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-toggle-arrows .sub-menu li:hover .uabb-menu-toggle:before,
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-toggle-none .sub-menu li:hover .uabb-menu-toggle:before {
color: #ffffff;
} .fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle {
color: #ffffff;	}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle-container,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle-container > .uabb-creative-menu-mobile-toggle.text {
text-align: right;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle rect {
fill:#ffffff;	}
@media only screen and ( max-width: 1122px ) {
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-menu-overlay .menu {
margin-top: 40px;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu {
text-align: center;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a span.uabb-menu-toggle,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container a span.menu-item-text > span.uabb-menu-toggle {
padding-left: 10px;
float: right;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu .uabb-menu-toggle {
padding-left: 10px;
float: right;
}
}
@media only screen and (max-width: 1122px) {
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle-container,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle-container > .uabb-creative-menu-mobile-toggle.text {
text-align: ;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.off-canvas .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.off-canvas .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.uabb-menu-default .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.uabb-menu-default .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.full-screen .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.full-screen .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a {
}
.fl-builder .fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-off-canvas-menu {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a span.uabb-menu-toggle,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container a span.menu-item-text > span.uabb-menu-toggle {
padding-left: 10px;
float: right;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu .uabb-menu-toggle {
padding-left: 10px;
float: right;
}
}
@media only screen and (max-width: 768px) {
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle-container,
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle-container > .uabb-creative-menu-mobile-toggle.text {
text-align: ;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.off-canvas .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.off-canvas .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.uabb-menu-default .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.uabb-menu-default .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu.full-screen .menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu.full-screen .menu > li > .uabb-has-submenu-container > a {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > a,
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a {
}
.fl-builder .fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-off-canvas-menu {
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu {
text-align: center;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a span.uabb-menu-toggle,
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container a span.menu-item-text > span.uabb-menu-toggle {
float: right;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu .uabb-menu-toggle {
float: right;
}
}
@media only screen and (max-width: 1122px) {
}
@media only screen and (max-width: 768px) {
}  @media only screen and ( max-width: 1122px ) {
} .fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a,.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container > a {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 16px;
letter-spacing: 0px;
text-transform: uppercase;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > a, .fl-node-5be861fba8fb2 .uabb-creative-menu .menu > li > .uabb-has-submenu-container > a {
border-style: none;
border-width: 0;
background-clip: border-box;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > a,.fl-node-5be861fba8fb2 .uabb-creative-menu .sub-menu > li > .uabb-has-submenu-container > a {
font-family: Montserrat, sans-serif;
font-weight: 300;
font-size: 14px;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-creative-menu-expanded.menu > .uabb-has-submenu > .sub-menu, .fl-node-5be861fba8fb2 .uabb-creative-menu .uabb-creative-menu-accordion.menu > .uabb-has-submenu > .sub-menu {
border-style: solid;
border-width: 0;
background-clip: border-box;
border-color: #000000;
}
.fl-node-5be861fba8fb2 .uabb-creative-menu-mobile-toggle {
font-family: Montserrat, sans-serif;
font-weight: 600;
font-size: 16px;
letter-spacing: 0px;
text-transform: uppercase;
}
.fl-node-5be861fba8fb2 > .fl-module-content {
margin-top:0px;
margin-right:0px;
margin-bottom:0px;
margin-left:0px;
}     .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
position: fixed;
width: 100%;
z-index: 100;
} .fl-theme-builder-flyout-menu-push-left .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
left: auto !important;
transition: left 0.2s !important;
}
.fl-theme-builder-flyout-menu-push-right .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
right: auto !important;
transition: right 0.2s !important;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky .fl-menu .fl-menu-mobile-opacity {
height: 100vh;
width: 100vw;
}
.fl-builder-content[data-type="header"]:not([data-overlay="1"]).fl-theme-builder-header-sticky .fl-menu-mobile-flyout {
top: 0px;
}
.fl-theme-builder-flyout-menu-active body {
margin-left: 0px !important;
margin-right: 0px !important;
}
.fl-theme-builder-has-flyout-menu, .fl-theme-builder-has-flyout-menu body {
overflow-x: hidden;
}
.fl-theme-builder-flyout-menu-push-right {
right: 0px;
transition: right 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-push-left {
left: 0px;
transition: left 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-right {
position: relative;
right: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-left {
position: relative;
left: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-builder-content[data-type="header"] .fl-menu-disable-transition {
transition: none;
} .fl-builder-content[data-shrink="1"] .fl-row-content-wrap,
.fl-builder-content[data-shrink="1"] .fl-col-content,
.fl-builder-content[data-shrink="1"] .fl-module-content,
.fl-builder-content[data-shrink="1"] img {
-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
-moz-transition: all 0.4s ease-in-out, background-position 1ms;
transition: all 0.4s ease-in-out, background-position 1ms;
}
.fl-builder-content[data-shrink="1"] img {
width: auto;
}
.fl-builder-content[data-shrink="1"] img.fl-photo-img {
width: auto;
height: auto;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-row-content-wrap {
margin-bottom: 0;
margin-top: 0;
}
.fl-theme-builder-header-shrink-row-bottom.fl-row-content-wrap {
padding-bottom: 5px;
}
.fl-theme-builder-header-shrink-row-top.fl-row-content-wrap {
padding-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-col-content {
margin-bottom: 0;
margin-top: 0;
padding-bottom: 0;
padding-top: 0;
}
.fl-theme-builder-header-shrink-module-bottom.fl-module-content {
margin-bottom: 5px;
}
.fl-theme-builder-header-shrink-module-top.fl-module-content {
margin-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {
-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
-moz-transition: all 0.4s ease-in-out, background-position 1ms;
transition: all 0.4s ease-in-out, background-position 1ms;
} .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-sticky):not(.fl-builder-content-editing) {
position: absolute;
width: 100%;
z-index: 100;
}
.fl-builder-edit body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"] {
display: none;
}
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-row-content-wrap,
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-col-content {
background: transparent;
} .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-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 {
}
.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
} .uabb-js-breakpoint {
content:"default";
display:none;
}
@media screen and (max-width: 1122px) {
.uabb-js-breakpoint {
content:"1122";
}
}
@media screen and (max-width: 768px) {
.uabb-js-breakpoint {
content:"768";
}
}