@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}@font-face {
font-family: 'Ultimate-Icons';
src:
url(//www.fram-geo.pl/wp-content/uploads/bb-plugin/icons/ultimate-icons/fonts/Ultimate-Icons.ttf?1ddi1j) format('truetype'),
url(//www.fram-geo.pl/wp-content/uploads/bb-plugin/icons/ultimate-icons/fonts/Ultimate-Icons.woff?1ddi1j) format('woff'),
url(//www.fram-geo.pl/wp-content/uploads/bb-plugin/icons/ultimate-icons/fonts/Ultimate-Icons.svg?1ddi1j#Ultimate-Icons) format('svg');
font-weight: normal;
font-style: normal;
}
.ua-icon { font-family: 'Ultimate-Icons' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ua-icon-google-plus:before {
content: "\ea82";
}
.ua-icon-facebook22:before {
content: "\ea81";
}
.ua-icon-basket:before {
content: "\e900";
}
.ua-icon-briefcase:before {
content: "\e901";
}
.ua-icon-calendar:before {
content: "\e902";
}
.ua-icon-chat:before {
content: "\e903";
}
.ua-icon-clock:before {
content: "\e904";
}
.ua-icon-desktop:before {
content: "\e905";
}
.ua-icon-dribbble:before {
content: "\e906";
}
.ua-icon-edit:before {
content: "\e907";
}
.ua-icon-envelope:before {
content: "\e908";
}
.ua-icon-facebook:before {
content: "\e909";
}
.ua-icon-gears:before {
content: "\e90a";
}
.ua-icon-global:before {
content: "\e90b";
}
.ua-icon-globe:before {
content: "\e90c";
}
.ua-icon-googleplus:before {
content: "\e90d";
}
.ua-icon-heart:before {
content: "\e90e";
}
.ua-icon-key:before {
content: "\e90f";
}
.ua-icon-laptop:before {
content: "\e910";
}
.ua-icon-linkedin:before {
content: "\e911";
}
.ua-icon-lock:before {
content: "\e912";
}
.ua-icon-magnifying-glass:before {
content: "\e913";
}
.ua-icon-map-pin:before {
content: "\e914";
}
.ua-icon-map:before {
content: "\e915";
}
.ua-icon-mobile:before {
content: "\e916";
}
.ua-icon-newspaper:before {
content: "\e917";
}
.ua-icon-paperclip:before {
content: "\e918";
}
.ua-icon-pencil:before {
content: "\e919";
}
.ua-icon-phone:before {
content: "\e91a";
}
.ua-icon-picture:before {
content: "\e91b";
}
.ua-icon-presentation:before {
content: "\e91c";
}
.ua-icon-printer:before {
content: "\e91d";
}
.ua-icon-profile-female:before {
content: "\e91e";
}
.ua-icon-profile-male:before {
content: "\e91f";
}
.ua-icon-quote:before {
content: "\e920";
}
.ua-icon-streetsign:before {
content: "\e921";
}
.ua-icon-tablet:before {
content: "\e922";
}
.ua-icon-tools-2:before {
content: "\e923";
}
.ua-icon-tools:before {
content: "\e924";
}
.ua-icon-tumblr:before {
content: "\e925";
}
.ua-icon-twitter:before {
content: "\e926";
}
.ua-icon-video:before {
content: "\e927";
}
.ua-icon-icon-3-mail-envelope-closed:before {
content: "\e928";
}
.ua-icon-icon-6-mail-envelope-closed:before {
content: "\e929";
}
.ua-icon-icon-24-key:before {
content: "\e92a";
}
.ua-icon-icon-29-information:before {
content: "\e92b";
}
.ua-icon-icon-111-search:before {
content: "\e92c";
}
.ua-icon-icon-112-search-plus:before {
content: "\e92d";
}
.ua-icon-icon-113-search-minus:before {
content: "\e92e";
}
.ua-icon-icon-114-lock:before {
content: "\e92f";
}
.ua-icon-icon-116-lock-open:before {
content: "\e930";
}
.ua-icon-icon-118-lock-rounded:before {
content: "\e931";
}
.ua-icon-icon-120-lock-rounded-open:before {
content: "\e932";
}
.ua-icon-icon-121-combination-lock:before {
content: "\e933";
}
.ua-icon-icon-122-printer:before {
content: "\e934";
}
.ua-icon-icon-123-printer:before {
content: "\e935";
}
.ua-icon-icon-124-printer-text:before {
content: "\e936";
}
.ua-icon-icon-125-printer-text:before {
content: "\e937";
}
.ua-icon-icon-134-pen:before {
content: "\e938";
}
.ua-icon-icon-135-pen-angled:before {
content: "\e939";
}
.ua-icon-icon-145-tag-cord:before {
content: "\e93a";
}
.ua-icon-icon-146-tag:before {
content: "\e93b";
}
.ua-icon-icon-3-mail-envelope-closed2:before {
content: "\e93c";
}
.ua-icon-icon-6-mail-envelope-closed2:before {
content: "\e93d";
}
.ua-icon-icon-24-key2:before {
content: "\e93e";
}
.ua-icon-icon-29-information2:before {
content: "\e93f";
}
.ua-icon-icon-111-search2:before {
content: "\e940";
}
.ua-icon-icon-112-search-plus2:before {
content: "\e941";
}
.ua-icon-icon-113-search-minus2:before {
content: "\e942";
}
.ua-icon-icon-114-lock2:before {
content: "\e943";
}
.ua-icon-icon-116-lock-open2:before {
content: "\e944";
}
.ua-icon-icon-118-lock-rounded2:before {
content: "\e945";
}
.ua-icon-icon-120-lock-rounded-open2:before {
content: "\e946";
}
.ua-icon-icon-121-combination-lock2:before {
content: "\e947";
}
.ua-icon-icon-122-printer2:before {
content: "\e948";
}
.ua-icon-icon-123-printer2:before {
content: "\e949";
}
.ua-icon-icon-124-printer-text2:before {
content: "\e94a";
}
.ua-icon-icon-125-printer-text2:before {
content: "\e94b";
}
.ua-icon-icon-134-pen2:before {
content: "\e94c";
}
.ua-icon-icon-135-pen-angled2:before {
content: "\e94d";
}
.ua-icon-icon-145-tag-cord2:before {
content: "\e94e";
}
.ua-icon-icon-146-tag2:before {
content: "\e94f";
}
.ua-icon-arrow-down:before {
content: "\e950";
}
.ua-icon-arrow-left:before {
content: "\e951";
}
.ua-icon-arrow-right:before {
content: "\e952";
}
.ua-icon-arrow-up:before {
content: "\e953";
}
.ua-icon-briefcase2:before {
content: "\e954";
}
.ua-icon-check:before {
content: "\e955";
}
.ua-icon-circle-add:before {
content: "\e956";
}
.ua-icon-circle-check:before {
content: "\e957";
}
.ua-icon-circle-cross:before {
content: "\e958";
}
.ua-icon-circle-minus:before {
content: "\e959";
}
.ua-icon-clock2:before {
content: "\e95a";
}
.ua-icon-cog:before {
content: "\e95b";
}
.ua-icon-cross:before {
content: "\e95c";
}
.ua-icon-disc:before {
content: "\e95d";
}
.ua-icon-fast-forward:before {
content: "\e95e";
}
.ua-icon-globe2:before {
content: "\e95f";
}
.ua-icon-head:before {
content: "\e960";
}
.ua-icon-heart2:before {
content: "\e961";
}
.ua-icon-help:before {
content: "\e962";
}
.ua-icon-lock2:before {
content: "\e963";
}
.ua-icon-mail:before {
content: "\e964";
}
.ua-icon-map2:before {
content: "\e965";
}
.ua-icon-minus:before {
content: "\e966";
}
.ua-icon-monitor:before {
content: "\e967";
}
.ua-icon-paper-clip:before {
content: "\e968";
}
.ua-icon-pause:before {
content: "\e969";
}
.ua-icon-play:before {
content: "\e96a";
}
.ua-icon-plus:before {
content: "\e96b";
}
.ua-icon-printer2:before {
content: "\e96c";
}
.ua-icon-record:before {
content: "\e96d";
}
.ua-icon-rewind:before {
content: "\e96e";
}
.ua-icon-search:before {
content: "\e96f";
}
.ua-icon-speech-bubble:before {
content: "\e970";
}
.ua-icon-square-add:before {
content: "\e971";
}
.ua-icon-square-check:before {
content: "\e972";
}
.ua-icon-square-cross:before {
content: "\e973";
}
.ua-icon-square-minus:before {
content: "\e974";
}
.ua-icon-unlock:before {
content: "\e975";
}
.ua-icon-zoom-in:before {
content: "\e976";
}
.ua-icon-zoom-out:before {
content: "\e977";
}
.ua-icon-alarm:before {
content: "\e978";
}
.ua-icon-arrow-down-circle:before {
content: "\e979";
}
.ua-icon-arrow-down2:before {
content: "\e97a";
}
.ua-icon-arrow-left-circle:before {
content: "\e97b";
}
.ua-icon-arrow-left2:before {
content: "\e97c";
}
.ua-icon-arrow-right-circle:before {
content: "\e97d";
}
.ua-icon-arrow-right2:before {
content: "\e97e";
}
.ua-icon-arrow-up-circle:before {
content: "\e97f";
}
.ua-icon-arrow-up2:before {
content: "\e980";
}
.ua-icon-briefcase3:before {
content: "\e981";
}
.ua-icon-bubble:before {
content: "\e982";
}
.ua-icon-calendar-full:before {
content: "\e983";
}
.ua-icon-camera-video:before {
content: "\e984";
}
.ua-icon-camera:before {
content: "\e985";
}
.ua-icon-cart:before {
content: "\e986";
}
.ua-icon-chart-bars:before {
content: "\e987";
}
.ua-icon-checkmark-circle:before {
content: "\e988";
}
.ua-icon-chevron-down-circle:before {
content: "\e989";
}
.ua-icon-chevron-down:before {
content: "\e98a";
}
.ua-icon-chevron-left-circle:before {
content: "\e98b";
}
.ua-icon-chevron-left:before {
content: "\e98c";
}
.ua-icon-chevron-right-circle:before {
content: "\e98d";
}
.ua-icon-chevron-right:before {
content: "\e98e";
}
.ua-icon-chevron-up-circle:before {
content: "\e98f";
}
.ua-icon-chevron-up:before {
content: "\e990";
}
.ua-icon-circle-minus2:before {
content: "\e991";
}
.ua-icon-clock3:before {
content: "\e992";
}
.ua-icon-cog2:before {
content: "\e993";
}
.ua-icon-cross-circle:before {
content: "\e994";
}
.ua-icon-cross2:before {
content: "\e995";
}
.ua-icon-earth:before {
content: "\e996";
}
.ua-icon-envelope2:before {
content: "\e997";
}
.ua-icon-eye:before {
content: "\e998";
}
.ua-icon-film-play:before {
content: "\e999";
}
.ua-icon-gift:before {
content: "\e99a";
}
.ua-icon-heart3:before {
content: "\e99b";
}
.ua-icon-history:before {
content: "\e99c";
}
.ua-icon-home:before {
content: "\e99d";
}
.ua-icon-keyboard:before {
content: "\e99e";
}
.ua-icon-laptop-phone:before {
content: "\e99f";
}
.ua-icon-laptop2:before {
content: "\e9a0";
}
.ua-icon-leaf:before {
content: "\e9a1";
}
.ua-icon-license:before {
content: "\e9a2";
}
.ua-icon-location:before {
content: "\e9a3";
}
.ua-icon-lock3:before {
content: "\e9a4";
}
.ua-icon-magnifier:before {
content: "\e9a5";
}
.ua-icon-map-marker:before {
content: "\e9a6";
}
.ua-icon-map3:before {
content: "\e9a7";
}
.ua-icon-menu-circle:before {
content: "\e9a8";
}
.ua-icon-menu:before {
content: "\e9a9";
}
.ua-icon-mic:before {
content: "\e9aa";
}
.ua-icon-moon:before {
content: "\e9ab";
}
.ua-icon-move:before {
content: "\e9ac";
}
.ua-icon-mustache:before {
content: "\e9ad";
}
.ua-icon-neutral:before {
content: "\e9ae";
}
.ua-icon-paperclip2:before {
content: "\e9af";
}
.ua-icon-paw:before {
content: "\e9b0";
}
.ua-icon-pencil2:before {
content: "\e9b1";
}
.ua-icon-phone-handset:before {
content: "\e9b2";
}
.ua-icon-phone2:before {
content: "\e9b3";
}
.ua-icon-picture2:before {
content: "\e9b4";
}
.ua-icon-pie-chart:before {
content: "\e9b5";
}
.ua-icon-plus-circle:before {
content: "\e9b6";
}
.ua-icon-printer3:before {
content: "\e9b7";
}
.ua-icon-question-circle:before {
content: "\e9b8";
}
.ua-icon-rocket:before {
content: "\e9b9";
}
.ua-icon-sad:before {
content: "\e9ba";
}
.ua-icon-screen:before {
content: "\e9bb";
}
.ua-icon-shirt:before {
content: "\e9bc";
}
.ua-icon-smartphone:before {
content: "\e9bd";
}
.ua-icon-smile:before {
content: "\e9be";
}
.ua-icon-star:before {
content: "\e9bf";
}
.ua-icon-store:before {
content: "\e9c0";
}
.ua-icon-sync:before {
content: "\e9c1";
}
.ua-icon-tablet2:before {
content: "\e9c2";
}
.ua-icon-tag:before {
content: "\e9c3";
}
.ua-icon-trash:before {
content: "\e9c4";
}
.ua-icon-unlink:before {
content: "\e9c5";
}
.ua-icon-user:before {
content: "\e9c6";
}
.ua-icon-users:before {
content: "\e9c7";
}
.ua-icon-px-with-circle:before {
content: "\e9c8";
}
.ua-icon-px:before {
content: "\e9c9";
}
.ua-icon-app-store:before {
content: "\e9ca";
}
.ua-icon-dribbble-with-circle:before {
content: "\e9cb";
}
.ua-icon-dribbble2:before {
content: "\e9cc";
}
.ua-icon-facebook-with-circle:before {
content: "\e9cd";
}
.ua-icon-facebook2:before {
content: "\e9ce";
}
.ua-icon-flickr-with-circle:before {
content: "\e9cf";
}
.ua-icon-flickr:before {
content: "\e9d0";
}
.ua-icon-github-with-circle:before {
content: "\e9d1";
}
.ua-icon-github:before {
content: "\e9d2";
}
.ua-icon-google-with-circle:before {
content: "\e9d3";
}
.ua-icon-google:before {
content: "\e9d4";
}
.ua-icon-instagram-with-circle:before {
content: "\e9d5";
}
.ua-icon-instagram:before {
content: "\e9d6";
}
.ua-icon-linkedin-with-circle:before {
content: "\e9d7";
}
.ua-icon-linkedin2:before {
content: "\e9d8";
}
.ua-icon-pinterest-with-circle:before {
content: "\e9d9";
}
.ua-icon-pinterest:before {
content: "\e9da";
}
.ua-icon-tripadvisor:before {
content: "\e9db";
}
.ua-icon-tumblr-with-circle:before {
content: "\e9dc";
}
.ua-icon-tumblr2:before {
content: "\e9dd";
}
.ua-icon-twitter-with-circle:before {
content: "\e9de";
}
.ua-icon-twitter2:before {
content: "\e9df";
}
.ua-icon-vimeo-with-circle:before {
content: "\e9e0";
}
.ua-icon-vimeo:before {
content: "\e9e1";
}
.ua-icon-windows-store:before {
content: "\e9e2";
}
.ua-icon-yelp:before {
content: "\e9e3";
}
.ua-icon-youtube-with-circle:before {
content: "\e9e4";
}
.ua-icon-youtube:before {
content: "\e9e5";
}
.ua-icon-air:before {
content: "\e9e6";
}
.ua-icon-arrow-long-down:before {
content: "\e9e7";
}
.ua-icon-arrow-long-left:before {
content: "\e9e8";
}
.ua-icon-arrow-long-right:before {
content: "\e9e9";
}
.ua-icon-arrow-long-up:before {
content: "\e9ea";
}
.ua-icon-arrow-with-circle-down:before {
content: "\e9eb";
}
.ua-icon-arrow-with-circle-left:before {
content: "\e9ec";
}
.ua-icon-arrow-with-circle-right:before {
content: "\e9ed";
}
.ua-icon-arrow-with-circle-up:before {
content: "\e9ee";
}
.ua-icon-attachment:before {
content: "\e9ef";
}
.ua-icon-bar-graph:before {
content: "\e9f0";
}
.ua-icon-briefcase4:before {
content: "\e9f1";
}
.ua-icon-browser:before {
content: "\e9f2";
}
.ua-icon-calculator:before {
content: "\e9f3";
}
.ua-icon-calendar2:before {
content: "\e9f4";
}
.ua-icon-camera2:before {
content: "\e9f5";
}
.ua-icon-chat2:before {
content: "\e9f6";
}
.ua-icon-check2:before {
content: "\e9f7";
}
.ua-icon-chevron-down2:before {
content: "\e9f8";
}
.ua-icon-chevron-left2:before {
content: "\e9f9";
}
.ua-icon-chevron-right2:before {
content: "\e9fa";
}
.ua-icon-chevron-small-down:before {
content: "\e9fb";
}
.ua-icon-chevron-small-left:before {
content: "\e9fc";
}
.ua-icon-chevron-small-right:before {
content: "\e9fd";
}
.ua-icon-chevron-small-up:before {
content: "\e9fe";
}
.ua-icon-chevron-thin-down:before {
content: "\e9ff";
}
.ua-icon-chevron-thin-left:before {
content: "\ea00";
}
.ua-icon-chevron-thin-right:before {
content: "\ea01";
}
.ua-icon-chevron-thin-up:before {
content: "\ea02";
}
.ua-icon-chevron-up2:before {
content: "\ea03";
}
.ua-icon-chevron-with-circle-down:before {
content: "\ea04";
}
.ua-icon-chevron-with-circle-left:before {
content: "\ea05";
}
.ua-icon-chevron-with-circle-right:before {
content: "\ea06";
}
.ua-icon-chevron-with-circle-up:before {
content: "\ea07";
}
.ua-icon-circle-with-cross:before {
content: "\ea08";
}
.ua-icon-circle-with-minus:before {
content: "\ea09";
}
.ua-icon-circle-with-plus:before {
content: "\ea0a";
}
.ua-icon-clock4:before {
content: "\ea0b";
}
.ua-icon-cog3:before {
content: "\ea0c";
}
.ua-icon-compass:before {
content: "\ea0d";
}
.ua-icon-controller-play:before {
content: "\ea0e";
}
.ua-icon-controller-record:before {
content: "\ea0f";
}
.ua-icon-controller-stop:before {
content: "\ea10";
}
.ua-icon-creative-commons-noderivs:before {
content: "\ea11";
}
.ua-icon-credit-card:before {
content: "\ea12";
}
.ua-icon-credit:before {
content: "\ea13";
}
.ua-icon-cross3:before {
content: "\ea14";
}
.ua-icon-direction:before {
content: "\ea15";
}
.ua-icon-dot-single:before {
content: "\ea16";
}
.ua-icon-edit2:before {
content: "\ea17";
}
.ua-icon-email:before {
content: "\ea18";
}
.ua-icon-emoji-flirt:before {
content: "\ea19";
}
.ua-icon-emoji-happy:before {
content: "\ea1a";
}
.ua-icon-emoji-neutral:before {
content: "\ea1b";
}
.ua-icon-emoji-sad:before {
content: "\ea1c";
}
.ua-icon-eye2:before {
content: "\ea1d";
}
.ua-icon-fingerprint:before {
content: "\ea1e";
}
.ua-icon-flow-tree:before {
content: "\ea1f";
}
.ua-icon-gauge:before {
content: "\ea20";
}
.ua-icon-globe3:before {
content: "\ea21";
}
.ua-icon-grid:before {
content: "\ea22";
}
.ua-icon-hair-cross:before {
content: "\ea23";
}
.ua-icon-heart-outlined:before {
content: "\ea24";
}
.ua-icon-heart4:before {
content: "\ea25";
}
.ua-icon-help-with-circle:before {
content: "\ea26";
}
.ua-icon-help2:before {
content: "\ea27";
}
.ua-icon-home2:before {
content: "\ea28";
}
.ua-icon-infinity:before {
content: "\ea29";
}
.ua-icon-info-with-circle:before {
content: "\ea2a";
}
.ua-icon-info:before {
content: "\ea2b";
}
.ua-icon-key2:before {
content: "\ea2c";
}
.ua-icon-keyboard2:before {
content: "\ea2d";
}
.ua-icon-landline:before {
content: "\ea2e";
}
.ua-icon-laptop3:before {
content: "\ea2f";
}
.ua-icon-lifebuoy:before {
content: "\ea30";
}
.ua-icon-light-bulb:before {
content: "\ea31";
}
.ua-icon-location-pin:before {
content: "\ea32";
}
.ua-icon-lock-open:before {
content: "\ea33";
}
.ua-icon-lock4:before {
content: "\ea34";
}
.ua-icon-magnifying-glass2:before {
content: "\ea35";
}
.ua-icon-mail2:before {
content: "\ea36";
}
.ua-icon-map4:before {
content: "\ea37";
}
.ua-icon-medal:before {
content: "\ea38";
}
.ua-icon-menu2:before {
content: "\ea39";
}
.ua-icon-message:before {
content: "\ea3a";
}
.ua-icon-minus2:before {
content: "\ea3b";
}
.ua-icon-mobile2:before {
content: "\ea3c";
}
.ua-icon-news:before {
content: "\ea3d";
}
.ua-icon-phone3:before {
content: "\ea3e";
}
.ua-icon-plus2:before {
content: "\ea3f";
}
.ua-icon-quote2:before {
content: "\ea40";
}
.ua-icon-shopping-basket:before {
content: "\ea41";
}
.ua-icon-shopping-cart:before {
content: "\ea42";
}
.ua-icon-squared-minus:before {
content: "\ea43";
}
.ua-icon-squared-plus:before {
content: "\ea44";
}
.ua-icon-tablet-mobile-combo:before {
content: "\ea45";
}
.ua-icon-tablet3:before {
content: "\ea46";
}
.ua-icon-tools2:before {
content: "\ea47";
}
.ua-icon-tv:before {
content: "\ea48";
}
.ua-icon-typing:before {
content: "\ea49";
}
.ua-icon-user2:before {
content: "\ea4a";
}
.ua-icon-users2:before {
content: "\ea4b";
}
.ua-icon-video-camera:before {
content: "\ea4c";
}
.ua-icon-video2:before {
content: "\ea4d";
}
.ua-icon-vinyl:before {
content: "\ea4e";
}
.ua-icon-Home:before {
content: "\ea4f";
}
.ua-icon-LightBulb:before {
content: "\ea50";
}
.ua-icon-Anchor:before {
content: "\ea51";
}
.ua-icon-Feather:before {
content: "\ea52";
}
.ua-icon-Expand:before {
content: "\ea53";
}
.ua-icon-Maximize:before {
content: "\ea54";
}
.ua-icon-Search:before {
content: "\ea55";
}
.ua-icon-Zoomin:before {
content: "\ea56";
}
.ua-icon-Zoomout:before {
content: "\ea57";
}
.ua-icon-Add:before {
content: "\ea58";
}
.ua-icon-Subtract:before {
content: "\ea59";
}
.ua-icon-Exclamation:before {
content: "\ea5a";
}
.ua-icon-Question:before {
content: "\ea5b";
}
.ua-icon-Close:before {
content: "\ea5c";
}
.ua-icon-Pause:before {
content: "\ea5d";
}
.ua-icon-Envelope:before {
content: "\ea5e";
}
.ua-icon-Compose:before {
content: "\ea5f";
}
.ua-icon-Newspaper:before {
content: "\ea60";
}
.ua-icon-Newspaperalt:before {
content: "\ea61";
}
.ua-icon-Calendar:before {
content: "\ea62";
}
.ua-icon-Hyperlink:before {
content: "\ea63";
}
.ua-icon-Trash:before {
content: "\ea64";
}
.ua-icon-Trashalt:before {
content: "\ea65";
}
.ua-icon-Grid:before {
content: "\ea66";
}
.ua-icon-Gridalt:before {
content: "\ea67";
}
.ua-icon-List:before {
content: "\ea68";
}
.ua-icon-Calculator:before {
content: "\ea69";
}
.ua-icon-Windows:before {
content: "\ea6a";
}
.ua-icon-Browser:before {
content: "\ea6b";
}
.ua-icon-Alarm:before {
content: "\ea6c";
}
.ua-icon-Clock:before {
content: "\ea6d";
}
.ua-icon-Attachment:before {
content: "\ea6e";
}
.ua-icon-Settings:before {
content: "\ea6f";
}
.ua-icon-Portfolio:before {
content: "\ea70";
}
.ua-icon-User:before {
content: "\ea71";
}
.ua-icon-Users:before {
content: "\ea72";
}
.ua-icon-Heart:before {
content: "\ea73";
}
.ua-icon-Chat:before {
content: "\ea74";
}
.ua-icon-Comments:before {
content: "\ea75";
}
.ua-icon-Screen:before {
content: "\ea76";
}
.ua-icon-iPhone:before {
content: "\ea77";
}
.ua-icon-Instagram:before {
content: "\ea78";
}
.ua-icon-facebook3:before {
content: "\ea79";
}
.ua-icon-Delicious:before {
content: "\ea7a";
}
.ua-icon-GooglePlus:before {
content: "\ea7b";
}
.ua-icon-Dribbble:before {
content: "\ea7c";
}
.ua-icon-Pin:before {
content: "\ea7d";
}
.ua-icon-Pinalt:before {
content: "\ea7e";
}
.ua-icon-Cloud:before {
content: "\ea7f";
}
.ua-icon-Circle-Full:before {
content: "\ea80";
}.labb-flex-container a:hover,
.labb-flex-slider a:hover {
outline: none;
}
.labb-slides,
.labb-slides > li,
.labb-flex-control-nav,
.labb-flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.labb-flex-pauseplay span {
text-transform: capitalize;
} .labb-flexslider {
margin: 0;
padding: 0;
}
.labb-flexslider .labb-slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.labb-flexslider .labb-slides img {
width: 100%;
display: block;
}
html[xmlns] .labb-flexslider .labb-slides {
display: block;
}
* html .labb-flexslider .labb-slides {
height: 1%;
}
.no-js .labb-flexslider .labb-slides > li:first-child {
display: block;
} .labb-flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.labb-flexslider .labb-slides {
zoom: 1;
overflow: hidden;
}
.labb-flexslider .labb-slides img {
height: auto;
-moz-user-select: none;
}
.labb-flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.loading .labb-flex-viewport {
max-height: 300px;
}
.carousel li {
margin-right: 5px;
}
.labb-flex-direction-nav {
*height: 0;
}
.labb-flex-direction-nav a {
text-decoration: none;
display: block;
width: 40px;
height: 40px;
margin: -20px 0 0;
position: absolute;
top: 50%;
z-index: 10;
overflow: hidden;
opacity: 0;
cursor: pointer;
color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
a.labb-flex-prev { font-size: 40px;  color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.labb-flex-direction-nav a.labb-flex-next:before {
content: '\f002';
}
.labb-flex-direction-nav .labb-flex-prev {
left: -50px;
}
.labb-flex-direction-nav .labb-flex-next {
right: -50px;
text-align: right;
}
.labb-flex-direction-nav .labb-flex-disabled {
opacity: 0!important;
filter: alpha(opacity=0);
cursor: default;
z-index: -1;
}
.labb-flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.labb-flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: '\f004';
}
.labb-flex-pauseplay a:hover {
opacity: 1;
}
.labb-flex-pauseplay a.labb-flex-play:before {
content: '\f003';
}
.labb-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
}
.labb-flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.labb-flex-control-paging li a {
width: 11px;
height: 11px;
display: block;
background: #666;
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
text-indent: -9999px;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
border-radius: 20px;
}
.labb-flex-control-paging li a:hover {
background: #333;
background: rgba(0, 0, 0, 0.7);
}
.labb-flex-control-paging li a.labb-flex-active {
background: #000;
background: rgba(0, 0, 0, 0.9);
cursor: default;
}
.labb-flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.labb-flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.labb-flex-control-thumbs img {
width: 100%;
height: auto;
display: block;
opacity: .7;
cursor: pointer;
-moz-user-select: none;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.labb-flex-control-thumbs img:hover {
opacity: 1;
}
.labb-flex-control-thumbs .labb-flex-active {
opacity: 1;
cursor: default;
} @media screen and (max-width: 860px) {
.labb-flex-direction-nav .labb-flex-prev {
opacity: 1;
left: 10px;
}
.labb-flex-direction-nav .labb-flex-next {
opacity: 1;
right: 10px;
}
}.njba-image-hover-box1 .njba-njba-box-dispay {
width: 100%;
height: 100%;
display: table;
}
.njba-image-hover-name {
font-family: 'open sans', sans-serif;
font-weight: bold;
font-size: 48px;
padding-bottom: 50px;
}
.njba-col-xs-4 {
width: 25%;
float: left;
}
.njba-image-responsive {
max-width: 100%;
width: 100%;
height: auto;
display: block;
transition: all 0.5s;
}
.njba-image-hover-box {
width: 100%;
transition: all 0.3s;
margin: 30px 0;
position: relative;
}
.njba-image-hover-col-xs-3 {
width: 33.33%;
float: left;
padding: 0 15px;
box-sizing: border-box;
}
.njba-image-hover-col-xs-5 {
width: 33.33%;
float: left;
padding: 30px 30px 0 0;
box-sizing: border-box;
} .njba-image-hover-box1 {
position: relative;
}
.njba-image-hover-border {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
display: inline-block;
z-index: 1;
} .njba-box-dispay {
display: table;
width: 100%;
height: 100%;
} .njba-box-dispay-two {
vertical-align: middle;
width: 100%;
height: 100%;
display: table-cell;
padding: 0 25px;
}
.njba-image-hover-common {
font-family: 'lato', serif;
color: #FFFFFF;
}
.njba-image-hover-border h1 {
opacity: 0;
}
.njba-image-hover-box1:hover .njba-image-hover-border h1 {
opacity: 1;
}
.njba-image-hover-border h2 {
opacity: 0;
}
.njba-image-hover-box1:hover .njba-image-hover-border h2 {
opacity: 1;
} .njba-image-hover-box2 {
overflow: hidden;
position: relative;
}
.njba-image-hover-box-three {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.njba-image-hover-box-three h1 {
text-transform: uppercase;
top: 100%;
position: absolute;
transform: translateY(-50%);
right: 0;
left: 0;
}
.njba-image-hover-box-three:hover {
z-index: 1;
}
.njba-image-hover-box-three:hover.njba-image-hover-box-three h1 {
top: 50%;
} .njba-image-hover-box-four {
position: relative;
overflow: hidden;
}
.njba-interactive-img {
position: relative;
}
.njba-image-hover-name-one {
position: absolute;
z-index: 2;
right: 0;
left: 0;
opacity: 0;
bottom: 100%;
line-height: 2;
}
.njba-image-hover-name-two {
position: absolute;
z-index: 2;
top: 100%;
right: 0;
left: 0;
opacity: 0;
line-height: 2;
}
.njba-image-hover-box-four:hover .njba-image-hover-name-two {
top: 0;
opacity: 1;
}
.njba-image-hover-box-four:hover .njba-image-hover-name-one {
opacity: 1;
bottom: 0;
} .njba-image-hover-box-five {
box-sizing: border-box;
position: relative;
}
.njba-image-hover-box-five-one {
position: absolute;
width: 100%;
height: 100%;
}
.njba-image-hover-box-five-one h1 {
text-transform: uppercase;
position: relative;
top: 22px;
margin: 0;
}
.njba-image-hover-box-five-one:hover.njba-image-hover-box-five-one h1 {
top: 0;
}
.njba-image-hover-box-five-one h2 {
position: absolut;
left: 0;
right: 0;
opacity: 0;
margin: 0;
}
.njba-image-hover-box-five-one:hover.njba-image-hover-box-five-one h2 {
opacity: 1;
} .njba-image-hover-box-six {
position: relative;
overflow: hidden;
}
.njba-image-hover-box-six-one {
position: absolute;
left: 0;
right: 0;
top: 100%;
bottom: 0;
}
.njba-image-hover-box-six:hover .njba-image-hover-box-six-one {
top: 0;
}
.njba-image-hover-box-six-one h1 {
margin: 0;
left: 0;
opacity: 1;
}
.njba-image-hover-box-six-one:hover.njba-image-hover-box-six-one h1 {
opacity: 1;
}
.njba-image-hover-box-six-one:hover.njba-image-hover-box-six-one h2 {
opacity: 1;
}
.njba-image-hover-box-six-one h2 {
margin: 0;
font-weight: normal;
left: 0;
opacity: 1;
}
.njba-box-dispay-three {
vertical-align: middle; width: 100%;
height: 100%;
display: table-cell;
}
@media (max-width: 1170px) {
.njba-image-hover-border1 h1 {
font-size: 25px;
}
.njba-image-hover-border h1 {
font-size: 25px;
}
.njba-image-hover-overrlay-one h1 {
font-size: 40px;
}
.njba-image-hover-overrlay-one h2 {
font-size: 18px;
}
.njba-image-hover-overrlay-one p {
font-size: 15px;
}
.njba-image-hover-overrlay-two h1 {
font-size: 40px;
}
.njba-image-hover-overrlay-two h2 {
font-size: 18px;
}
.njba-image-hover-overrlay-two p {
font-size: 15px;
}
.njba-image-hover-overrlay-three h1 {
font-size: 40px;
}
.njba-image-hover-overrlay-three h2 {
font-size: 18px;
}
.njba-image-hover-overrlay-three p {
font-size: 15px;
}
.njba-image-hover-overrlay-four h1 {
font-size: 40px;
}
.njba-image-hover-overrlay-four h2 {
font-size: 18px;
}
.njba-image-hover-overrlay-four p {
font-size: 15px;
}
.njba-image-hover-border h2 {
font-size: 14px;
}
}
@media (max-width: 991px) {
.njba-col-xs-4 {
width: 50%;
}
.njba-image-hover-col-xs-5 {
width: 50%;
}
.njba-image-hover-border1 h1 {
font-size: 16px;
}
.njba-image-hover-border1 h2 {
font-size: 10px;
}
.njba-image-hover-border h1 {
font-size: 16px;
}
.njba-image-hover-border h2 {
font-size: 10px;
}
}
@media (max-width: 767px) {
.njba-col-xs-4 {
width: 100%;
}
.njba-image-hover-col-xs-5 {
width: 100%;
}
.njba-image-hover-col-xs-3 {
width: 100%;
}
.layout-3 .njba-col-xs-4 {
width: 100%;
padding: 0 30px;
}
.layout-2 .njba-col-xs-4 {
width: 100%;
padding: 0 30px;
}
.layout-3 .njba-col-xs-4 {
width: 100%;
padding: 0 30px;
}
.njba-image-hover-border h1 {
font-size: 18px;
}
.njba-image-hover-border h2 {
font-size: 12px;
}
.njba-image-hover-border1 h1 {
font-size: 18px;
}
.njba-image-hover-border1 h2 {
font-size: 12px;
}
.njba-image-hover-overrlay-one h1 {
font-size: 45px;
}
.njba-image-hover-overrlay-one h2 {
font-size: 22px;
}
.njba-image-hover-overrlay-one p {
font-size: 18px;
}
.njba-image-hover-box-three h1 {
font-size: 18px;
}
.njba-image-hover-name-one {
font-size: 20px;
}
.njba-image-hover-name-two {
font-size: 15px;
}
}.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-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 video {min-width: 100%;min-height: 100%;width: auto;height: auto;}.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-default-height .fl-row-content-wrap,.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-default-height .fl-row-content-wrap,.fl-row-custom-height .fl-row-content-wrap {min-height: 0;}.fl-row-default-height .fl-row-content,.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-default-height .fl-row-full-width.fl-row-content,.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-row-default-height.fl-row-align-center .fl-row-content-wrap,.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-default-height.fl-row-align-bottom .fl-row-content-wrap,.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-col-group-equal-height {display: flex;flex-wrap: wrap;width: 100%;}.fl-col-group-equal-height.fl-col-group-has-child-loading {flex-wrap: nowrap;}.fl-col-group-equal-height .fl-col,.fl-col-group-equal-height .fl-col-content {display: flex;flex: 1 1 auto;}.fl-col-group-equal-height .fl-col-content {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;}.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;}.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;}.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-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-builder-content a.fl-button,.fl-builder-content a.fl-button:visited {background: #fafafa;border: 1px solid #ccc;color: #333;}.fl-builder-content a.fl-button *,.fl-builder-content a.fl-button:visited * {color: #333;}@media (max-width: 1200px) {}@media (max-width: 1200px) { .fl-col-group.fl-col-group-medium-reversed {display: -webkit-flex;display: flex;-webkit-flex-wrap: wrap-reverse;flex-wrap: wrap-reverse;flex-direction: row-reverse;} }@media (max-width: 1024px) { .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: flex;}.fl-col-group.fl-col-group-responsive-reversed {display: -webkit-flex;display: flex;-webkit-flex-wrap: wrap-reverse;flex-wrap: wrap-reverse;flex-direction: row-reverse;}.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {flex-basis: 100%;width: 100% !important;}.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {display: unset;display: unset;-webkit-flex-wrap: unset;flex-wrap: unset;flex-direction: unset;}.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;} }@media (min-width: 1201px) {html .fl-visible-large:not(.fl-visible-desktop),html .fl-visible-medium:not(.fl-visible-desktop),html .fl-visible-mobile:not(.fl-visible-desktop) {display: none;}}@media (min-width: 1201px) and (max-width: 1200px) {html .fl-visible-desktop:not(.fl-visible-large),html .fl-visible-medium:not(.fl-visible-large),html .fl-visible-mobile:not(.fl-visible-large) {display: none;}}@media (min-width: 1025px) and (max-width: 1200px) {html .fl-visible-desktop:not(.fl-visible-medium),html .fl-visible-large:not(.fl-visible-medium),html .fl-visible-mobile:not(.fl-visible-medium) {display: none;}}@media (max-width: 1024px) {html .fl-visible-desktop:not(.fl-visible-mobile),html .fl-visible-large:not(.fl-visible-mobile),html .fl-visible-medium:not(.fl-visible-mobile) {display: none;}}.fl-row-fixed-width {max-width: 1100px;}.fl-row-content-wrap {margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;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;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.fl-module-content, :where(.fl-module:not(:has(> .fl-module-content))) {margin-top: 20px;margin-right: 20px;margin-bottom: 20px;margin-left: 20px;}.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }.fl-node-5f039a3fc23db.fl-row-full-height > .fl-row-content-wrap,.fl-node-5f039a3fc23db.fl-row-custom-height > .fl-row-content-wrap {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}.fl-node-5f039a3fc23db.fl-row-full-height > .fl-row-content-wrap {min-height: 100vh;}.fl-node-5f039a3fc23db.fl-row-custom-height > .fl-row-content-wrap {min-height: 0;}.fl-builder-edit .fl-node-5f039a3fc23db.fl-row-full-height > .fl-row-content-wrap {min-height: calc( 100vh - 48px );}@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){.fl-node-5f039a3fc23db.fl-row-full-height > .fl-row-content-wrap {min-height: 1024px;}}@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){.fl-node-5f039a3fc23db.fl-row-full-height > .fl-row-content-wrap {min-height: 768px;}}@media screen and (aspect-ratio: 40/71) {.fl-node-5f039a3fc23db.fl-row-full-height > .fl-row-content-wrap {min-height: 500px;}}.fl-node-5f039a3fc23db > .fl-row-content-wrap {background-color: #01a0e3;}.fl-node-5f039a3fc23db.fl-row-custom-height > .fl-row-content-wrap {min-height: 370px;} .fl-node-5f039a3fc23db > .fl-row-content-wrap {margin-top:0px;} .fl-node-5f039a3fc23db > .fl-row-content-wrap {padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.fl-node-5efba63d162d5 .fl-row-content {max-width: 100%;} .fl-node-5efba63d162d5 > .fl-row-content-wrap {margin-top:0px;} .fl-node-5efba63d162d5 > .fl-row-content-wrap {padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.fl-node-59c1f23738802 > .fl-row-content-wrap:after {background-image: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);}.fl-node-59c1f23738802 > .fl-row-content-wrap {background-image: url(https://www.fram-geo.pl/wp-content/uploads/2021/02/img-bg-parallax.jpg);background-repeat: no-repeat;background-position: center center;background-attachment: fixed;background-size: cover;border-top-width: 1px;border-right-width: 0px;border-bottom-width: 1px;border-left-width: 0px;}.fl-node-59c1f23738802 .fl-row-content {max-width: 1280px;} .fl-node-59c1f23738802 > .fl-row-content-wrap {padding-top:65px;}@media ( max-width: 1200px ) { .fl-node-59c1f23738802.fl-row > .fl-row-content-wrap {padding-top:18px;}}.fl-node-59c1f56f1f7e2 > .fl-row-content-wrap {background-color: #f4f4f4;border-top-width: 1px;border-right-width: 0px;border-bottom-width: 1px;border-left-width: 0px;} .fl-node-59c1f56f1f7e2 > .fl-row-content-wrap {padding-bottom:80px;}.fl-node-59c216c7d7ef7 > .fl-row-content-wrap {border-top-width: 1px;border-right-width: 0px;border-bottom-width: 1px;border-left-width: 0px;}@media ( max-width: 1024px ) { .fl-node-59c216c7d7ef7.fl-row > .fl-row-content-wrap {margin-right:20px;margin-left:20px;}} .fl-node-59c216c7d7ef7 > .fl-row-content-wrap {padding-top:40px;padding-bottom:62px;}@media ( max-width: 1200px ) { .fl-node-59c216c7d7ef7.fl-row > .fl-row-content-wrap {padding-top:17px;padding-bottom:16px;}} .fl-node-5f18b69415a5b > .fl-row-content-wrap {padding-top:0px;padding-right:0px;padding-left:0px;}.fl-node-3pgo95benhal {width: 100%;}.fl-node-5f039a3fd7c5a {width: 50%;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5f039a3fd7c5a {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-5f039a3fd7c5a {width: 100% !important;max-width: none;clear: none;float: left;}}.fl-node-5efba63d44b8a {width: 25%;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5efba63d44b8a {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}.fl-node-5efbb4f91eabc {width: 100%;}.fl-node-5efbb3b2a1ba0 {width: 100%;}.fl-node-59c1f2376ba3a {width: 18%;}.fl-node-59c1f2376ba3a > .fl-col-content {border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}.fl-node-5f18b69430e83 {width: 100%;}.fl-node-59c1f56f44cb4 {width: 25%;}.fl-node-59c1f56f44cb4 > .fl-col-content {background-color: #ffffff;border-style: solid;border-width: 0;background-clip: border-box;border-color: #16739a;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 3px;border-left-width: 0px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-59c1f56f44cb4 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-59c1f56f44cb4 {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-59c1f56f44cb4 > .fl-col-content {margin-top:-120px;margin-right:0px;margin-left:0px;}@media ( max-width: 1200px ) { .fl-node-59c1f56f44cb4.fl-col > .fl-col-content {margin-top:20px;}}@media ( max-width: 1024px ) { .fl-node-59c1f56f44cb4.fl-col > .fl-col-content {margin-top:20px;margin-right:20px;margin-bottom:20px;margin-left:20px;}} .fl-node-59c1f56f44cb4 > .fl-col-content {padding-top:20px;padding-bottom:0px;}.fl-animated.fl-fade-down {animation: fl-fade-down 1s ease;-webkit-animation: fl-fade-down 1s ease;}@-webkit-keyframes fl-fade-down {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-down {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);}}.fl-node-59c20872ebb2c {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebb2c *:not(span):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: #ffffff;}.fl-builder-content .fl-node-59c20872ebb2c a {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebb2c a:hover {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebb2c h1,.fl-builder-content .fl-node-59c20872ebb2c h2,.fl-builder-content .fl-node-59c20872ebb2c h3,.fl-builder-content .fl-node-59c20872ebb2c h4,.fl-builder-content .fl-node-59c20872ebb2c h5,.fl-builder-content .fl-node-59c20872ebb2c h6,.fl-builder-content .fl-node-59c20872ebb2c h1 a,.fl-builder-content .fl-node-59c20872ebb2c h2 a,.fl-builder-content .fl-node-59c20872ebb2c h3 a,.fl-builder-content .fl-node-59c20872ebb2c h4 a,.fl-builder-content .fl-node-59c20872ebb2c h5 a,.fl-builder-content .fl-node-59c20872ebb2c h6 a {color: #ffffff;}.fl-node-59c20872ebb2c {width: 100%;}.fl-node-59c20872ebb2c > .fl-col-content {background-color: #01a0e3;border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-59c20872ebb2c {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-59c20872ebb2c {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-59c20872ebb2c > .fl-col-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-animated.fl-flip-vertical {animation: fl-flip-vertical 1s ease;-webkit-animation: fl-flip-vertical 1s ease;backface-visibility: visible !important;-webkit-backface-visibility: visible !important;}@-webkit-keyframes fl-flip-vertical {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 fl-flip-vertical {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);}}.fl-node-59c20872ebb74 {width: 100%;}.fl-node-59c20872ebb74 > .fl-col-content {background-color: #01a0e3;border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-59c20872ebb74 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-59c20872ebb74 {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-59c20872ebb74 > .fl-col-content {margin-right:0px;margin-left:0px;} .fl-node-59c20872ebb74 > .fl-col-content {padding-top:0px;}.fl-node-59c20872ebbb5 {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebbb5 *:not(span):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: #ffffff;}.fl-builder-content .fl-node-59c20872ebbb5 a {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebbb5 a:hover {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebbb5 h1,.fl-builder-content .fl-node-59c20872ebbb5 h2,.fl-builder-content .fl-node-59c20872ebbb5 h3,.fl-builder-content .fl-node-59c20872ebbb5 h4,.fl-builder-content .fl-node-59c20872ebbb5 h5,.fl-builder-content .fl-node-59c20872ebbb5 h6,.fl-builder-content .fl-node-59c20872ebbb5 h1 a,.fl-builder-content .fl-node-59c20872ebbb5 h2 a,.fl-builder-content .fl-node-59c20872ebbb5 h3 a,.fl-builder-content .fl-node-59c20872ebbb5 h4 a,.fl-builder-content .fl-node-59c20872ebbb5 h5 a,.fl-builder-content .fl-node-59c20872ebbb5 h6 a {color: #ffffff;}.fl-node-59c20872ebbb5 {width: 100%;}.fl-node-59c20872ebbb5 > .fl-col-content {background-color: #01a0e3;border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-59c20872ebbb5 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-59c20872ebbb5 {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-59c20872ebbb5 > .fl-col-content {margin-right:0px;margin-left:0px;}.fl-node-59c20872ebbf5 {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebbf5 *:not(span):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: #ffffff;}.fl-builder-content .fl-node-59c20872ebbf5 a {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebbf5 a:hover {color: #ffffff;}.fl-builder-content .fl-node-59c20872ebbf5 h1,.fl-builder-content .fl-node-59c20872ebbf5 h2,.fl-builder-content .fl-node-59c20872ebbf5 h3,.fl-builder-content .fl-node-59c20872ebbf5 h4,.fl-builder-content .fl-node-59c20872ebbf5 h5,.fl-builder-content .fl-node-59c20872ebbf5 h6,.fl-builder-content .fl-node-59c20872ebbf5 h1 a,.fl-builder-content .fl-node-59c20872ebbf5 h2 a,.fl-builder-content .fl-node-59c20872ebbf5 h3 a,.fl-builder-content .fl-node-59c20872ebbf5 h4 a,.fl-builder-content .fl-node-59c20872ebbf5 h5 a,.fl-builder-content .fl-node-59c20872ebbf5 h6 a {color: #ffffff;}.fl-node-59c20872ebbf5 {width: 100%;}.fl-node-59c20872ebbf5 > .fl-col-content {background-color: #01a0e3;border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-59c20872ebbf5 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-59c20872ebbf5 {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-59c20872ebbf5 > .fl-col-content {margin-right:0px;margin-left:0px;}.fl-node-59c216c82641f {width: 18%;}.fl-node-59c216c82641f > .fl-col-content {border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}.fl-node-5f188fb832f8f {width: 100%;} .fl-node-5f188fb832f8f > .fl-col-content {padding-bottom:20px;}.fl-node-5f039a3fd7c66 {width: 50%;}.fl-node-5f039a3fd7c66 > .fl-col-content {background-color: #ffffff;background-image: url(https://www.fram-geo.pl/wp-content/uploads/2021/02/img-head-bg-2.jpg);background-repeat: no-repeat;background-position: center center;background-attachment: scroll;background-size: contain;}.fl-builder-content .fl-node-5f039a3fd7c66 > .fl-col-content {min-height: 500px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5f039a3fd7c66 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-5f039a3fd7c66 {width: 50% !important;max-width: none;clear: none;float: left;}}body.fl-builder {overflow-x: hidden;}.fl-animated.fl-slide-in-right {animation: fl-slide-in-right 1s ease;-webkit-animation: fl-slide-in-right 1s ease;}@-webkit-keyframes fl-slide-in-right {from {-webkit-transform: translate3d(50%, 0, 0);transform: translate3d(50%, 0, 0);visibility: visible;}to {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}}@keyframes fl-slide-in-right {from {-webkit-transform: translate3d(50%, 0, 0);transform: translate3d(50%, 0, 0);visibility: visible;}to {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}}.fl-node-5efba63d44ba5 {width: 25%;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5efba63d44ba5 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}.fl-node-5ef518c8a2e2c {width: 25%;}.fl-node-5ef518c8a2e2c > .fl-col-content {background-color: #ffffff;border-style: solid;border-width: 0;background-clip: border-box;border-color: #16739a;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 3px;border-left-width: 0px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5ef518c8a2e2c {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-5ef518c8a2e2c {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-5ef518c8a2e2c > .fl-col-content {margin-top:-120px;margin-right:0px;margin-left:0px;}@media ( max-width: 1200px ) { .fl-node-5ef518c8a2e2c.fl-col > .fl-col-content {margin-top:20px;}}@media ( max-width: 1024px ) { .fl-node-5ef518c8a2e2c.fl-col > .fl-col-content {margin-top:20px;margin-right:20px;margin-bottom:20px;margin-left:20px;}} .fl-node-5ef518c8a2e2c > .fl-col-content {padding-top:20px;padding-bottom:0px;}.fl-node-59c1f2376ba77 {width: 64%;} .fl-node-59c1f2376ba77 > .fl-col-content {padding-bottom:130px;}@media ( max-width: 1200px ) { .fl-node-59c1f2376ba77.fl-col > .fl-col-content {padding-bottom:32px;}}@media ( max-width: 1024px ) { .fl-node-59c1f2376ba77.fl-col > .fl-col-content {padding-bottom:32px;}}.fl-node-59c216c826468 {width: 64%;} .fl-node-59c216c826468 > .fl-col-content {padding-bottom:60px;}@media ( max-width: 1200px ) { .fl-node-59c216c826468.fl-col > .fl-col-content {padding-bottom:20px;}}.fl-node-59c1f2376bab2 {width: 18%;}.fl-node-59c1f2376bab2 > .fl-col-content {border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}.fl-node-59c216c8264a9 {width: 18%;}.fl-node-59c216c8264a9 > .fl-col-content {border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;}.fl-node-5ef519d822e63 {width: 25%;}.fl-node-5ef519d822e63 > .fl-col-content {background-color: #ffffff;border-style: solid;border-width: 0;background-clip: border-box;border-color: #16739a;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 3px;border-left-width: 0px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5ef519d822e63 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-5ef519d822e63 {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-5ef519d822e63 > .fl-col-content {margin-top:-120px;margin-right:0px;margin-left:0px;}@media ( max-width: 1200px ) { .fl-node-5ef519d822e63.fl-col > .fl-col-content {margin-top:20px;}}@media ( max-width: 1024px ) { .fl-node-5ef519d822e63.fl-col > .fl-col-content {margin-top:20px;margin-right:20px;margin-bottom:20px;margin-left:20px;}} .fl-node-5ef519d822e63 > .fl-col-content {padding-top:20px;padding-bottom:0px;}.fl-node-5efba63d44bb4 {width: 25%;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5efba63d44bb4 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}.fl-node-5ef51b6a565c6 {width: 25%;}.fl-node-5ef51b6a565c6 > .fl-col-content {background-color: #ffffff;border-style: solid;border-width: 0;background-clip: border-box;border-color: #16739a;border-top-width: 0px;border-right-width: 0px;border-bottom-width: 3px;border-left-width: 0px;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5ef51b6a565c6 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}@media(max-width: 1024px) {.fl-builder-content .fl-node-5ef51b6a565c6 {width: 100% !important;max-width: none;clear: none;float: left;}} .fl-node-5ef51b6a565c6 > .fl-col-content {margin-top:-120px;margin-right:0px;margin-left:0px;}@media ( max-width: 1200px ) { .fl-node-5ef51b6a565c6.fl-col > .fl-col-content {margin-top:20px;}}@media ( max-width: 1024px ) { .fl-node-5ef51b6a565c6.fl-col > .fl-col-content {margin-top:20px;margin-right:20px;margin-bottom:20px;margin-left:20px;}} .fl-node-5ef51b6a565c6 > .fl-col-content {padding-top:20px;padding-bottom:0px;}.fl-node-5efba63d44bc1 {width: 25%;}@media(max-width: 1200px) {.fl-builder-content .fl-node-5efba63d44bc1 {width: 50% !important;max-width: none;-webkit-box-flex: 0 1 auto;-moz-box-flex: 0 1 auto;-webkit-flex: 0 1 auto;-ms-flex: 0 1 auto;flex: 0 1 auto;}}.fl-builder-content .fl-rich-text strong {font-weight: bold;}.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 {border-radius: 0;display: inline-block;line-height: 0;position: relative;max-width: 100%;overflow: hidden;}.uabb-imgicon-wrap .uabb-image-content img {display: inline;height: auto !important;max-width: 100%;width: auto;box-sizing: content-box;border-radius: inherit;}.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;}.fl-node-5ef518c8a2f0e .uabb-imgicon-wrap {text-align: center; }.fl-node-5ef518c8a2f0e .uabb-icon-wrap .uabb-icon i,.fl-node-5ef518c8a2f0e .uabb-icon-wrap .uabb-icon i:before {color: #0d8842;font-size: 30px;height: auto;width: auto;background: #fafafa;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;line-height:60px;height:60px;width:60px;text-align: center;border-style: solid;box-sizing:content-box;border-width: 2px;}.fl-node-5ef518c8a2f0e .uabb-icon-wrap .uabb-icon i:before {background: none;}.fl-node-5ef518c8a2f0e .uabb-icon-wrap .uabb-icon i:hover,.fl-node-5ef518c8a2f0e .uabb-icon-wrap .uabb-icon i:hover:before {color: ;}.fl-node-5ef518c8a2f0e .uabb-icon-wrap .uabb-icon i:hover:before {background: none;} .fl-node-5ef518c8a2f0e > .fl-module-content {margin-top:20px;margin-bottom:0px;}.fl-node-5ef519d822fd5 .uabb-imgicon-wrap {text-align: center; }.fl-node-5ef519d822fd5 .uabb-icon-wrap .uabb-icon i,.fl-node-5ef519d822fd5 .uabb-icon-wrap .uabb-icon i:before {color: #0d8842;font-size: 30px;height: auto;width: auto;background: #fafafa;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;line-height:60px;height:60px;width:60px;text-align: center;border-style: solid;box-sizing:content-box;border-width: 2px;}.fl-node-5ef519d822fd5 .uabb-icon-wrap .uabb-icon i:before {background: none;}.fl-node-5ef519d822fd5 .uabb-icon-wrap .uabb-icon i:hover,.fl-node-5ef519d822fd5 .uabb-icon-wrap .uabb-icon i:hover:before {color: ;}.fl-node-5ef519d822fd5 .uabb-icon-wrap .uabb-icon i:hover:before {background: none;} .fl-node-5ef519d822fd5 > .fl-module-content {margin-top:20px;margin-bottom:10px;}.fl-node-5ef51b6a566c0 .uabb-imgicon-wrap {text-align: center; }.fl-node-5ef51b6a566c0 .uabb-icon-wrap .uabb-icon i,.fl-node-5ef51b6a566c0 .uabb-icon-wrap .uabb-icon i:before {color: #0d8842;font-size: 30px;height: auto;width: auto;background: #fafafa;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;line-height:60px;height:60px;width:60px;text-align: center;border-style: solid;box-sizing:content-box;border-width: 2px;}.fl-node-5ef51b6a566c0 .uabb-icon-wrap .uabb-icon i:before {background: none;}.fl-node-5ef51b6a566c0 .uabb-icon-wrap .uabb-icon i:hover,.fl-node-5ef51b6a566c0 .uabb-icon-wrap .uabb-icon i:hover:before {color: ;}.fl-node-5ef51b6a566c0 .uabb-icon-wrap .uabb-icon i:hover:before {background: none;}.labb-heading {text-align: center;margin: 0 auto 60px;max-width: 640px; }@media only screen and (max-width: 767px) {.labb-heading {margin-bottom: 40px; } }.labb-heading .labb-text {font-size: 18px;line-height: 28px;margin: 0 auto; }@media only screen and (max-width: 767px) {.labb-heading .labb-text {font-size: 15px;line-height: 26px; } }.labb-heading.labb-alignleft, .labb-heading.labb-alignright {margin: 0; }.labb-heading.labb-alignleft .labb-text, .labb-heading.labb-alignright .labb-text {margin: 0; }.labb-heading.labb-alignleft {text-align: left; }.labb-heading.labb-alignright {text-align: right; }.labb-heading .labb-title {font-weight: 700;font-size: 32px;line-height: 42px;margin: 0 auto 20px;color: #333;font-weight: bold; }@media only screen and (max-width: 767px) {.labb-heading .labb-title {font-size: 24px;line-height: 32px; } }.labb-dark-bg .labb-heading .labb-title {color: #e5e5e5; }.labb-dark-bg .labb-heading .labb-subtitle {color: #B0B0B0; }.labb-dark-bg .labb-heading .labb-text {color: #909090; }.labb-heading.labb-alignleft .labb-title, .labb-heading.labb-alignright .labb-title {margin: 0 0 20px; }.labb-heading .labb-subtitle {margin: 0 auto 5px;color: #888;font-size: 12px;line-height: 20px;text-transform: uppercase;font-weight: 600;letter-spacing: 2px;position: relative;display: inline-block;padding: 0 10px; }@media only screen and (max-width: 767px) {.labb-heading .labb-subtitle {font-size: 11px;line-height: 18px; } }.labb-heading.labb-alignleft .labb-subtitle, .labb-heading.labb-alignright .labb-subtitle {margin: 0 0 5px;padding: 0; }.labb-heading.labb-alignleft .labb-subtitle:before, .labb-heading.labb-alignleft .labb-subtitle:after, .labb-heading.labb-alignright .labb-subtitle:before, .labb-heading.labb-alignright .labb-subtitle:after {display: none; }.labb-heading.labb-style3 {margin: 0 auto 30px; }.labb-heading.labb-style3 .labb-title {font-size: 22px;line-height: 32px;text-transform: uppercase;letter-spacing: 1px; }.labb-heading.labb-style3 .labb-title:after {width: 35px;height: 1px;background: #aaa;display: block;content: ""; }.labb-heading.labb-style3 .labb-title:after {margin: 10px auto 20px; }.labb-dark-bg .labb-heading.labb-style3 .labb-title:after {background: #909090; }@media only screen and (max-width: 767px) {.labb-heading.labb-style3 .labb-title {font-size: 16px;line-height: 24px; } }.labb-heading.labb-style3.labb-alignleft, .labb-heading.labb-style3.labb-alignright {margin: 0 0 30px; }.labb-heading.labb-style3.labb-alignleft .labb-title:after, .labb-heading.labb-style3.labb-alignright .labb-title:after {margin: 10px 0 20px; }.fl-node-5f0385d48c5ee .labb-heading .labb-title {color: #ffffff;}.fl-node-5f0385d48c5ee .labb-heading .labb-subtitle {color: #e5e5e5;}.fl-node-5f0385d48c5ee .labb-heading .labb-text {color: #ffffff;}@media ( max-width: 1200px ) {.fl-node-5f0385d48c5ee .labb-heading .labb-title {}.fl-node-5f0385d48c5ee .labb-heading .labb-subtitle {}.fl-node-5f0385d48c5ee .labb-heading .labb-text {}}@media ( max-width: 1024px ) {.fl-node-5f0385d48c5ee .labb-heading .labb-title {}.fl-node-5f0385d48c5ee .labb-heading .labb-subtitle {}.fl-node-5f0385d48c5ee .labb-heading .labb-text {}} .fl-node-5f0385d48c5ee > .fl-module-content {margin-top:4%;margin-right:0%;margin-bottom:0%;margin-left:10%;}@media ( max-width: 1200px ) { .fl-node-5f0385d48c5ee.fl-module > .fl-module-content {margin-right:20px;margin-left:20px;}}@media ( max-width: 1024px ) { .fl-node-5f0385d48c5ee.fl-module > .fl-module-content {margin-top:0px;margin-right:20px;margin-left:20px;}}body.fl-builder {overflow-x: hidden;}.fl-animated.fl-slide-in-left {animation: fl-slide-in-left 1s ease;-webkit-animation: fl-slide-in-left 1s ease;}@-webkit-keyframes fl-slide-in-left {from {-webkit-transform: translate3d(-50%, 0, 0);transform: translate3d(-50%, 0, 0);visibility: visible;}to {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}}@keyframes fl-slide-in-left {from {-webkit-transform: translate3d(-50%, 0, 0);transform: translate3d(-50%, 0, 0);visibility: visible;}to {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}}.fl-node-5efbafb91d0c1 .labb-heading .labb-title {}.fl-node-5efbafb91d0c1 .labb-heading .labb-subtitle {}.fl-node-5efbafb91d0c1 .labb-heading .labb-text {}@media ( max-width: 1200px ) {.fl-node-5efbafb91d0c1 .labb-heading .labb-title {}.fl-node-5efbafb91d0c1 .labb-heading .labb-subtitle {}.fl-node-5efbafb91d0c1 .labb-heading .labb-text {}}@media ( max-width: 1024px ) {.fl-node-5efbafb91d0c1 .labb-heading .labb-title {}.fl-node-5efbafb91d0c1 .labb-heading .labb-subtitle {}.fl-node-5efbafb91d0c1 .labb-heading .labb-text {}} .fl-node-5efbafb91d0c1 > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}h1, h2, h3, h4, h5, h6 {margin: 0;}.position_center {float: none;width: 100%;}.position_left {float: left;width: 50%;}.position_right {float: right;width: 50%;}.njba-side-left, .njba-side-right {width: 100px;}.njba-divider-content {display: table-cell;padding-left: 5px;padding-right: 5px;text-align: center;}.njba-separator-line {display: table-cell;vertical-align: middle;}.fl-node-5efbb4f91e9b1 .njba-icon {margin: 0 auto;display: table;}.fl-node-5efbb4f91e9b1 .njba-divider-content.njba-divider {text-align: center;width: 20%;}.fl-node-5efbb4f91e9b1 .njba-separator-line > span { border-top: 6px;border-color: #5b5b5b;border-top-style: double; display: block;}.fl-node-5efbb4f91e9b1 .njba-divider-content i { font-size: 50px;color: #000000;} .fl-node-5efbb4f91e9b1 > .fl-module-content {margin-top:50px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (max-width: 1024px) { .fl-node-5efbb4f91e9b1 > .fl-module-content { margin-top:20px; } }.fl-animated.fl-fancy-jack-box {animation: fl-fancy-jack-box 1s ease;-webkit-animation: fl-fancy-jack-box 1s ease;}@-webkit-keyframes fl-fancy-jack-box {from {opacity: 0;-webkit-transform: scale(0.1) rotate(30deg);transform: scale(0.1) rotate(30deg);-webkit-transform-origin: center bottom;transform-origin: center bottom;}50% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}70% {-webkit-transform: rotate(3deg);transform: rotate(3deg);}to {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}}@keyframes fl-fancy-jack-box {from {opacity: 0;-webkit-transform: scale(0.1) rotate(30deg);transform: scale(0.1) rotate(30deg);-webkit-transform-origin: center bottom;transform-origin: center bottom;}50% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}70% {-webkit-transform: rotate(3deg);transform: rotate(3deg);}to {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}}.fl-node-5efba806bc1dc .labb-heading .labb-title {}.fl-node-5efba806bc1dc .labb-heading .labb-subtitle {}.fl-node-5efba806bc1dc .labb-heading .labb-text {}@media ( max-width: 1200px ) {.fl-node-5efba806bc1dc .labb-heading .labb-title {}.fl-node-5efba806bc1dc .labb-heading .labb-subtitle {}.fl-node-5efba806bc1dc .labb-heading .labb-text {}}@media ( max-width: 1024px ) {.fl-node-5efba806bc1dc .labb-heading .labb-title {}.fl-node-5efba806bc1dc .labb-heading .labb-subtitle {}.fl-node-5efba806bc1dc .labb-heading .labb-text {}} .fl-node-5efba806bc1dc > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.inline .njba-cta-text, .inline .njba-btn-main {float: left;}.inline {width: 100%;display: inline-block;}.njba-cta-text p {margin: 0;}.njba-cta-text p {word-wrap: break-word;}.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {margin-bottom: 0;}span.font-icon-preview {display: inline-block;vertical-align: middle;}span.njba-button-text {vertical-align: middle;}.fl-node-5efbb3c971f1d .njba-cta-text {width: 100%;}.fl-node-5efbb3c971f1d .njba-btn-main {width: 100%;}.fl-node-5efbb3c971f1d .njba-cta-module-content {width: 100%;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn { background-color: #0d8842;color: #ffffff; font-size: 20px;line-height: 20px; border-width: 1px;border-style: none;border-color: #000000;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;padding-top: 20px;padding-right: 40px;padding-bottom: 20px;padding-left: 40px;margin-top: 10px;margin-right: 10px;margin-bottom: 10px;margin-left: 10px;transition: all ease 0.3s; display: inline-block;text-align: center; box-shadow: 0px 0px 0px 0px #ffffff;}.fl-node-5efbb3c971f1d .njba-btn-main {text-align: center; }.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn { top: 0;box-shadow: 0 4px#006a24;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn:hover { box-shadow: 0 4px#0082c5;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn:active {top: 4px;box-shadow: none;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn:hover { background-color: #01a0e3;color: #ffffff;border-color: #000000;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn i { color: #ffffff;font-size: 20px;transition: all ease 0.3s;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn:hover i { color: #ffffff;}@media ( max-width: 991px ) {.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn { font-size: 16px;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn i { font-size: 16px;}}@media ( max-width: 767px ) {.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn { font-size: 16px;}.fl-node-5efbb3c971f1d .njba-btn-main a.njba-btn i { font-size: 16px;}}.fl-node-5efbb3c971f1d .njba-heading-title { color: #000000; font-size: 28px;line-height: 30px;text-align: center;margin-top: 10px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px;}.fl-node-5efbb3c971f1d .njba-heading-title::before { background-color: #000000;}.fl-node-5efbb3c971f1d .njba-heading-sub-title { color: #5b5b5b; font-size: 14px;line-height: 20px;text-align: center; margin-top: 10px; margin-bottom: 30px; margin-left: 10px; margin-right: 10px;}.fl-node-5efbb3c971f1d .njba-heading-sub-title::before { background-color: #5b5b5b;}.fl-node-5efbb3c971f1d .njba-icon {margin: 0 auto;display: table; width: 50%;}.fl-node-5efbb3c971f1d .njba-divider-content.njba-divider {text-align: center;width: 20%;}.fl-node-5efbb3c971f1d .njba-separator-line > span { border-top: 1px;border-color: #000000;border-top-style: solid; display: block;}.fl-node-5efbb3c971f1d .njba-icon { margin-top: 20px; margin-bottom: 20px;}@media ( max-width: 1200px ) {.fl-node-5efbb3c971f1d .njba-heading-title { font-size: 24px; line-height: 26px;}.fl-node-5efbb3c971f1d .njba-heading-sub-title { font-size: 14px; line-height: 18px;}}@media ( max-width: 1024px ) {.fl-node-5efbb3c971f1d .njba-heading-title { font-size: 20px; line-height: 22px;}.fl-node-5efbb3c971f1d .njba-heading-sub-title { font-size: 12px; line-height: 16px;}}@media ( max-width: 767px ) {.fl-node-5efbb3c971f1d .njba-cta-text {width: 100%;}.fl-node-5efbb3c971f1d .njba-heading-title,.fl-node-5efbb3c971f1d .njba-heading-sub-title {text-align: center;}.fl-node-5efbb3c971f1d .njba-btn-main {width: 100%;text-align: center;}} .fl-node-5efbb3c971f1d > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:50px;margin-left:0px;}@media (max-width: 1024px) { .fl-node-5efbb3c971f1d > .fl-module-content { margin-bottom:20px; } }.fl-animated.fl-fade-in {animation: fl-fade-in 1s ease;-webkit-animation: fl-fade-in 1s ease;}@-webkit-keyframes fl-fade-in {from {opacity: 0;}to {opacity: 1;}}@keyframes fl-fade-in {from {opacity: 0;}to {opacity: 1;}}.fl-node-5efbaf6f811ec .labb-heading .labb-title {}.fl-node-5efbaf6f811ec .labb-heading .labb-subtitle {}.fl-node-5efbaf6f811ec .labb-heading .labb-text {}@media ( max-width: 1200px ) {.fl-node-5efbaf6f811ec .labb-heading .labb-title {}.fl-node-5efbaf6f811ec .labb-heading .labb-subtitle {}.fl-node-5efbaf6f811ec .labb-heading .labb-text {}}@media ( max-width: 1024px ) {.fl-node-5efbaf6f811ec .labb-heading .labb-title {}.fl-node-5efbaf6f811ec .labb-heading .labb-subtitle {}.fl-node-5efbaf6f811ec .labb-heading .labb-text {}} .fl-node-5efbaf6f811ec > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-node-5efbafab1b1de .labb-heading .labb-title {}.fl-node-5efbafab1b1de .labb-heading .labb-subtitle {}.fl-node-5efbafab1b1de .labb-heading .labb-text {}@media ( max-width: 1200px ) {.fl-node-5efbafab1b1de .labb-heading .labb-title {}.fl-node-5efbafab1b1de .labb-heading .labb-subtitle {}.fl-node-5efbafab1b1de .labb-heading .labb-text {}}@media ( max-width: 1024px ) {.fl-node-5efbafab1b1de .labb-heading .labb-title {}.fl-node-5efbafab1b1de .labb-heading .labb-subtitle {}.fl-node-5efbafab1b1de .labb-heading .labb-text {}} .fl-node-5efbafab1b1de > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.uabb-heading-wrapper .uabb-heading {padding: 0;margin: 0;}.uabb-heading-wrapper .uabb-heading a {text-decoration: none;}.uabb-heading-wrapper .uabb-subheading * {margin: 0;}.uabb-heading-align-left .uabb-heading,.uabb-heading-align-left .uabb-subheading,.uabb-heading-align-left .uabb-subheading * {text-align: left;}.uabb-heading-align-center .uabb-heading,.uabb-heading-align-center .uabb-subheading,.uabb-heading-align-center .uabb-subheading * {text-align: center;}.uabb-heading-align-right .uabb-heading,.uabb-heading-align-right .uabb-subheading,.uabb-heading-align-right .uabb-subheading * {text-align: right;}.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) {font-weight: inherit;}.uabb-heading a,.uabb-heading a:hover,.uabb-heading a:focus,.uabb-heading a:active {text-decoration: none;}.fl-node-5df9d8582dfdf .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d8582dfdf .uabb-subheading {margin-top: 15px;margin-bottom: 0px;}.fl-node-5df9d8582dfdf .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d8582dfdf .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d8582dfdf .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5df9d8582dfdf .uabb-heading .uabb-heading-text {}.fl-node-5df9d8582dfdf .uabb-heading .uabb-heading-text {}.fl-node-5df9d8582dfdf .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5df9d8582dfdf .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d8582dfdf .uabb-image-outter-wrap {width: 50px;}@media ( max-width: 1200px ) {.fl-node-5df9d8582dfdf .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d8582dfdf .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d8582dfdf .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d8582dfdf .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d8582dfdf .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d8582dfdf .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d8582dfdf .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d8582dfdf .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d8582dfdf .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d8582dfdf .uabb-heading .uabb-heading-text {}.fl-node-5df9d8582dfdf .uabb-heading,.fl-node-5df9d8582dfdf .uabb-subheading,.fl-node-5df9d8582dfdf .uabb-subheading * {text-align: center;}}.fl-node-5df9d8582dfdf .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text {font-size: 30px;} .fl-node-5df9d8582dfdf > .fl-module-content {margin-bottom:0px;}.fl-node-5df9d82032a4b .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d82032a4b .uabb-subheading {margin-top: 15px;margin-bottom: 10px;}.fl-node-5df9d82032a4b .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d82032a4b .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d82032a4b .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5df9d82032a4b .uabb-heading .uabb-heading-text {}.fl-node-5df9d82032a4b .uabb-heading .uabb-heading-text {}.fl-node-5df9d82032a4b .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5df9d82032a4b .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d82032a4b .uabb-image-outter-wrap {width: 50px;} .fl-node-5df9d82032a4b .uabb-separator {border-top:2px solid #ffffff;width: 15%;display: inline-block;}@media ( max-width: 1200px ) {.fl-node-5df9d82032a4b .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d82032a4b .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d82032a4b .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d82032a4b .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d82032a4b .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d82032a4b .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d82032a4b .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d82032a4b .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d82032a4b .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d82032a4b .uabb-heading .uabb-heading-text {}.fl-node-5df9d82032a4b .uabb-heading,.fl-node-5df9d82032a4b .uabb-subheading,.fl-node-5df9d82032a4b .uabb-subheading * {text-align: center;}}.fl-node-5df9d82032a4b .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text {font-size: 2rem;} .fl-node-5df9d82032a4b > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;}.fl-node-5df9d806254e8 .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d806254e8 .uabb-subheading {margin-top: 15px;margin-bottom: 10px;}.fl-node-5df9d806254e8 .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d806254e8 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d806254e8 .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5df9d806254e8 .uabb-heading .uabb-heading-text {}.fl-node-5df9d806254e8 .uabb-heading .uabb-heading-text {}.fl-node-5df9d806254e8 .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5df9d806254e8 .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d806254e8 .uabb-image-outter-wrap {width: 50px;} .fl-node-5df9d806254e8 .uabb-separator {border-top:2px solid #ffffff;width: 15%;display: inline-block;}@media ( max-width: 1200px ) {.fl-node-5df9d806254e8 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d806254e8 .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d806254e8 .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d806254e8 .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d806254e8 .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d806254e8 .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d806254e8 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d806254e8 .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d806254e8 .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d806254e8 .uabb-heading .uabb-heading-text {}.fl-node-5df9d806254e8 .uabb-heading,.fl-node-5df9d806254e8 .uabb-subheading,.fl-node-5df9d806254e8 .uabb-subheading * {text-align: center;}}.fl-node-5df9d806254e8 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text {font-size: 2rem;} .fl-node-5df9d806254e8 > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;}.fl-node-5df9d7f109e3c .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d7f109e3c .uabb-subheading {margin-top: 15px;margin-bottom: 10px;}.fl-node-5df9d7f109e3c .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d7f109e3c .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d7f109e3c .fl-module-content.fl-node-content .uabb-heading * {color:#ffffff;}.fl-node-5df9d7f109e3c .uabb-heading .uabb-heading-text {}.fl-node-5df9d7f109e3c .uabb-heading .uabb-heading-text {}.fl-node-5df9d7f109e3c .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #ffffff;}.fl-node-5df9d7f109e3c .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d7f109e3c .uabb-image-outter-wrap {width: 50px;} .fl-node-5df9d7f109e3c .uabb-separator {border-top:2px solid #ffffff;width: 15%;display: inline-block;}@media ( max-width: 1200px ) {.fl-node-5df9d7f109e3c .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d7f109e3c .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d7f109e3c .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d7f109e3c .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d7f109e3c .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d7f109e3c .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d7f109e3c .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d7f109e3c .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d7f109e3c .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d7f109e3c .uabb-heading .uabb-heading-text {}.fl-node-5df9d7f109e3c .uabb-heading,.fl-node-5df9d7f109e3c .uabb-subheading,.fl-node-5df9d7f109e3c .uabb-subheading * {text-align: center;}}.fl-node-5df9d7f109e3c .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text {font-size: 2rem;} .fl-node-5df9d7f109e3c > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;}.njba-btn-main a.njba-btn {text-decoration: none;position: relative;}.njba-btn-main a:hover, .njba-btn-main a:active, .njba-btn-main a:focus {text-decoration: none;}.njba-btn-main a:active, .njba-btn-main a:focus {outline: none;}.njba-btn-main a.njba-btn:before {position: absolute;z-index: -1;top: 0;left: 0;right: 0;bottom: 0;-webkit-transition-property: transform;-moz-transition-property: transform;-o-transition-property: transform;-ms-transition-property: transform;}.njba-btn-main .position_right {float: right;}.njba-btn-main .position_left {float: left;}span.font-icon-preview {display: inline-block;vertical-align: middle;}span.njba-button-text {vertical-align: middle;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn { background-color: #0d8842;color: #ffffff; font-size: 18px;line-height: 18px; border-width: 1px;border-style: none;border-color: #000000;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;padding-top: 20px;padding-right: 40px;padding-bottom: 20px;padding-left: 40px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;transition: all ease 0.3s; display: inline-block;text-align: center; box-shadow: 0px 0px 0px 0px #ffffff;}.fl-node-5f18a26571191 .njba-btn-main {text-align: center; }.fl-node-5f18a26571191 .njba-btn-main a.njba-btn { top: 0;box-shadow: 0 4px#006a24;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn:hover { box-shadow: 0 4px#0082c5;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn:active {top: 4px;box-shadow: none;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn:hover { background-color: #01a0e3;color: #ffffff;border-color: #000000;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn i { color: #ffffff;font-size: 18px;transition: all ease 0.3s;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn:hover i { color: #ffffff;}@media ( max-width: 991px ) {.fl-node-5f18a26571191 .njba-btn-main a.njba-btn { font-size: 16px;}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn i { font-size: 16px;}}@media ( max-width: 767px ) {.fl-node-5f18a26571191 .njba-btn-main a.njba-btn {}.fl-node-5f18a26571191 .njba-btn-main a.njba-btn i {}} .fl-node-5f18a26571191 > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:30px;margin-left:0px;}@media ( max-width: 1200px ) { .fl-node-5f18a26571191.fl-module > .fl-module-content {margin-top:0px;margin-bottom:30px;}}@media ( max-width: 1024px ) { .fl-node-5f18a26571191.fl-module > .fl-module-content {margin-top:0px;margin-bottom:30px;}}.labb-testimonials-slider {position: relative; }.labb-testimonials-slider.labb-container {max-width: 900px;margin: 0 auto; }.labb-testimonials-slider .labb-testimonial-text {text-align: center;max-width: 750px;margin: 0 auto 40px;font-size: 18px;line-height: 32px;font-style: italic;color: #666; }.labb-dark-bg .labb-testimonials-slider .labb-testimonial-text {color: #ccc; }.labb-testimonials-slider .labb-testimonial-text i {color: #ccc;font-size: 32px;display: block;margin-bottom: 35px;background: none;width: auto;height: auto; }.labb-dark-bg .labb-testimonials-slider .labb-testimonial-text i {color: #ddd; }.labb-testimonials-slider .labb-testimonial-user {display: table;margin: 0 auto; }.labb-testimonials-slider .labb-testimonial-user .labb-image-wrapper {display: table-cell; }.labb-testimonials-slider .labb-testimonial-user .labb-image-wrapper img {max-width: 64px;border-radius: 50%;padding-right: 15px; }.labb-testimonials-slider .labb-testimonial-user .labb-text {display: table-cell;vertical-align: middle;color: #888; }.labb-dark-bg .labb-testimonials-slider .labb-testimonial-user .labb-text {color: #909090; }.labb-testimonials-slider .labb-testimonial-user .labb-text .labb-author-name {font-size: 18px;line-height: 26px;letter-spacing: 1px;font-weight: bold;color: #333;text-transform: uppercase;clear: none;margin-top: 0;margin-bottom: 10px;font-size: 15px;line-height: 24px;margin-bottom: 5px; }.labb-dark-bg .labb-testimonials-slider .labb-testimonial-user .labb-text .labb-author-name {color: #e5e5e5; }.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-image-wrapper img {max-width: 212px;padding-right: 5px;}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-text i {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-text {font-style: none;}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-text:after {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-text .labb-author-name {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-text {}@media ( max-width: 1200px ) {.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-text {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-text .labb-author-name {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-text {}}@media ( max-width: 1024px ) {.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-text {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-text .labb-author-name {}.fl-node-5f188fb832d68 .labb-testimonials-slider .labb-testimonial-user .labb-text {}} .fl-node-5f188fb832d68 > .fl-module-content {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-node-5acc33f4ad935 .uabb-imgicon-wrap {text-align: center; }.fl-node-5acc33f4ad935 .uabb-icon-wrap .uabb-icon i,.fl-node-5acc33f4ad935 .uabb-icon-wrap .uabb-icon i:before {color: #0d8842;font-size: 30px;height: auto;width: auto;background: #fafafa;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;line-height:60px;height:60px;width:60px;text-align: center;border-style: solid;box-sizing:content-box;border-width: 2px;}.fl-node-5acc33f4ad935 .uabb-icon-wrap .uabb-icon i:before {background: none;}.fl-node-5acc33f4ad935 .uabb-icon-wrap .uabb-icon i:hover,.fl-node-5acc33f4ad935 .uabb-icon-wrap .uabb-icon i:hover:before {color: ;}.fl-node-5acc33f4ad935 .uabb-icon-wrap .uabb-icon i:hover:before {background: none;} .fl-node-5acc33f4ad935 > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-node-5df9d6d2947d1 .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d6d2947d1 .uabb-subheading {margin-top: 15px;margin-bottom: 0px;}.fl-node-5df9d6d2947d1 .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d6d2947d1 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d6d2947d1 .fl-module-content.fl-node-content .uabb-heading * {color:#ffffff;}.fl-node-5df9d6d2947d1 .uabb-heading .uabb-heading-text {}.fl-node-5df9d6d2947d1 .uabb-heading .uabb-heading-text {}.fl-node-5df9d6d2947d1 .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #ffffff;}.fl-node-5df9d6d2947d1 .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d6d2947d1 .uabb-image-outter-wrap {width: 50px;}@media ( max-width: 1200px ) {.fl-node-5df9d6d2947d1 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d6d2947d1 .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d6d2947d1 .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d6d2947d1 .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d6d2947d1 .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d6d2947d1 .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d6d2947d1 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d6d2947d1 .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d6d2947d1 .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d6d2947d1 .uabb-heading .uabb-heading-text {}.fl-node-5df9d6d2947d1 .uabb-heading,.fl-node-5df9d6d2947d1 .uabb-subheading,.fl-node-5df9d6d2947d1 .uabb-subheading * {text-align: center;}}.fl-node-5df9d79236591 .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d79236591 .uabb-subheading {margin-top: 15px;margin-bottom: 10px;}.fl-node-5df9d79236591 .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d79236591 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d79236591 .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5df9d79236591 .uabb-heading .uabb-heading-text {}.fl-node-5df9d79236591 .uabb-heading .uabb-heading-text {}.fl-node-5df9d79236591 .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5df9d79236591 .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d79236591 .uabb-image-outter-wrap {width: 50px;} .fl-node-5df9d79236591 .uabb-separator {border-top:2px solid #ffffff;width: 15%;display: inline-block;}@media ( max-width: 1200px ) {.fl-node-5df9d79236591 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d79236591 .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d79236591 .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d79236591 .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d79236591 .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d79236591 .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d79236591 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d79236591 .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d79236591 .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d79236591 .uabb-heading .uabb-heading-text {}.fl-node-5df9d79236591 .uabb-heading,.fl-node-5df9d79236591 .uabb-subheading,.fl-node-5df9d79236591 .uabb-subheading * {text-align: center;}}.fl-node-5df9d79236591 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text {font-weight: 700;font-size: 2rem;} .fl-node-5df9d79236591 > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:20px;margin-left:0px;}.njba-infobox-sub-main.njba-one {display: inline-block;width: 100%;}.njba-img-responsive {max-width: 100%;height: auto;display: block;}.njba-infobox-sub-main {display: inline-block;width: 100%;}.position_center {float: none;width: 100%;text-align: center;}.position_left {float: left;}.position_right {float: right;}.njba-icon-img img {padding-right: 10px !important;}.njba-icon-img-main .njba-icon-img {display: flex;justify-content: center;align-items: center;}.fl-node-5f0394cf4d683 .njba-icon-img { float: left; text-align: center;}.fl-node-5f0394cf4d683 .njba-icon-img {background: rgba(255,255,255, 1);}.fl-node-5f0394cf4d683 .njba-icon-img:hover {background: rgba(13,136,66, 1);}.fl-node-5f0394cf4d683 .njba-icon-img-main.njba-infobox-icon-set {width: 100%;}.fl-node-5f0394cf4d683 .njba-icon-img-main .njba-icon-img { font-size: 40px; line-height: 62px; height: 62px; width: 62px; text-align: center;}.fl-node-5f0394cf4d683 .njba-icon-img i { color: #01a0e3;transition: all 0.3s ease; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-node-5f0394cf4d683 .njba-icon-img:hover i { color: #ffffff;transition: all 0.3s ease;}@media ( max-width: 1200px ) {.fl-node-5f0394cf4d683 .njba-icon-img-main .njba-icon-img { font-size: 40px;line-height:35px;height:35px;width:35px;}}@media ( max-width: 1024px ) {.fl-node-5f0394cf4d683 .njba-icon-img-main .njba-icon-img { font-size: 40px;line-height:35px;height:35px;width:35px;}}.fl-node-5f0394cf4d683 .njba-infobox-sub-main {position: relative;}.fl-node-5f0394cf4d683 .njba-link-infobox-module {position: absolute;width: 100%;height: 100%;top: 0;left: 0;right: 0;bottom: 0;}.fl-node-5f0394cf4d683 .njba-link-infobox-module:hover ~ .njba-icon-img-main .njba-icon-img {transition: all 0.3s ease;border: #ffffff;background: rgba(13,136,66, 1);}.fl-node-5f0394cf4d683 .njba-link-infobox-module:hover ~ .njba-icon-img-main .njba-icon-img i { color: #ffffff;}.fl-node-5f0394cf4d683 .njba-icon-img { margin-right: 20px;}.fl-node-5f0394cf4d683 .njba-icon-img img {}.fl-node-5f0394cf4d683 .njba-infobox-sub-main .position_center {float: left;width: auto;}.fl-node-5f0394cf4d683 .njba-infobox-sub-main .position_left {float: left;width: auto;}.fl-node-5f0394cf4d683 .njba-infobox-sub-main .position_right {float: left;width: auto;}.fl-node-5f0394cf4d683 .njba-infobox-contant {overflow: hidden; text-align: left; padding-top: 7px; padding-bottom: 0px; padding-right: 0px; padding-left: 0px;}.fl-node-5f0394cf4d683 .njba-infobox-sub-main { background-color: #f1f1f1; padding-top: 0px; padding-bottom: 0px; padding-right: 0px; padding-left: 0px;}.fl-node-5f0394cf4d683 .njba-infobox-contant h5.heading_prefix {}.fl-node-5f0394cf4d683 .njba-infobox-contant h4.heading { margin-top: 0px; margin-bottom: 0px;}.fl-node-5f0394cf4d683 .njba-infobox-contant p {}.fl-node-5f0394cf4d683 .njba-infobox-contant .njba-infobox-link {}.fl-node-5f0394cf4d683 .njba-infobox-contant .njba-infobox-link:hover {}.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn { background-color: #dfdfdf;color: #404040; font-size: 18px;line-height: 18px; border-width: 1px;border-style: none;border-color: #000000;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;padding-top: 10px;padding-right: 15px;padding-bottom: 10px;padding-left: 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;transition: all ease 0.3s; display: inline-block;text-align: center; box-shadow: 0px 0px 0px 0px #ffffff;}.fl-node-5f0394cf4d683 .njba-btn-main { text-align: left;}.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn:hover { background-color: #000000;color: #ffffff;border-color: #000000;}.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn i { color: #000000;font-size: 18px;transition: all ease 0.3s;}.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn:hover i { color: #ffffff;}@media ( max-width: 991px ) {.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn { font-size: 16px;}.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn i { font-size: 16px;}}@media ( max-width: 767px ) {.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn {}.fl-node-5f0394cf4d683 .njba-btn-main a.njba-btn i {}}@media ( max-width: 1200px ) {.fl-node-5f0394cf4d683 .njba-infobox-contant h5.heading_prefix {}.fl-node-5f0394cf4d683 .njba-infobox-contant h4.heading {}.fl-node-5f0394cf4d683 .njba-infobox-contant p {}.fl-node-5f0394cf4d683 .njba-infobox-contant .njba-infobox-link {}}@media ( max-width: 1024px ) {.fl-node-5f0394cf4d683 .njba-infobox-contant h5.heading_prefix {}.fl-node-5f0394cf4d683 .njba-infobox-contant h4.heading {}.fl-node-5f0394cf4d683 .njba-infobox-contant p {}.fl-node-5f0394cf4d683 .njba-infobox-contant .njba-infobox-link {}} .fl-node-5f0394cf4d683 > .fl-module-content {margin-top:0%;margin-right:39%;margin-bottom:4%;margin-left:10%;}@media ( max-width: 1200px ) { .fl-node-5f0394cf4d683.fl-module > .fl-module-content {margin-right:175px;margin-bottom:0px;margin-left:20px;}}@media (max-width: 1024px) { .fl-node-5f0394cf4d683 > .fl-module-content { margin-right:20px; } }.fl-node-5df9d7310b841 .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5df9d7310b841 .uabb-subheading {margin-top: 15px;margin-bottom: 0px;}.fl-node-5df9d7310b841 .fl-module-content.fl-node-content .uabb-heading,.fl-node-5df9d7310b841 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5df9d7310b841 .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5df9d7310b841 .uabb-heading .uabb-heading-text {}.fl-node-5df9d7310b841 .uabb-heading .uabb-heading-text {}.fl-node-5df9d7310b841 .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5df9d7310b841 .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5df9d7310b841 .uabb-image-outter-wrap {width: 50px;}@media ( max-width: 1200px ) {.fl-node-5df9d7310b841 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d7310b841 .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5df9d7310b841 .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d7310b841 .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5df9d7310b841 .uabb-responsive-mobile .uabb-side-left,.fl-node-5df9d7310b841 .uabb-responsive-mobile .uabb-side-right,.fl-node-5df9d7310b841 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5df9d7310b841 .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5df9d7310b841 .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5df9d7310b841 .uabb-heading .uabb-heading-text {}.fl-node-5df9d7310b841 .uabb-heading,.fl-node-5df9d7310b841 .uabb-subheading,.fl-node-5df9d7310b841 .uabb-subheading * {text-align: center;}} .fl-node-5df9d7310b841 > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.njba-image-hover-box1 .njba-njba-box-dispay {width: 100%;height: 100%;display: table;}.njba-image-hover-name {font-family: 'open sans', sans-serif;font-weight: bold;font-size: 48px;padding-bottom: 50px;}.njba-col-xs-4 {width: 25%;float: left;}.njba-image-responsive {max-width: 100%;width: 100%;height: auto;display: block;transition: all 0.5s;}.njba-image-hover-box {width: 100%;transition: all 0.3s;margin: 30px 0;position: relative;}.njba-image-hover-col-xs-3 {width: 33.33%;float: left;padding: 0 15px;box-sizing: border-box;}.njba-image-hover-col-xs-5 {width: 33.33%;float: left;padding: 30px 30px 0 0;box-sizing: border-box;}.njba-image-hover-box1 {position: relative;}.njba-image-hover-border {bottom: 0;left: 0;position: absolute;right: 0;top: 0;display: inline-block;z-index: 1;}.njba-box-dispay {display: table;width: 100%;height: 100%;}.njba-box-dispay-two {vertical-align: middle;width: 100%;height: 100%;display: table-cell;padding: 0 25px;}.njba-image-hover-common {font-family: 'lato', serif;color: #FFFFFF;}.njba-image-hover-border h1 {opacity: 0;}.njba-image-hover-box1:hover .njba-image-hover-border h1 {opacity: 1;}.njba-image-hover-border h2 {opacity: 0;}.njba-image-hover-box1:hover .njba-image-hover-border h2 {opacity: 1;}.njba-image-hover-box2 {overflow: hidden;position: relative;}.njba-image-hover-box-three {position: absolute;left: 0;right: 0;top: 0;bottom: 0;}.njba-image-hover-box-three h1 {text-transform: uppercase;top: 100%;position: absolute;transform: translateY(-50%);right: 0;left: 0;}.njba-image-hover-box-three:hover {z-index: 1;}.njba-image-hover-box-three:hover.njba-image-hover-box-three h1 {top: 50%;}.njba-image-hover-box-four {position: relative;overflow: hidden;}.njba-interactive-img {position: relative;}.njba-image-hover-name-one {position: absolute;z-index: 2;right: 0;left: 0;opacity: 0;bottom: 100%;line-height: 2;}.njba-image-hover-name-two {position: absolute;z-index: 2;top: 100%;right: 0;left: 0;opacity: 0;line-height: 2;}.njba-image-hover-box-four:hover .njba-image-hover-name-two {top: 0;opacity: 1;}.njba-image-hover-box-four:hover .njba-image-hover-name-one {opacity: 1;bottom: 0;}.njba-image-hover-box-five {box-sizing: border-box;position: relative;}.njba-image-hover-box-five-one {position: absolute;width: 100%;height: 100%;}.njba-image-hover-box-five-one h1 {text-transform: uppercase;position: relative;top: 22px;margin: 0;}.njba-image-hover-box-five-one:hover.njba-image-hover-box-five-one h1 {top: 0;}.njba-image-hover-box-five-one h2 {position: absolut;left: 0;right: 0;opacity: 0;margin: 0;}.njba-image-hover-box-five-one:hover.njba-image-hover-box-five-one h2 {opacity: 1;}.njba-image-hover-box-six {position: relative;overflow: hidden;}.njba-image-hover-box-six-one {position: absolute;left: 0;right: 0;top: 100%;bottom: 0;}.njba-image-hover-box-six:hover .njba-image-hover-box-six-one {top: 0;}.njba-image-hover-box-six-one h1 {margin: 0;left: 0;opacity: 1;}.njba-image-hover-box-six-one:hover.njba-image-hover-box-six-one h1 {opacity: 1;}.njba-image-hover-box-six-one:hover.njba-image-hover-box-six-one h2 {opacity: 1;}.njba-image-hover-box-six-one h2 {margin: 0;font-weight: normal;left: 0;opacity: 1;}.njba-box-dispay-three {vertical-align: middle; width: 100%;height: 100%;display: table-cell;}@media (max-width: 1170px) {.njba-image-hover-border1 h1 {font-size: 25px;}.njba-image-hover-border h1 {font-size: 25px;}.njba-image-hover-overrlay-one h1 {font-size: 40px;}.njba-image-hover-overrlay-one h2 {font-size: 18px;}.njba-image-hover-overrlay-one p {font-size: 15px;}.njba-image-hover-overrlay-two h1 {font-size: 40px;}.njba-image-hover-overrlay-two h2 {font-size: 18px;}.njba-image-hover-overrlay-two p {font-size: 15px;}.njba-image-hover-overrlay-three h1 {font-size: 40px;}.njba-image-hover-overrlay-three h2 {font-size: 18px;}.njba-image-hover-overrlay-three p {font-size: 15px;}.njba-image-hover-overrlay-four h1 {font-size: 40px;}.njba-image-hover-overrlay-four h2 {font-size: 18px;}.njba-image-hover-overrlay-four p {font-size: 15px;}.njba-image-hover-border h2 {font-size: 14px;}}@media (max-width: 991px) {.njba-col-xs-4 {width: 50%;}.njba-image-hover-col-xs-5 {width: 50%;}.njba-image-hover-border1 h1 {font-size: 16px;}.njba-image-hover-border1 h2 {font-size: 10px;}.njba-image-hover-border h1 {font-size: 16px;}.njba-image-hover-border h2 {font-size: 10px;}}@media (max-width: 767px) {.njba-col-xs-4 {width: 100%;}.njba-image-hover-col-xs-5 {width: 100%;}.njba-image-hover-col-xs-3 {width: 100%;}.layout-3 .njba-col-xs-4 {width: 100%;padding: 0 30px;}.layout-2 .njba-col-xs-4 {width: 100%;padding: 0 30px;}.layout-3 .njba-col-xs-4 {width: 100%;padding: 0 30px;}.njba-image-hover-border h1 {font-size: 18px;}.njba-image-hover-border h2 {font-size: 12px;}.njba-image-hover-border1 h1 {font-size: 18px;}.njba-image-hover-border1 h2 {font-size: 12px;}.njba-image-hover-overrlay-one h1 {font-size: 45px;}.njba-image-hover-overrlay-one h2 {font-size: 22px;}.njba-image-hover-overrlay-one p {font-size: 18px;}.njba-image-hover-box-three h1 {font-size: 18px;}.njba-image-hover-name-one {font-size: 20px;}.njba-image-hover-name-two {font-size: 15px;}}.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h1 {font-size: 22px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h2 {font-size: 18px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efbafb1b399d .njba-image-hover-box-six { border-color: #000000;border-width: 1px;border-style: none;transition: all ease 0.5s;}.fl-node-5efbafb1b399d .njba-image-hover-box-six { border-color: #000000;}.fl-node-5efbafb1b399d .njba-image-hover-box-six:hover { transition: all ease 0.5s;border-color: #a0a0a0 ; box-shadow: 0px 0px 0px 0px #000000;}.fl-node-5efbafb1b399d .njba-image-hover-box-six:hover .njba-image-hover-box-six-one { transition: all ease 0.5s;background-color: rgba(0,0,0, 0.5);}.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h1.caption-selector { padding-top: 30px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h2.sub-caption-selector { padding-top: 15px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}@media only screen and (max-width: 991px) {.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h1 { font-size: 20px;}.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h2 {}}@media only screen and (max-width: 767px) {.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h1 { font-size: 16px;}.fl-node-5efbafb1b399d .njba-image-hover-box-six-one h2 {}} .fl-node-5efbafb1b399d > .fl-module-content {margin-top:62px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (max-width: 1024px) { .fl-node-5efbafb1b399d > .fl-module-content { margin-top: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);}}.fl-node-5ef518c8a2f28 .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5ef518c8a2f28 .uabb-subheading {margin-top: 15px;margin-bottom: 0px;}.fl-node-5ef518c8a2f28 .fl-module-content.fl-node-content .uabb-heading,.fl-node-5ef518c8a2f28 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5ef518c8a2f28 .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5ef518c8a2f28 .uabb-heading .uabb-heading-text {}.fl-node-5ef518c8a2f28 .uabb-heading .uabb-heading-text {}.fl-node-5ef518c8a2f28 .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5ef518c8a2f28 .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5ef518c8a2f28 .uabb-image-outter-wrap {width: 50px;}@media ( max-width: 1200px ) {.fl-node-5ef518c8a2f28 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5ef518c8a2f28 .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5ef518c8a2f28 .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5ef518c8a2f28 .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5ef518c8a2f28 .uabb-responsive-mobile .uabb-side-left,.fl-node-5ef518c8a2f28 .uabb-responsive-mobile .uabb-side-right,.fl-node-5ef518c8a2f28 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5ef518c8a2f28 .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5ef518c8a2f28 .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5ef518c8a2f28 .uabb-heading .uabb-heading-text {}.fl-node-5ef518c8a2f28 .uabb-heading,.fl-node-5ef518c8a2f28 .uabb-subheading,.fl-node-5ef518c8a2f28 .uabb-subheading * {text-align: center;}} .fl-node-5ef518c8a2f28 > .fl-module-content {margin-top:20px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-node-5ef519d822fde .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5ef519d822fde .uabb-subheading {margin-top: 15px;margin-bottom: 0px;}.fl-node-5ef519d822fde .fl-module-content.fl-node-content .uabb-heading,.fl-node-5ef519d822fde .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5ef519d822fde .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5ef519d822fde .uabb-heading .uabb-heading-text {}.fl-node-5ef519d822fde .uabb-heading .uabb-heading-text {}.fl-node-5ef519d822fde .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5ef519d822fde .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5ef519d822fde .uabb-image-outter-wrap {width: 50px;}@media ( max-width: 1200px ) {.fl-node-5ef519d822fde .uabb-responsive-medsmall .uabb-side-left,.fl-node-5ef519d822fde .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5ef519d822fde .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5ef519d822fde .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5ef519d822fde .uabb-responsive-mobile .uabb-side-left,.fl-node-5ef519d822fde .uabb-responsive-mobile .uabb-side-right,.fl-node-5ef519d822fde .uabb-responsive-medsmall .uabb-side-left,.fl-node-5ef519d822fde .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5ef519d822fde .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5ef519d822fde .uabb-heading .uabb-heading-text {}.fl-node-5ef519d822fde .uabb-heading,.fl-node-5ef519d822fde .uabb-subheading,.fl-node-5ef519d822fde .uabb-subheading * {text-align: center;}} .fl-node-5ef519d822fde > .fl-module-content {margin-top:10px;margin-right:0px;margin-bottom:0px;margin-left:0px;}.fl-node-5ef51b6a566c8 .uabb-heading {margin-top: 0px;margin-bottom: 15px;}.fl-node-5ef51b6a566c8 .uabb-subheading {margin-top: 15px;margin-bottom: 0px;}.fl-node-5ef51b6a566c8 .fl-module-content.fl-node-content .uabb-heading,.fl-node-5ef51b6a566c8 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,.fl-node-5ef51b6a566c8 .fl-module-content.fl-node-content .uabb-heading * {}.fl-node-5ef51b6a566c8 .uabb-heading .uabb-heading-text {}.fl-node-5ef51b6a566c8 .uabb-heading .uabb-heading-text {}.fl-node-5ef51b6a566c8 .fl-module-content.fl-node-content .uabb-module-content .uabb-text-editor {color: #464646;}.fl-node-5ef51b6a566c8 .uabb-separator-parent {line-height: 0;text-align: center;}.fl-node-5ef51b6a566c8 .uabb-image-outter-wrap {width: 50px;}@media ( max-width: 1200px ) {.fl-node-5ef51b6a566c8 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5ef51b6a566c8 .uabb-responsive-medsmall .uabb-side-right {width: 20%;}.fl-node-5ef51b6a566c8 .uabb-responsive-medsmall .uabb-divider-content h3 {white-space: normal;}.fl-node-5ef51b6a566c8 .uabb-heading .uabb-heading-text {}}@media ( max-width: 1024px ) {.fl-node-5ef51b6a566c8 .uabb-responsive-mobile .uabb-side-left,.fl-node-5ef51b6a566c8 .uabb-responsive-mobile .uabb-side-right,.fl-node-5ef51b6a566c8 .uabb-responsive-medsmall .uabb-side-left,.fl-node-5ef51b6a566c8 .uabb-responsive-medsmall .uabb-side-right {width: 10%;}.fl-node-5ef51b6a566c8 .uabb-responsive-mobile .uabb-divider-content h3 {white-space: normal;}.fl-node-5ef51b6a566c8 .uabb-heading .uabb-heading-text {}.fl-node-5ef51b6a566c8 .uabb-heading,.fl-node-5ef51b6a566c8 .uabb-subheading,.fl-node-5ef51b6a566c8 .uabb-subheading * {text-align: center;}} .fl-node-5ef51b6a566c8 > .fl-module-content {margin-top:0px;margin-bottom:0px;}.fl-node-5efba69bec828 .njba-image-hover-box-six-one h1 {font-size: 22px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efba69bec828 .njba-image-hover-box-six-one h2 {font-size: 18px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efba69bec828 .njba-image-hover-box-six { border-color: #000000;border-width: 1px;border-style: none;transition: all ease 0.5s;}.fl-node-5efba69bec828 .njba-image-hover-box-six { border-color: #000000;}.fl-node-5efba69bec828 .njba-image-hover-box-six:hover { transition: all ease 0.5s;border-color: #a0a0a0 ; box-shadow: 0px 0px 0px 0px #000000;}.fl-node-5efba69bec828 .njba-image-hover-box-six:hover .njba-image-hover-box-six-one { transition: all ease 0.5s;background-color: rgba(0,0,0, 0.5);}.fl-node-5efba69bec828 .njba-image-hover-box-six-one h1.caption-selector { padding-top: 30px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}.fl-node-5efba69bec828 .njba-image-hover-box-six-one h2.sub-caption-selector { padding-top: 15px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}@media only screen and (max-width: 991px) {.fl-node-5efba69bec828 .njba-image-hover-box-six-one h1 { font-size: 20px;}.fl-node-5efba69bec828 .njba-image-hover-box-six-one h2 {}}@media only screen and (max-width: 767px) {.fl-node-5efba69bec828 .njba-image-hover-box-six-one h1 { font-size: 16px;}.fl-node-5efba69bec828 .njba-image-hover-box-six-one h2 {}} .fl-node-5efba69bec828 > .fl-module-content {margin-top:62px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (max-width: 1024px) { .fl-node-5efba69bec828 > .fl-module-content { margin-top:20px; } }.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h1 {font-size: 22px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h2 {font-size: 18px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efbaf667da6e .njba-image-hover-box-six { border-color: #000000;border-width: 1px;border-style: none;transition: all ease 0.5s;}.fl-node-5efbaf667da6e .njba-image-hover-box-six { border-color: #000000;}.fl-node-5efbaf667da6e .njba-image-hover-box-six:hover { transition: all ease 0.5s;border-color: #a0a0a0 ; box-shadow: 0px 0px 0px 0px #000000;}.fl-node-5efbaf667da6e .njba-image-hover-box-six:hover .njba-image-hover-box-six-one { transition: all ease 0.5s;background-color: rgba(0,0,0, 0.5);}.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h1.caption-selector { padding-top: 30px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h2.sub-caption-selector { padding-top: 15px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}@media only screen and (max-width: 991px) {.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h1 { font-size: 20px;}.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h2 {}}@media only screen and (max-width: 767px) {.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h1 { font-size: 16px;}.fl-node-5efbaf667da6e .njba-image-hover-box-six-one h2 {}} .fl-node-5efbaf667da6e > .fl-module-content {margin-top:62px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (max-width: 1024px) { .fl-node-5efbaf667da6e > .fl-module-content { margin-top:20px; } }.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h1 {font-size: 22px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h2 {font-size: 18px;color: #ffffff; text-align: center;padding: 0; transition: all ease 0.5s;}.fl-node-5efbafa50df25 .njba-image-hover-box-six { border-color: #000000;border-width: 1px;border-style: none;transition: all ease 0.5s;}.fl-node-5efbafa50df25 .njba-image-hover-box-six { border-color: #000000;}.fl-node-5efbafa50df25 .njba-image-hover-box-six:hover { transition: all ease 0.5s;border-color: #a0a0a0 ; box-shadow: 0px 0px 0px 0px #000000;}.fl-node-5efbafa50df25 .njba-image-hover-box-six:hover .njba-image-hover-box-six-one { transition: all ease 0.5s;background-color: rgba(0,0,0, 0.5);}.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h1.caption-selector { padding-top: 30px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h2.sub-caption-selector { padding-top: 15px;padding-right: 15px;padding-bottom: 15px;padding-left: 15px;}@media only screen and (max-width: 991px) {.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h1 { font-size: 20px;}.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h2 {}}@media only screen and (max-width: 767px) {.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h1 { font-size: 16px;}.fl-node-5efbafa50df25 .njba-image-hover-box-six-one h2 {}} .fl-node-5efbafa50df25 > .fl-module-content {margin-top:62px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (max-width: 1024px) { .fl-node-5efbafa50df25 > .fl-module-content { margin-top:20px; } }.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {-webkit-justify-content: flex-end;justify-content: flex-end;-webkit-box-align: end; -webkit-box-pack: end;-ms-flex-pack: end;}.uabb-module-content h1,.uabb-module-content h2,.uabb-module-content h3,.uabb-module-content h4,.uabb-module-content h5,.uabb-module-content h6 {margin: 0;clear: both;}.fl-module-content a,.fl-module-content a:hover,.fl-module-content a:focus {text-decoration: none;}.uabb-row-separator {position: absolute;width: 100%;left: 0;z-index: 1}.uabb-top-row-separator {top: -1px;bottom: auto}.uabb-bottom-row-separator {top: auto;bottom: -1px}.uabb-top-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 0;top: -1px;bottom: auto;width: 100%;}.uabb-bottom-row-separator.uabb-has-svg svg {position: absolute;padding: 0;margin: 0;left: 0;bottom: -1px;top: auto;width: 100%;}.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-bottom-row-separator.uabb-xlarge-circle svg,.uabb-top-row-separator.uabb-wave-separator svg {-webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.uabb-top-row-separator.uabb-xlarge-triangle-right svg {-webkit-transform: scale(-1); -moz-transform: scale(-1);-ms-transform: scale(-1); -o-transform: scale(-1);transform: scale(-1);}.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {-webkit-transform: scaleX(-1); -moz-transform: scaleX(-1);-ms-transform: scaleX(-1); -o-transform: scaleX(-1);transform: scaleX(-1);}.uabb-top-row-separator.uabb-curve-up-separator svg { -webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.uabb-top-row-separator.uabb-curve-down-separator svg {-webkit-transform: scale(-1); -moz-transform: scale(-1);-ms-transform: scale(-1); -o-transform: scale(-1);transform: scale(-1);}.uabb-bottom-row-separator.uabb-curve-down-separator svg {-webkit-transform: scaleX(-1); -moz-transform: scaleX(-1);-ms-transform: scaleX(-1); -o-transform: scaleX(-1);transform: scaleX(-1);}.uabb-top-row-separator.uabb-tilt-left-separator svg {-webkit-transform: scale(-1); -moz-transform: scale(-1);-ms-transform: scale(-1); -o-transform: scale(-1);transform: scale(-1);}.uabb-top-row-separator.uabb-tilt-right-separator svg{-webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.uabb-bottom-row-separator.uabb-tilt-right-separator svg {-webkit-transform: scaleX(-1); -moz-transform: scaleX(-1);-ms-transform: scaleX(-1); -o-transform: scaleX(-1);transform: scaleX(-1);}.uabb-row-separator.uabb-cloud-separator svg {left: -1px;width: 100%;}.uabb-top-row-separator.uabb-cloud-separator svg,.uabb-top-row-separator.uabb-multi-triangle svg {-webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.uabb-row-separator.uabb-round-split {z-index: 1;}.uabb-row-separator.uabb-round-split:after,.uabb-row-separator.uabb-round-split:before {left: 0;z-index: 10;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;}.uabb-button-wrap a *,.uabb-button-wrap a:visited * {}.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;}.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.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, .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, .uabb-adv-accordion-content .mejs-overlay.load {width: 100% !important;height: 100% !important;}.uabb-tab-acc-content .mejs-container,.uabb-adv-accordion-content .mejs-container {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-mediaelement,.uabb-adv-accordion-content .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;}.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: 1200px) {#uabb-js-breakpoint {content:"1200";}}@media screen and (max-width: 1024px) {#uabb-js-breakpoint {content:"1024";}}.njba-btn-main a.njba-btn{text-decoration: none;position: relative;}.njba-btn-main a:hover, .njba-btn-main a:active, .njba-btn-main a:focus{text-decoration: none;}.njba-btn-main a:active, .njba-btn-main a:focus{outline: none;}.njba-btn-main a.njba-btn:before {position: absolute;z-index: -1;top: 0;left: 0;right: 0;bottom: 0;-webkit-transition-property: transform;-moz-transition-property: transform;-o-transition-property: transform;-ms-transition-property: transform;transition-property: transform;-webkit-transition-timing-function: ease-out;-moz-transition-timing-function: ease-out;-o-transition-timing-function: ease-out;-ms-transition-timing-function: ease-out;transition-timing-function: ease-out;}.njba-row-separator {position: absolute;width: 100%;left: 0;z-index: 1}.njba-top-row-separator {top: -1px;bottom: auto}.njba-bottom-row-separator {top: auto;bottom: -1px}.njba-top-row-separator.njba-has-svg svg {position: absolute;padding: 0;margin: 0;left: 0;top: -1px;bottom: auto;width: 100%;}.njba-bottom-row-separator.njba-has-svg svg {position: absolute;padding: 0;margin: 0;left: 0;bottom: -1px;top: auto;width: 100%;}.njba-bottom-row-separator.njba-has-svg .uasvg-wave-separator {bottom: 0;}.njba-top-row-separator.njba-has-svg .uasvg-wave-separator {top: 0;}.njba-bottom-row-separator.njba-svg-triangle svg,.njba-bottom-row-separator.njba-xlarge-triangle svg,.njba-top-row-separator.njba-xlarge-triangle-left svg,.njba-bottom-row-separator.njba-svg-circle svg,.njba-bottom-row-separator.njba-xlarge-circle svg,.njba-top-row-separator.njba-wave-separator svg {-webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.njba-top-row-separator.njba-xlarge-triangle-right svg {-webkit-transform: scale(-1); -moz-transform: scale(-1);-ms-transform: scale(-1); -o-transform: scale(-1);transform: scale(-1);}.njba-bottom-row-separator.njba-xlarge-triangle-right svg {-webkit-transform: scaleX(-1); -moz-transform: scaleX(-1);-ms-transform: scaleX(-1); -o-transform: scaleX(-1);transform: scaleX(-1);}.njba-top-row-separator.njba-curve-up-separator svg { -webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.njba-top-row-separator.njba-curve-down-separator svg {-webkit-transform: scale(-1); -moz-transform: scale(-1);-ms-transform: scale(-1); -o-transform: scale(-1);transform: scale(-1);}.njba-bottom-row-separator.njba-curve-down-separator svg {-webkit-transform: scaleX(-1); -moz-transform: scaleX(-1);-ms-transform: scaleX(-1); -o-transform: scaleX(-1);transform: scaleX(-1);}.njba-top-row-separator.njba-tilt-left-separator svg {-webkit-transform: scale(-1); -moz-transform: scale(-1);-ms-transform: scale(-1); -o-transform: scale(-1);transform: scale(-1);}.njba-top-row-separator.njba-tilt-right-separator svg{-webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.njba-bottom-row-separator.njba-tilt-right-separator svg {-webkit-transform: scaleX(-1); -moz-transform: scaleX(-1);-ms-transform: scaleX(-1); -o-transform: scaleX(-1);transform: scaleX(-1);}.njba-row-separator.njba-cloud-separator svg {left: -1px;width: 100%;}.njba-top-row-separator.njba-cloud-separator svg,.njba-top-row-separator.njba-multi-triangle svg {-webkit-transform: scaleY(-1); -moz-transform: scaleY(-1);-ms-transform: scaleY(-1); -o-transform: scaleY(-1);transform: scaleY(-1);}.njba-row-separator.njba-round-split {z-index: 1;}.njba-row-separator.njba-round-split:after,.njba-row-separator.njba-round-split:before {left: 0;z-index: 10;width: 50%;background: inherit;content: '';position: absolute}.fl-builder-settings-fields input[type=date], .fl-builder-settings-fields input[type=email],.fl-builder-settings-fields input[type=file], .fl-builder-settings-fields input[type=number],.fl-builder-settings-fields input[type=password], .fl-builder-settings-fields input[type=search],.fl-builder-settings-fields input[type=tel], .fl-builder-settings-fields input[type=text],.fl-builder-settings-fields input[type=url], .fl-builder-settings-fields select:not(multiple) {line-height: initial;font-weight: normal;}#cookie-law-info-bar {
font-size: 15px;
margin: 0 auto;
padding: 12px 10px;
position: absolute;
text-align: center;
box-sizing: border-box;
width:100%;
z-index: 9999; display: none;
left:0px;
font-weight:300;
box-shadow: 0 -1px 10px 0 rgba(172, 171, 171, 0.3);
}
#cookie-law-info-again {
font-size: 10pt;
margin: 0;
padding:5px 10px;
text-align: center;
z-index: 9999;
cursor: pointer;
box-shadow: #161616 2px 2px 5px 2px;
}
#cookie-law-info-bar span {
vertical-align: middle;
} .cli-plugin-button, .cli-plugin-button:visited {
display: inline-block;
padding: 9px 12px;
color: #fff;
text-decoration: none;
position: relative;
cursor: pointer;
margin-left: 5px;
text-decoration: none;
}
.cli-plugin-main-link {
margin-left:0px;
font-weight: 550; text-decoration: underline;
}
.cli-plugin-button:hover {
background-color: #111;
color: #fff;
text-decoration: none;
}
.small.cli-plugin-button, .small.cli-plugin-button:visited {
font-size: 11px;
}
.cli-plugin-button, .cli-plugin-button:visited,
.medium.cli-plugin-button, .medium.cli-plugin-button:visited {
font-size: 13px;
font-weight: 400;
line-height: 1;
}
.large.cli-plugin-button, .large.cli-plugin-button:visited {
font-size: 14px;
padding: 8px 14px 9px;
}
.super.cli-plugin-button, .super.cli-plugin-button:visited {
font-size: 34px;
padding: 8px 14px 9px;
}
.pink.cli-plugin-button, .magenta.cli-plugin-button:visited {
background-color: #e22092;
}
.pink.cli-plugin-button:hover {
background-color: #c81e82;
}
.green.cli-plugin-button, .green.cli-plugin-button:visited {
background-color: #91bd09;
}
.green.cli-plugin-button:hover {
background-color: #749a02;
}
.red.cli-plugin-button, .red.cli-plugin-button:visited {
background-color: #e62727;
}
.red.cli-plugin-button:hover {
background-color: #cf2525;
}
.orange.cli-plugin-button, .orange.cli-plugin-button:visited {
background-color: #ff5c00;
}
.orange.cli-plugin-button:hover {
background-color: #d45500;
}
.blue.cli-plugin-button, .blue.cli-plugin-button:visited {
background-color: #2981e4;
}
.blue.cli-plugin-button:hover {
background-color: #2575cf;
}
.yellow.cli-plugin-button, .yellow.cli-plugin-button:visited {
background-color: #ffb515;
}
.yellow.cli-plugin-button:hover {
background-color: #fc9200;
}
.cli-plugin-button{ margin-top:5px; }
.cli-bar-popup{
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
-webkit-border-radius:30px;
-moz-border-radius:30px;
border-radius:30px;
padding:20px;
}
.cli-powered_by_p{width:100% !important; display:block !important; color:#333; clear:both; font-style:italic !important; font-size:12px !important; margin-top:15px !important; }
.cli-powered_by_a{color:#333; font-weight:600 !important; font-size:12px !important;} .cli-plugin-main-link.cli-plugin-button {
text-decoration: none;
}
.cli-plugin-main-link.cli-plugin-button {
margin-left: 5px;
}.gdpr-container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.gdpr-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.gdpr-col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.gdpr-col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.gdpr-align-items-stretch {
-ms-flex-align: stretch!important;
align-items: stretch!important;
}
.gdpr-d-flex {
display: -ms-flexbox!important;
display: flex!important;
}
.gdpr-px-0 {
padding-left: 0;
padding-right: 0;
}
.modal-backdrop.show {
opacity: .8;
}
.modal-open {
overflow: hidden
}
.modal-open .gdpr-modal {
overflow-x: hidden;
overflow-y: auto
}
.gdpr-modal.fade .gdpr-modal-dialog {
transition: -webkit-transform .3s ease-out;
transition: transform .3s ease-out;
transition: transform .3s ease-out,-webkit-transform .3s ease-out;
-webkit-transform: translate(0,-25%);
transform: translate(0,-25%)
}
.gdpr-modal.show .gdpr-modal-dialog {
-webkit-transform: translate(0,0);
transform: translate(0,0)
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1039;
background-color: #000
}
.modal-backdrop.fade {
opacity: 0
}
.modal-backdrop.show {
opacity: .5
}
.gdpr-modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
display: none;
overflow: hidden;
outline: 0
}
.gdpr-modal a {
text-decoration: none;
}
.gdpr-modal .gdpr-modal-dialog {
position: relative;
width: auto;
margin: .5rem;
pointer-events: none;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - (.5rem * 2))
}
@media (min-width: 576px) {
.gdpr-modal .gdpr-modal-dialog {
max-width:500px;
margin: 1.75rem auto;
min-height: calc(100% - (1.75rem * 2));
}
}
@media (min-width: 992px) {
.gdpr-modal .gdpr-modal-dialog {
max-width: 900px;
}
}
.gdpr-modal-content {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0,0,0,.2);
border-radius: .3rem;
outline: 0
}
.gdpr-modal .row {
margin: 0 -15px;
}
.gdpr-modal .modal-body {
padding: 0;
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.gdpr-modal .close {
position: absolute;
right: 10px;
top: 10px;
z-index: 1;
padding: 0;
background-color: transparent;
border: 0;
-webkit-appearance: none;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
}
.gdpr-modal .close:focus {
outline: 0;
}
.gdpr-switch {
display: inline-block;
position: relative;
min-height: 1px;
padding-left: 70px;
font-size: 14px;
}
.gdpr-switch input[type="checkbox"] {
display:none;
}
.gdpr-switch .gdpr-slider {
background-color: #e3e1e8;
height: 24px;
width: 50px;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
}
.gdpr-switch .gdpr-slider:before {
background-color: #fff;
bottom: 2px;
content: "";
height: 20px;
left: 2px;
position: absolute;
transition: .4s;
width: 20px;
}
.gdpr-switch input:checked + .gdpr-slider {
background-color:rgb(99, 179, 95);
}
.gdpr-switch input:checked + .gdpr-slider:before {
transform: translateX(26px);
}
.gdpr-switch .gdpr-slider {
border-radius: 34px;
}
.gdpr-switch .gdpr-slider:before {
border-radius: 50%;
}
.gdpr-tab-content>.gdpr-tab-pane {
display: none;
}
.gdpr-tab-content>.active {
display: block;
}
.gdpr-fade {
transition: opacity .15s linear;
}
.gdpr-nav-pills {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
-ms-flex-direction: column !important;
flex-direction: column !important;
align-items: stretch !important;
-ms-align-items: stretch !important;
}
.nav.gdpr-nav-pills, .gdpr-tab-content {
width: 100%;
padding: 30px;
}
.nav.gdpr-nav-pills {
background: #f3f3f3;
}
.nav.gdpr-nav-pills .gdpr-nav-link {
border: 1px solid #0070ad;
margin-bottom: 10px;
color: #0070ad;
font-size: 14px;
display: block;
padding: .5rem 1rem;
border-radius: .25rem;
}
.nav.gdpr-nav-pills .gdpr-nav-link.active, .nav.gdpr-nav-pills .show>.gdpr-nav-link {
background-color: #0070ad;
border: 1px solid #0070ad;
}
.nav.gdpr-nav-pills .gdpr-nav-link.active {
color: #ffffff;
}
.gdpr-tab-content .gdpr-button-wrapper {
padding-top: 30px;
margin-top: 30px;
border-top: 1px solid #d6d6d6;
}
.gdpr-tab-content .gdpr-button-wrapper .btn-gdpr {
background-color: #0070ad;
border-color: #0070ad;
color: #ffffff;
font-size: 14px;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.gdpr-tab-content p {
color: #343438;
font-size: 14px;
margin-top: 0;
}
.gdpr-tab-content h4 {
font-size: 20px;
margin-bottom: .5rem;
margin-top: 0;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
color: inherit;
}
.cli-container-fluid {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.cli-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.cli-col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.cli-col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.cli-align-items-stretch {
-ms-flex-align: stretch!important;
align-items: stretch!important;
}
.cli-d-flex {
display: -ms-flexbox!important;
display: flex!important;
}
.cli-px-0 {
padding-left: 0;
padding-right: 0;
}
.cli-btn {
cursor: pointer;
font-size: 14px;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .5rem 1.25rem;
line-height: 1;
border-radius: .25rem;
transition: all .15s ease-in-out;
}
.cli-btn:hover {
opacity: .8;
}
.cli-read-more-link {
cursor: pointer;
font-size: 15px;
font-weight: 500;
text-decoration: underline;
}
.cli-btn:focus {
outline: 0;
}
.cli-modal-backdrop.cli-show {
opacity: .8;
}
.cli-modal-open {
overflow: hidden
}
.cli-barmodal-open {
overflow: hidden
}
.cli-modal-open .cli-modal {
overflow-x: hidden;
overflow-y: auto
}
.cli-modal.cli-fade .cli-modal-dialog {
transition: -webkit-transform .3s ease-out;
transition: transform .3s ease-out;
transition: transform .3s ease-out,-webkit-transform .3s ease-out;
-webkit-transform: translate(0,-25%);
transform: translate(0,-25%)
}
.cli-modal.cli-show .cli-modal-dialog {
-webkit-transform: translate(0,0);
transform: translate(0,0)
}
.cli-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
display: none;
}
.cli-modal-backdrop.cli-fade {
opacity: 0
}
.cli-modal-backdrop.cli-show {
opacity: .5;
display: block;
}
.cli-modal.cli-show {
display: block;
}
.cli-modal a {
text-decoration: none;
}
.cli-modal .cli-modal-dialog {
position: relative;
width: auto;
margin: .5rem;
pointer-events: none;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - (.5rem * 2))
}
@media (min-width: 576px) {
.cli-modal .cli-modal-dialog {
max-width:500px;
margin: 1.75rem auto;
min-height: calc(100% - (1.75rem * 2))
}
}
@media (min-width: 992px) {
.cli-modal .cli-modal-dialog {
max-width: 900px;
}
}
.cli-modal-content {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border-radius: .3rem;
outline: 0
}
.cli-modal .row {
margin: 0 -15px;
}
.cli-modal .modal-body {
padding: 0;
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.cli-modal .cli-modal-close {
position: absolute;
right: 10px;
top: 10px;
z-index: 1;
padding: 0;
background-color: transparent !important;
border: 0;
-webkit-appearance: none;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
}
.cli-modal .cli-modal-close:focus {
outline: 0;
}
.cli-switch {
display: inline-block;
position: relative;
min-height: 1px;
padding-left: 70px;
font-size: 14px;
}
.cli-switch input[type="checkbox"] {
display:none;
}
.cli-switch .cli-slider {
background-color: #e3e1e8;
height: 24px;
width: 50px;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
}
.cli-switch .cli-slider:before {
background-color: #fff;
bottom: 2px;
content: "";
height: 20px;
left: 2px;
position: absolute;
transition: .4s;
width: 20px;
}
.cli-switch input:checked + .cli-slider {
background-color: #00acad
}
.cli-switch input:checked + .cli-slider:before {
transform: translateX(26px);
}
.cli-switch .cli-slider {
border-radius: 34px;
}
.cli-switch .cli-slider:before {
border-radius: 50%;
}
.cli-tab-content {
background: #ffffff;
}
.cli-tab-content>.cli-active {
display: block;
}
.cli-fade {
transition: opacity .15s linear;
}
.cli-nav-pills {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
-ms-flex-direction: column;
flex-direction: column;
}
.cli-nav-pills, .cli-tab-content {
width: 100%;
padding: 30px;
}
@media (max-width: 767px) {
.cli-nav-pills, .cli-tab-content {
padding: 30px 10px;
}
}
.cli-nav-pills {
background: #f3f3f3;
}
.cli-nav-pills .cli-nav-link {
border: 1px solid #00acad;
margin-bottom: 10px;
color: #00acad;
font-size: 14px;
display: block;
padding: .5rem 1rem;
border-radius: .25rem;
cursor: pointer
}
.cli-nav-pills .cli-nav-link.cli-active, .cli-nav-pills .cli-show>.cli-nav-link {
background-color: #00acad;
border: 1px solid #00acad;
}
.cli-nav-pills .cli-nav-link.cli-active {
color: #ffffff;
}
.cli-tab-content .cli-button-wrapper {
padding-top: 30px;
margin-top: 30px;
border-top: 1px solid #d6d6d6;
}
.cli-tab-content p {
color: #343438;
font-size: 14px;
margin-top: 0;
}
.cli-tab-content h4 {
font-size: 20px;
margin-bottom: 1.5rem;
margin-top: 0;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
color: inherit;
} .cli-container-fluid {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.cli-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.cli-col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.cli-col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
flex-direction: column;
}
.cli-align-items-stretch {
-ms-flex-align: stretch!important;
align-items: stretch!important;
}
.cli-d-flex {
display: -ms-flexbox!important;
display: flex!important;
}
.cli-px-0 {
padding-left: 0;
padding-right: 0;
}
.cli-btn {
cursor: pointer;
font-size: 14px;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .5rem 1.25rem;
line-height: 1;
border-radius: .25rem;
transition: all .15s ease-in-out;
}
.cli-btn:hover {
opacity: .8;
}
.cli-read-more-link {
cursor: pointer;
font-size: 15px;
font-weight: 500;
text-decoration: underline;
}
.cli-btn:focus {
outline: 0;
}
.cli-modal-backdrop.cli-show {
opacity: .8;
}
.cli-modal-open {
overflow: hidden
}
.cli-barmodal-open {
overflow: hidden
}
.cli-modal-open .cli-modal {
overflow-x: hidden;
overflow-y: auto
}
.cli-modal.cli-fade .cli-modal-dialog {
transition: -webkit-transform .3s ease-out;
transition: transform .3s ease-out;
transition: transform .3s ease-out,-webkit-transform .3s ease-out;
-webkit-transform: translate(0,-25%);
transform: translate(0,-25%)
}
.cli-modal.cli-show .cli-modal-dialog {
-webkit-transform: translate(0,0);
transform: translate(0,0)
}
.cli-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
-webkit-transform:scale(0);
transform:scale(0);
transition: opacity ease-in-out 0.5s;
}
.cli-modal-backdrop.cli-fade {
opacity: 0;
}
.cli-modal-backdrop.cli-show {
opacity: .5;
-webkit-transform:scale(1);
transform:scale(1);
}
.cli-modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 99999;
transform: scale(0);
overflow: hidden;
outline: 0;
display: none;
}
.cli-modal a {
text-decoration: none;
}
.cli-modal .cli-modal-dialog {
position: relative;
width: auto;
margin: .5rem;
pointer-events: none;
font-family: inherit;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - (.5rem * 2))
}
@media (min-width: 576px) {
.cli-modal .cli-modal-dialog {
max-width:500px;
margin: 1.75rem auto;
min-height: calc(100% - (1.75rem * 2))
}
}
.cli-modal-content {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border-radius: .2rem;
box-sizing: border-box;
outline: 0
}
.cli-modal .row {
margin: 0 -15px;
}
.cli-modal .modal-body {
padding: 0;
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.cli-modal .cli-modal-close:focus {
outline: 0;
}
.cli-switch {
display: inline-block;
position: relative;
min-height: 1px;
padding-left: 38px;
font-size: 14px;
}
.cli-switch input[type="checkbox"] {
display:none;
}
.cli-switch .cli-slider {
background-color: #e3e1e8;
height: 20px;
width: 38px;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
}
.cli-switch .cli-slider:before {
background-color: #fff;
bottom: 2px;
content: "";
height: 15px;
left: 3px;
position: absolute;
transition: .4s;
width: 15px;
}
.cli-switch input:checked + .cli-slider {
background-color: #61a229;
}
.cli-switch input:checked + .cli-slider:before {
transform: translateX(18px);
}
.cli-switch .cli-slider {
border-radius: 34px;
font-size:0;
}
.cli-switch .cli-slider:before {
border-radius: 50%;
}
.cli-tab-content {
background: #ffffff;
}
.cli-nav-pills {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
-ms-flex-direction: column;
flex-direction: column;
}
.cli-nav-pills, .cli-tab-content {
width: 100%;
padding:5px 30px 5px 5px;
box-sizing: border-box;
}
@media (max-width: 767px) {
.cli-nav-pills, .cli-tab-content {
padding: 30px 10px;
}
}
.cli-nav-pills {
background: #fff;
}
.cli-nav-pills .cli-nav-link {
border: 1px solid #cccccc;
margin-bottom: 10px;
color:#2a2a2a;
font-size: 14px;
display: block;
padding: .5rem 1rem;
border-radius: .25rem;
cursor: pointer
}
.cli-nav-pills .cli-nav-link.cli-active, .cli-nav-pills .cli-show>.cli-nav-link {
background-color: #f6f6f9;
border: 1px solid #cccccc;
}
.cli-nav-pills .cli-nav-link.cli-active {
color:#2a2a2a;
}
.cli-tab-content .cli-button-wrapper {
padding-top: 30px;
margin-top: 30px;
border-top: 1px solid #d6d6d6;
}
.cli-tab-content p {
color: #343438;
font-size: 14px;
margin-top: 0;
}
.cli-tab-content h4 {
font-size: 20px;
margin-bottom: 1.5rem;
margin-top: 0;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
color: inherit;
} #cookie-law-info-bar .cli-nav-pills,#cookie-law-info-bar .cli-tab-content,#cookie-law-info-bar .cli-nav-pills .cli-show>.cli-nav-link,#cookie-law-info-bar a.cli-nav-link.cli-active{
background: transparent;
}
#cookie-law-info-bar .cli-nav-pills .cli-nav-link.cli-active,#cookie-law-info-bar  .cli-nav-link,#cookie-law-info-bar .cli-tab-container p,#cookie-law-info-bar span.cli-necessary-caption,#cookie-law-info-bar .cli-switch .cli-slider:after
{
color:inherit;
}
#cookie-law-info-bar .cli-tab-header a:before
{
border-right: 1px solid currentColor;
border-bottom: 1px solid currentColor;
}
#cookie-law-info-bar .cli-row
{
margin-top:20px;
}
#cookie-law-info-bar .cli-col-4
{
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
#cookie-law-info-bar .cli-col-8
{
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.cli-wrapper {
max-width: 90%;
float: none;
margin: 0 auto;
}
#cookie-law-info-bar .cli-tab-content h4
{
margin-bottom:0.5rem;
}
#cookie-law-info-bar .cli-nav-pills .cli-nav-link
{
padding: .2rem 0.5rem;
}
#cookie-law-info-bar .cli-tab-container
{
display:none;
text-align:left;
} .cli-tab-footer .cli-btn {
background-color: #00acad;
padding: 10px 15px;
text-decoration:none;
}
.cli-tab-footer .wt-cli-privacy-accept-btn {
background-color: #61a229;
color: #ffffff;
border-radius: 0;
}
.cli-tab-footer {
width:100%;
text-align:right;
padding: 20px 0;
} .cli-col-12
{
width:100%;
}
.cli-tab-header
{
display: flex;
justify-content: space-between;
}
.cli-tab-header a:before {
width: 10px;
height: 2px;
left: 0;
top: calc(50% - 1px);
}
.cli-tab-header a:after {
width: 2px;
height: 10px;
left: 4px;
top: calc(50% - 5px);
-webkit-transform: none;
transform: none;
}
.cli-tab-header a:before {
width: 7px;
height: 7px;
border-right: 1px solid #4a6e78;
border-bottom: 1px solid #4a6e78;
content: " ";
transform: rotate(-45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
margin-right:10px;
}
.cli-tab-header a.cli-nav-link  {
position: relative;
display: flex;
align-items: center;
font-size:14px;
color:#000;
text-transform: capitalize;
}
.cli-tab-header.cli-tab-active .cli-nav-link:before
{
transform: rotate(45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.cli-tab-header {
border-radius: 5px;
padding: 12px 15px;
cursor: pointer;
transition: background-color 0.2s ease-out 0.3s, color 0.2s ease-out 0s;
background-color:#f2f2f2;
}
.cli-modal .cli-modal-close {
position: absolute;
right: 0;
top: 0;
z-index: 1;
-webkit-appearance: none;
width: 40px;
height: 40px;
padding: 0;
border-radius: 50%;
padding: 10px;
background: transparent;
border:none;
min-width: 40px;
}
.cli-tab-container h4,.cli-tab-container h1 {
font-family: inherit;
font-size: 16px;
margin-bottom: 15px;
margin:10px 0;
}
#cliSettingsPopup .cli-tab-section-container {
padding-top: 12px;
}
.cli-tab-container p ,.cli-privacy-content-text{
font-size: 14px;
line-height: 1.4;
margin-top: 0;
padding: 0;
color: #000;
}
.wt-cli-privacy
{
display:none;
}
.cli-tab-content
{
display:none;
}
.cli-tab-section .cli-tab-content
{
padding: 10px 20px 5px 20px;
}
.cli-tab-section
{
margin-top:5px;
}
@media (min-width: 992px) {
.cli-modal .cli-modal-dialog {
max-width: 645px;
}
}
.cli-switch .cli-slider:after{
content: attr(data-cli-disable);
position: absolute;
right: 50px;
color: #000;
font-size:12px;
text-align:right;
min-width: 80px;
}
.cli-switch input:checked + .cli-slider:after
{
content: attr(data-cli-enable);
}
.cli-privacy-overview:not(.cli-collapsed) .cli-privacy-content {
max-height: 60px;
transition: max-height 0.15s ease-out;
overflow: hidden;
}
a.cli-privacy-readmore {
font-size: 12px;
margin-top: 12px;
display: inline-block;
padding-bottom: 0;
cursor: pointer;
color:#000;
text-decoration: underline;
}
.cli-modal-footer {
position: relative;
}
a.cli-privacy-readmore:before {
content: attr(data-readmore-text);
}
.cli-collapsed a.cli-privacy-readmore:before {
content: attr(data-readless-text);
}
.cli-collapsed .cli-privacy-content
{
transition: max-height 0.25s ease-in;
}
.cli-privacy-content p
{
margin-bottom:0;
}
.cli-modal-close svg {
fill: #000;
}
span.cli-necessary-caption {
color: #000;
font-size: 12px;
}
.cli-tab-section.cli-privacy-tab {
display: none;
}
#cookie-law-info-bar .cli-tab-section.cli-privacy-tab {
display: block;
}
#cookie-law-info-bar .cli-privacy-overview {
display: none;
}
.cli-tab-container .cli-row
{
max-height: 500px;
overflow-y: auto;
}
.cli-modal.cli-blowup.cli-out {
z-index: -1;
}
.cli-modal.cli-blowup {
z-index: 999999;
transform: scale(1);
}
.cli-modal.cli-blowup .cli-modal-dialog {
animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.cli-modal.cli-blowup.cli-out .cli-modal-dialog
{
animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes blowUpContent {
0% {
transform: scale(1);
opacity: 1;
}
99.9% {
transform: scale(2);
opacity: 0;
}
100% {
transform: scale(0);
}
}
@keyframes blowUpContentTwo {
0% {
transform: scale(2);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
@keyframes blowUpModal {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes blowUpModalTwo {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(0.5);
opacity: 0;
}
100% {
transform: scale(0);
opacity: 0;
}
}
.cli-tab-section .cookielawinfo-row-cat-table td, .cli-tab-section .cookielawinfo-row-cat-table th {
font-size: 12px;
}
.cli_settings_button
{
cursor: pointer;
} .wt-cli-sr-only
{
display: none;
font-size:16px;
} a.wt-cli-element.cli_cookie_close_button {
text-decoration: none;
color: #333333;
font-size: 22px;
line-height: 22px;
cursor: pointer;
position: absolute;
right: 10px;
top: 5px;
} .cli-bar-container{
float: none;
margin: 0 auto;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
justify-content: space-between;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.cli-bar-btn_container {
margin-left: 20px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
flex-wrap: nowrap;
}
.cli-style-v2 a
{
cursor: pointer;
}
.cli-bar-btn_container a {
white-space: nowrap;
}
.cli-style-v2 .cli-plugin-main-link
{
font-weight:inherit;
}
.cli-style-v2
{
font-size: 11pt;
line-height: 18px;
font-weight:normal;
}
#cookie-law-info-bar[data-cli-type="widget"] .cli-bar-container,#cookie-law-info-bar[data-cli-type="popup"] .cli-bar-container{
display: block;
}
.cli-style-v2 .cli-bar-message {
width: 70%;
text-align: left;
}
#cookie-law-info-bar[data-cli-type="widget"] .cli-bar-message,#cookie-law-info-bar[data-cli-type="popup"] .cli-bar-message
{
width:100%;
}
#cookie-law-info-bar[data-cli-type="widget"] .cli-style-v2 .cli-bar-btn_container {
margin-top:8px;
margin-left: 0px;
flex-wrap: wrap;
} #cookie-law-info-bar[data-cli-type="popup"] .cli-style-v2 .cli-bar-btn_container {
margin-top:8px;
margin-left: 0px;
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"] .cli_messagebar_head{
text-align: left; margin-bottom: 5px;
margin-top: 0px;
font-size: 16px;
} .cli-style-v2 .cli-bar-message .wt-cli-ccpa-element,.cli-style-v2 .cli-bar-message .wt-cli-ccpa-checkbox {
margin-top: 5px;
}
.cli-style-v2 .cli-bar-btn_container .cli_action_button ,
.cli-style-v2 .cli-bar-btn_container .cli-plugin-main-link,
.cli-style-v2 .cli-bar-btn_container .cli_settings_button
{
margin-left: 5px;
}
.wt-cli-ccpa-checkbox label {
font-size: inherit;
cursor: pointer;
margin: 0px 0px 0px 5px;
} #cookie-law-info-bar[data-cli-style="cli-style-v2"]
{
padding: 14px 25px;
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="widget"]
{
padding:32px 30px;
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="popup"] {
padding: 32px 45px;
}
.cli-style-v2 .cli-plugin-main-link:not(.cli-plugin-button), .cli-style-v2 .cli_settings_button:not(.cli-plugin-button),.cli-style-v2 .cli_action_button:not(.cli-plugin-button){
text-decoration: underline;
}
.cli-style-v2 .cli-bar-btn_container .cli-plugin-button {
margin-top: 5px;
margin-bottom: 5px;
}
a.wt-cli-ccpa-opt-out {
white-space: nowrap;
text-decoration: underline;
}
.wt-cli-necessary-checkbox {
display: none !important;
}
@media (max-width: 985px) {
.cli-style-v2 .cli-bar-message
{
width:100%;
}
.cli-style-v2.cli-bar-container
{
justify-content:left;
flex-wrap: wrap;
}
.cli-style-v2 .cli-bar-btn_container {
margin-left:0px;
margin-top: 10px;
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"],#cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="widget"],#cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="popup"]
{
padding: 25px 25px;
}
} .wt-cli-ckyes-brand-logo {
display: flex;
align-items: center;
font-size: 9px;
color: #111111;
font-weight: normal;
}
.wt-cli-ckyes-brand-logo img{
width: 65px;
margin-left: 2px;
}
.wt-cli-privacy-overview-actions {
padding-bottom:0;
}
@media only screen and (max-width: 479px) and (min-width: 320px){
.cli-style-v2 .cli-bar-btn_container {
flex-wrap: wrap;
}
} .wt-cli-cookie-description {
font-size: 14px;
line-height: 1.4;
margin-top: 0;
padding: 0;
color: #000;
}.slick-loading .slick-list{background:#fff url(//www.fram-geo.pl/wp-content/plugins/wp-logo-showcase-responsive-slider-slider/assets/images/ajax-loader.gif) center center no-repeat}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.wpls-wrap, .wpls-wrap * {-webkit-box-sizing: border-box; box-sizing: border-box; outline: none;} .wpls-logo-clearfix:before, .wpls-logo-clearfix:after{content: "";display: table;}
.wpls-logo-clearfix::after{clear: both;}
.wpls-logo-clearfix{clear: both;}
.wpls-logo-showcase{visibility: hidden; opacity:0; -webkit-transition:opacity 0.5s linear; transition:opacity 0.5s linear;}
.wpls-logo-showcase.slick-initialized {visibility: visible; opacity:1;}
.wpls-logo-showcase{padding:0 30px 20px 30px; margin:0; text-align:center;}
.wpls-logo-showcase.wpls-dots-false{padding:0 30px 0px 30px !important;}
.wpls-logo-showcase .slick-next{right:0px !important;}
.wpls-logo-showcase .slick-prev{left:0px !important}
.wpls-logo-showcase .slick-dots{left:30px !important; right:30px !important; text-align:center;bottom:-10px !important; position: absolute;}
.wpls-logo-showcase .wpls-logo-cnt.slick-slide{margin:0 5px;}
.wpls-logo-showcase .wpls-fix-box{max-height: 250px; width: 100%; line-height: 0;}
.wpls-logo-showcase .wpls-logo-cnt.slick-slide img{display:inline-block !important; border-radius:0px !important; max-height:250px; max-width:100%; padding:10px; border:1px solid #f1f1f1; box-shadow:none !important }
.wpls-logo-showcase .slick-slide{  text-align:center !important; display: inline-block !important;   float:none !important;    vertical-align: middle !important;     }
.wpls-logo-showcase .slick-slide .logo-title{color:#444; padding:10px 0; font-size:16px;}
.wpls-logo-slider.wpls-center .slick-slide {opacity: 0.5; transform: scale(0.7); transition: all 300ms ease 0s;}
.wpls-logo-showcase.wpls-center .slick-center{opacity: 1;transform: scale(1);}
.wpls-logo-showcase .slick-arrow::before{display: none !important;}
.wpls-logo-showcase .wplss-logo-slide::before, .wpls-logo-showcase .wplss-logo-slide::after{display: none !important;}
.sliderimage_hide_border .wpls-logo-cnt.slick-slide img{padding:0px; border:0px solid #f1f1f1;}
@media screen and (max-width: 641px) {
.wpls-logo-showcase.wpls-center .slick-slide {opacity: 1;transform: scale(1); transition: all 300ms ease 0s;}
.wpls-logo-showcase.wpls-center .slick-center{opacity: 1;transform: scale(1);}
} .fusion-flex-container.wpls-fusion-flex{ flex-direction: column; }
.wpls-elementor-tab-wrap{min-width: 0; min-height: 0;} .wpls-logo-showcase .slick-arrow{position:absolute; z-index:9; padding:5px; display: inline-block; background-color: rgba(0, 0, 0, 0.5); text-align:center; width:30px; height:30px; cursor: pointer; border-radius: 50%; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.wpls-logo-showcase .slick-arrow svg{fill: #fff; height: 100%; width: 100%;}
.wpls-logo-showcase .slick-arrow:hover{background-color: rgba(0, 0, 0, 0.7);}
.wpls-logo-showcase .slick-dots {padding:0 !important; margin:0 !important; text-align:center;}
.wpls-logo-showcase .slick-dots li {list-style:none !important; display:inline-block !important; line-height:0px !important; margin:0 3px !important; padding:0px !important; }
.wpls-logo-showcase .slick-dots li button {text-indent:-99999px;margin: 0px !important; padding: 0px !important; border: 2px solid #444 !important; border-radius: 50% !important; width: 12px !important; height: 12px !important; background-color:#fff; cursor:pointer;}
.wpls-logo-showcase .slick-dots li button:focus {outline:none !important}
.wpls-logo-showcase .slick-dots li.slick-active button {background:#8D8C8C !important;}.is-menu a,.is-menu a:focus,.is-menu a:hover,.is-menu:hover>a{background:0 0!important;outline:0}.is-screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);color:#000;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}.is-menu,form .is-link-container{position:relative}.is-menu a{line-height:1}.is-menu a::after,.is-menu a::before{display:none!important}.is-menu.default form{max-width:310px}.is-menu.is-dropdown form{display:none;min-width:310px;max-width:100%;position:absolute;right:0;top:100%;z-index:9}.is-menu.full-width-menu form,.is-menu.sliding form{min-width:0!important;overflow:hidden;position:absolute;right:0;top:25%;width:0;z-index:9;padding:0;margin:0}.is-menu.full-width-menu form:not(.is-search-form) input[type=search],.is-menu.full-width-menu form:not(.is-search-form) input[type=text],.is-menu.is-dropdown form:not(.is-search-form) input[type=search],.is-menu.is-dropdown form:not(.is-search-form) input[type=text],.is-menu.sliding form:not(.is-search-form) input[type=search],.is-menu.sliding form:not(.is-search-form) input[type=text],.is-popup-search-form form:not(.is-search-form) input[type=search],.is-popup-search-form form:not(.is-search-form) input[type=text]{background:#fff;color:#000}.is-menu.is-first form{right:auto;left:0}.is-menu.full-width-menu.open .search-close,.is-menu.full-width-menu:not(.open) form,.is-menu.is-dropdown form[style="display: block;"]+.search-close,.is-menu.sliding.open .search-close,.is-menu.sliding:not(.open) form,form:hover+.is-link-container,form:hover>.is-link-container{display:block}.is-form-style-2 .is-search-submit,.is-link-container,.is-menu form .screen-reader-text,.search-close{display:none}.is-menu form label{margin:0;padding:0}.is-menu-wrapper{display:none;position:absolute;right:5px;top:5px;width:auto;z-index:9999}.popup-search-close,.search-close{cursor:pointer;width:20px;height:20px}.is-menu-wrapper.is-expanded{width:100%}.admin-bar .is-menu-wrapper{top:51px}.is-menu-wrapper .is-menu{float:right}.is-menu-wrapper .is-menu form{right:0;left:auto}.gsc-cse-search-menu{max-width:310px;float:right}.gsc-cse-search-menu .cse .gsc-control-cse,.gsc-cse-search-menu .gsc-control-cse{padding:0}.is-menu .search-icon-path{fill:#848484}.search-close{position:absolute;right:-22px;top:33%;z-index:99999}.is-menu.is-first .search-close{right:auto;left:-22px}.is-menu.is-dropdown .search-close{top:calc(100% + 7px)}.popup-search-close{z-index:99999;float:right;position:relative;margin:20px 20px 0 0}#is-popup-wrapper{width:100%;height:100%;position:fixed;top:0;left:0;background:rgba(4,4,4,.91);z-index:999999}.is-popup-search-form form{width:80%;margin:20% auto 0}.is-popup-search-form form.is-ajax-search{margin:10% auto 0}.popup-search-close:after,.search-close:after{border-left:2px solid #848484;content:'';height:20px;left:9px;position:absolute;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.popup-search-close:before,.search-close:before{border-left:2px solid #848484;content:'';height:20px;left:9px;position:absolute;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.is-highlight{background-color:#ffffb9;color:#222}@media screen and (max-width:910px){.is-menu form{left:0;min-width:50%;right:auto}.is-menu.default form{max-width:100%}.is-menu.full-width-menu.active-search{position:relative}.is-menu-wrapper{display:block}}.is-form-style label,.is-menu.full-width-menu.is-first button.is-search-submit,.is-menu.sliding.is-first button.is-search-submit{display:inline-block!important}form .is-link-container div{position:absolute;width:200px;bottom:-25px;left:5px;z-index:99999;height:auto;line-height:14px;padding:10px 15px}form .is-link-container a{text-decoration:none;font-size:14px;font-weight:100;font-family:arial;box-shadow:none}form .is-link-container a:hover{text-decoration:underline}form .is-link-container a.is-customize-link{margin-left:15px}.is-form-style label{padding:0;vertical-align:middle;margin:0;width:100%;line-height:1}.is-form-style{line-height:1;position:relative;padding:0!important}.is-form-style.is-form-style-3 label{width:calc(100% - 36px)!important}.is-form-style input.is-search-input{background:#fff;background-image:none!important;color:#333;padding:0 12px;margin:0;outline:0!important;font-size:14px!important;height:36px;min-height:0;line-height:1;border-radius:0;border:1px solid #ccc!important;font-family:arial;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-webkit-border-radius:0}.is-form-style input.is-search-input::-ms-clear{display:none;width:0;height:0}.is-form-style input.is-search-input::-ms-reveal{display:none;width:0;height:0}.is-form-style input.is-search-input::-webkit-search-cancel-button,.is-form-style input.is-search-input::-webkit-search-decoration,.is-form-style input.is-search-input::-webkit-search-results-button,.is-form-style input.is-search-input::-webkit-search-results-decoration{display:none}.is-form-style.is-form-style-3 input.is-search-input{border-right:0!important}.is-form-style button.is-search-submit{background:0 0;border:0;box-shadow:none!important;opacity:1;padding:0!important;margin:0;line-height:0;outline:0;vertical-align:middle;width:36px;height:36px}.is-menu.full-width-menu.is-first button.is-search-submit:not([style="display: inline-block;"]),.is-menu.sliding.is-first button.is-search-submit:not([style="display: inline-block;"]){visibility:hidden}.is-form-style .is-search-submit path{fill:#555}.is-form-style input.is-search-submit{text-decoration:none;position:absolute;top:0;right:0;padding:0 10px!important;width:auto}.is-search-icon{width:36px;padding-top:6px!important}.is-search-icon svg{width:22px;display:inline}.is-form-style input.is-search-submit,.is-search-icon{display:inline-block!important;color:#666;background:#ededed;box-shadow:none!important;outline:0;margin:0;font-size:14px!important;border:1px solid #ccc;border-radius:0;line-height:1;height:36px;text-transform:capitalize;vertical-align:middle;-webkit-transition:background-color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out;-o-transition:background-color .1s ease-in-out;transition:background-color .1s ease-in-out;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.is-search-icon:hover,form.is-form-style input.is-search-submit:hover{background:#dcdcdc}.mega-menu-last-modified-1607638148 { content: 'Thursday 10th December 2020 22:09:08 UTC'; }
#mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge {
transition: none;
border-radius: 0;
box-shadow: none;
background: none;
border: 0;
bottom: auto;
box-sizing: border-box;
clip: auto;
color: #464646;
display: block;
float: none;
font-family: inherit;
font-size: 14px;
height: auto;
left: auto;
line-height: 1.7;
list-style-type: none;
margin: 0;
min-height: auto;
max-height: none;
min-width: auto;
max-width: none;
opacity: 1;
outline: none;
overflow: visible;
padding: 0;
position: relative;
pointer-events: auto;
right: auto;
text-align: left;
text-decoration: none;
text-indent: 0;
text-transform: none;
transform: none;
top: auto;
vertical-align: baseline;
visibility: inherit;
width: auto;
word-wrap: break-word;
white-space: normal;
}
#mega-menu-wrap-primary:before, #mega-menu-wrap-primary #mega-menu-primary:before, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column:before, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge:before, #mega-menu-wrap-primary:after, #mega-menu-wrap-primary #mega-menu-primary:after, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column:after, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge:after {
display: none;
}
#mega-menu-wrap-primary {
border-radius: 0;
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary {
background: #fff;
}
}
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary a:focus, #mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary input:focus, #mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus {
outline: 3px solid #109cde;
outline-offset: -3px;
}
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
outline-offset: 2px;
}
#mega-menu-wrap-primary.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
background: #fff;
color: #01a0e3;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
color: #fff;
background: #01a0e3;
}
}
#mega-menu-wrap-primary #mega-menu-primary {
visibility: visible;
text-align: left;
padding: 0px 15px 0px 15px;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
cursor: pointer;
display: inline;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group {
vertical-align: middle;
display: inline-block;
transition: none;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-description {
transition: none;
line-height: 1.5;
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-description {
font-style: italic;
font-size: 0.8em;
text-transform: none;
font-weight: normal;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
display: flex;
align-items: center;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
flex: 0 0 auto;
align-self: flex-start;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top > a.mega-menu-link {
display: table-cell;
vertical-align: middle;
line-height: initial;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
display: block;
margin: 0 0 6px 0;
text-align: center;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
display: inline-block;
transition: none;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
display: block;
line-height: 40px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
display: inline-block;
margin: 0 6px 0 0;
text-align: left;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
float: right;
margin: 0 0 0 6px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-animating > ul.mega-sub-menu {
pointer-events: none;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
cursor: inherit;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
cursor: pointer;
}
#mega-menu-wrap-primary #mega-menu-primary p {
margin-bottom: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary input, #mega-menu-wrap-primary #mega-menu-primary img {
max-width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {
display: block;
visibility: hidden;
opacity: 1;
pointer-events: auto;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {
display: none;
visibility: visible;
opacity: 1;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
display: none;
}
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
opacity: 0;
transition: opacity 200ms ease-in, visibility 200ms ease-in;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
opacity: 1;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
opacity: 0;
transform: translate(0, 10px);
transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
opacity: 1;
transform: translate(0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
transform: translate(0, 10px);
transition: transform 200ms ease-in, visibility 200ms ease-in;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
transform: translate(0, 0);
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
display: none;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
visibility: visible;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
visibility: inherit;
opacity: 1;
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a[class^='dashicons']:before {
font-family: dashicons;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:before {
display: inline-block;
font: inherit;
font-family: dashicons;
position: static;
margin: 0 6px 0 0px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: inherit;
background: transparent;
height: auto;
width: auto;
top: auto;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
margin: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
margin: 0 6px 0 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
border-radius: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right > ul.mega-sub-menu {
right: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
border-radius: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-menu-item {
position: static;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
margin: 0 0px 0 0;
display: inline-block;
height: auto;
vertical-align: middle;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {
float: right;
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {
margin: 0 0 0 0px;
}
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-float-left {
float: left;
}
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
background: #fff;
color: #01a0e3;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
background: #fff;
color: #01a0e3;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
color: #fff;
background: #01a0e3;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
background: #fff;
color: #01a0e3;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
color: #fff;
background: #01a0e3;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
line-height: 60px;
height: 60px;
padding: 0px 10px 0px 10px;
vertical-align: baseline;
width: auto;
display: block;
color: #464646;
text-transform: none;
text-decoration: none;
text-align: left;
text-decoration: none;
background: rgba(0, 0, 0, 0);
border: 0;
border-radius: 0;
font-family: inherit;
font-size: 15px;
font-weight: normal;
outline: none;
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
line-height: inherit;
display: table-cell;
vertical-align: middle;
}
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
display: none;
}
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
display: list-item;
margin: 0;
clear: both;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {
float: none;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
border-radius: 0;
border: 0;
margin: 0;
line-height: 40px;
height: 40px;
padding: 0 10px;
background: transparent;
text-align: left;
color: #222;
font-size: 14px;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
width: 100%;
float: left;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
float: left;
min-height: 1px;
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
width: 14.28571%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
width: 28.57143%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
width: 42.85714%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
width: 57.14286%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
width: 71.42857%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
width: 85.71429%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
width: 12.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
width: 37.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
width: 62.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
width: 87.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
width: 11.11111%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
width: 22.22222%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
width: 44.44444%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
width: 55.55556%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
width: 77.77778%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
width: 88.88889%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
width: 10%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
width: 30%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
width: 70%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
width: 90%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
width: 9.09091%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
width: 18.18182%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
width: 27.27273%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
width: 36.36364%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
width: 45.45455%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
width: 54.54545%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
width: 63.63636%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
width: 72.72727%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
width: 81.81818%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
width: 90.90909%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
width: 8.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
width: 41.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
width: 58.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
width: 91.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
width: 100%;
}
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
width: 100%;
clear: both;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
padding: 15px 15px 15px 15px;
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
z-index: 999;
border-radius: 0;
background: #fff;
border: 0;
padding: 0px 15px 0px 15px;
position: absolute;
width: 100%;
max-width: none;
left: 0;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
float: left;
position: static;
width: 100%;
}
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
width: 14.28571%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
width: 28.57143%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
width: 42.85714%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
width: 57.14286%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
width: 71.42857%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
width: 85.71429%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
width: 12.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
width: 37.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
width: 62.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
width: 87.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
width: 11.11111%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
width: 22.22222%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
width: 44.44444%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
width: 55.55556%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
width: 77.77778%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
width: 88.88889%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
width: 10%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
width: 30%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
width: 70%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
width: 90%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
width: 9.09091%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
width: 18.18182%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
width: 27.27273%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
width: 36.36364%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
width: 45.45455%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
width: 54.54545%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
width: 63.63636%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
width: 72.72727%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
width: 81.81818%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
width: 90.90909%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
width: 8.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
width: 41.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
width: 58.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
width: 91.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
width: 100%;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
margin: 5px 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
clear: both;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
margin-left: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
margin-left: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
color: #464646;
font-family: inherit;
font-size: 14px;
display: block;
float: left;
clear: none;
padding: 15px 15px 15px 15px;
vertical-align: top;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: left;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
color: #01a0e3;
font-family: inherit;
font-size: 16px;
text-transform: uppercase;
text-decoration: none;
font-weight: bold;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 0px 0px 5px 0px;
vertical-align: top;
display: block;
visibility: inherit;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link { color: #464646;
font-family: inherit;
font-size: 16px;
text-transform: none;
text-decoration: none;
font-weight: bold;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 7px 0px 7px 0px;
vertical-align: top;
display: block;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus { color: #01a0e3;
font-weight: bold;
text-decoration: none;
background: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
text-decoration: none;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link { color: #464646;
font-family: inherit;
font-size: 14px;
text-transform: none;
text-decoration: none;
font-weight: normal;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
vertical-align: top;
display: block;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
display: flex;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus { color: #464646;
font-weight: normal;
text-decoration: none;
background: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
border: 0;
padding: 10px;
border-radius: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
width: 100%;
clear: both;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
color: #464646;
font-family: inherit;
font-size: 14px;
text-transform: none;
text-decoration: none;
font-weight: normal;
margin: 0;
border: 0;
padding: 0px 0px 0px 0px;
vertical-align: top;
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
color: #464646;
font-weight: normal;
text-decoration: none;
background: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
z-index: 999;
position: absolute;
width: 242px;
max-width: none;
padding: 0px 0px 0px 0px;
border: 0;
background: #fff;
border-radius: 0;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
float: left;
position: static;
width: 100%;
padding: 0;
border: 0;
border-radius: 0;
}
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
clear: both;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
display: block;
background: #fff;
color: #464646;
font-family: inherit;
font-size: 14px;
font-weight: normal;
padding: 0px 10px 0px 10px;
line-height: 48px;
text-decoration: none;
text-transform: none;
vertical-align: baseline;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
background: #01a0e3;
font-weight: normal;
text-decoration: none;
color: #fff;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
position: absolute;
left: 100%;
top: 0;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
position: static;
left: 0;
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
padding-left: 20px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
padding-left: 30px;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
content: '\f347';
font-family: dashicons;
font-weight: normal;
display: inline-block;
margin: 0 0 0 6px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: rotate(0);
color: inherit;
position: relative;
background: transparent;
height: auto;
width: auto;
right: auto;
line-height: inherit;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
display: inline;
height: auto;
width: auto;
background: transparent;
position: relative;
pointer-events: auto;
left: auto;
min-width: auto;
line-height: inherit;
color: inherit;
font-size: inherit;
padding: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
float: right;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
content: '\f343';
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
float: right;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
content: '\f343';
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
display: none;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
display: none;
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
content: '\f345';
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
text-align: right;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
float: left;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
content: '\f341';
margin: 0 6px 0 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
float: right;
margin: 0 0 0 6px;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: -100%;
top: 0;
}
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary.mega-menu-accordion > li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
float: right;
}
}
#mega-menu-wrap-primary #mega-menu-primary li[class^='mega-lang-item'] > a.mega-menu-link > img {
display: inline;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link > img.iclflag {
display: inline;
margin-right: 8px;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-hide-on-mobile, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
display: none;
}
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-hide-on-desktop, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
display: none;
}
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary:after {
content: "";
display: table;
clear: both;
}
}
#mega-menu-wrap-primary .mega-menu-toggle {
display: none;
z-index: 1;
cursor: pointer;
background: rgba(255, 255, 255, 0);
border-radius: 0;
line-height: 40px;
height: 40px;
text-align: left;
user-select: none;
-webkit-tap-highlight-color: transparent;
outline: none;
white-space: nowrap;
}
#mega-menu-wrap-primary .mega-menu-toggle img {
max-width: 100%;
padding: 0;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary .mega-menu-toggle {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-preferred-size: 33.33%;
-webkit-flex-basis: 33.33%;
flex-basis: 33.33%;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left {
-webkit-box-flex: 1;
-ms-flex: 1;
-webkit-flex: 1;
flex: 1;
-webkit-box-pack: start;
-ms-flex-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
margin-left: 6px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
margin-right: 6px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center {
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
margin-left: 3px;
margin-right: 3px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
-webkit-box-flex: 1;
-ms-flex: 1;
-webkit-flex: 1;
flex: 1;
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
margin-right: 6px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
margin-left: 6px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
height: 100%;
outline: 0;
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
-ms-flex-negative: 0;
-webkit-flex-shrink: 0;
flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
background: #fff;
padding: 0px 0px 0px 0px;
display: none;
position: absolute;
width: 100%;
z-index: 9999999;
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
display: block;
}
}
body.mega-menu-primary.ast-header-break-point .ast-mobile-menu-buttons {
display: none;
}
@media only screen and (min-width: 769px) {
#mega-menu-wrap-primary #mega-menu-primary .ast-masthead-custom-menu-items {
display: inline-block;
margin: 0 0px 0 0;
}
}
#mega-menu-wrap-primary .mega-menu-toggle { }
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 {
cursor: pointer;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
content: '\f333';
font-family: 'dashicons';
font-size: 24px;
color: #01a0e3;
margin: 0 0 0 5px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
color: #01a0e3;
font-size: 14px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {
display: none;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {
display: inline;
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:after {
content: '\f153';
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {
display: inline;
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {
display: none;
}
#mega-menu-wrap-primary {
clear: both;
}
.mega-menu-white {
background: #fff !important;
}
.mega-menu-grey {
background: #f1f1f1 !important;
}.uabb-text-editor p{margin-bottom: 1em !important}
.site-header{position:fixed;width:100%;}
.site-header,#oferta{-webkit-box-s-1hadow: 0px 1px 20px 0px rgba(0,0,0,0.2);-moz-box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.2);box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.2);}
.cien-dol{-webkit-box-s-1hadow: 0px 2px 20px 0px rgba(0,0,0,0.4);-moz-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.4);box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.4);}
.cien-gora{-webkit-box-shadow: 0px -2px 20px 0px rgba(0,0,0,0.4);-moz-box-shadow: 0px -2px 20px 0px rgba(0,0,0,0.4);box-shadow: 0px -2px 20px 0px rgba(0,0,0,0.4);}
.home-wlokniny>div,.home-siatki>div,.home-tkaniny{transition: all .2s linear}
.home-oferta-kolumna{position:relative}
.oferta-kafelka-title>div>div{margin:0}
.tlo-zielen-1 .labb-heading{background:#0d8842;z-index:999}
.tlo-zielen-2 .labb-heading{background:#0d6b35;z-index:999}
.oferta-kafelka-title .labb-heading{position:absolute;top:0;z-index:9;padding: 0;margin:0;width:100%;}
.oferta-kafelka-title .labb-heading h3 a{color:#fff;display:block;width:100%;padding:15px 0;}
.oferta-kafelka-title .labb-heading h3 a:hover,.oferta .labb-portfolio h3 a:hover{background:#16739a}
.oferta-kafelka-title .labb-heading h3 a:after,.oferta .labb-portfolio h3 a:after{content:"";position:absolute;z-index:1;left:0;right:0;bottom:10px;background:#fff;height:2px;-webkit-transition-property:left, right;transition-property:left, right;-webkit-transition-duration:0.3s;transition:0.3s;opacity:0;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}
.oferta-kafelka-title .labb-heading h3 a:hover:after,.oferta .labb-portfolio h3 a:hover:after{left:41%;right:41%;opacity:1;}
div.uabb-info-list-content-wrapper,div.home-oferta-link{-webkit-transform: scale(1);transform: scale(1);-webkit-transition: all .4s;transition: all .4s}div.uabb-info-list-content-wrapper:hover,div.home-oferta-link:hover{-webkit-transform: scale(1.05);transform: scale(1.05)}.home-oferta-link a {color:#fff}
.labb-portfolio-wrap .labb-portfolio .labb-portfolio-item .hentry{position:relative;overflow:hidden}
.widget{margin: 0 0 1.4em 0}
.labb-portfolio-wrap .labb-portfolio .labb-portfolio-item .labb-project-image img{transform: scale(1.01, 1.01);-webkit-transform: scale(1.01, 1.01);}
.labb-portfolio-wrap .labb-portfolio .labb-portfolio-item .labb-project-image:hover img{transform: scale(1.1, 1.1);-webkit-transform: scale(1.1, 1.1);-webkit-filter: brightness(100%);filter: brightness(100%)}
.oferta .labb-entry-text-wrap{width:100%;position:absolute;bottom:0;margin:0}
.oferta .labb-portfolio-wrap .entry-title{margin-bottom:0 !important}
.oferta .labb-portfolio h3 a{display: block;padding: 15px 0;background:#0d8842;width: 100%;font-size:1.4rem}
.oferta .labb-portfolio-wrap .labb-taxonomy-filter .labb-filter-item.labb-active:after{border-bottom: 3px solid #01a0e3}
.oferta .labb-portfolio-wrap .labb-taxonomy-filter .labb-filter-item a:hover{color:#01a0e3}
.ast-page-builder-template .site-content>.ast-container,.category>.hfeed>.site-content>.ast-container{margin-top:90px}
.blog-layout-1{padding:10px 0 0 0;border-bottom:0}
.category-oferta>.blog-layout-1>.post-content>.clear:after{display:none}
p.read-more{height:45px!important;}
.read-more a{width:auto;padding:10px 50px;background-color:#0d8842;color:#fff;float:right;margin-right:-20px}
.read-more a:hover{background-color:#01a0e3}
.ast-page-builder-template .entry-header{float:left;padding:0;margin:5px 0;position:relative;left:350px}
.post-thumb img{width:320px;height:240px;float:left;display:block}
.ast-archive-description{padding-left:26.3%;margin-bottom:0}
.blog-layout-1 .entry-content{display:inline-block;float:left;width:100%;padding-left:350px;min-height:174px;vertical-align:baseline}
.pagination{text-align:center}
.ast-pagination .nav-links{width:auto}
.blog-layout-1>.post-content>.entry-content>p{margin:0;height:139px}
.ast-article-post{margin:0 0 0 -20px!important}
.ast-article-post:nth-child(odd){background:#f1f1f1}
.entry-header+.ast-blog-featured-section{margin:0 0 0 20px;width:320px;position:absolute;top:-10px}
.gallery-item,.gallery-caption{border-radius:0;border:0}
.labb-posts-carousel .labb-posts-carousel-item .hentry{border-radius:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important}
.labb-posts-carousel .labb-posts-carousel-item .hentry:hover{-webkit-box-shadow:none;box-shadow:none}
.labb-posts-carousel .labb-posts-carousel-item .labb-entry-text-wrap{padding:0 !important}
.labb-posts-carousel .labb-posts-carousel-item .labb-entry-text-wrap .entry-title a{font-size: 1.5rem;color:#fff!important;margin:0;padding:15px 0;background:#0d8842;margin:0;display:block;width:100%;-webkit-transition: all .4s ease-in-out 0s;transition: all .4s ease-in-out 0s}
.labb-posts-carousel .labb-posts-carousel-item .labb-entry-text-wrap .entry-title a:hover{background:#16739a;color:#fff}
.ast-breadcrumbs{margin-left:5px}
#secondary{margin: 2em 0 0 2.5em;padding-bottom:2.5em}
tr:nth-child(even){background:#d7d7d7}
tr:nth-child(odd){background:#ffffff}
.gallery-caption{font-size:0.8em!important}
.oferta-kafelka-title p, .oferta-kafelka-title h3.labb-title,.post-navigation{display:none}
.uabb-subheading > ul{margin:10px 0 10px 20px !important}
.parametry td{text-align:center;vertical-align:middle;font-size:14px}
.gallery-icon{border:0}
.labb-testimonials-slider .labb-testimonial-user .labb-image-wrapper img{border-radius:0}
.njba-accordion-item {margin-bottom:5px!important}
.njba-tabs-label{margin-right:5px}
.njba-tabs-label:last-child{margin-right:0}
.tabelka-produkty td, .tabelka-produkty th{text-align:center;vertical-align:middle}
.tabelka-produkty ul{list-style:none;padding:0;margin:0}
.tabelka-produkty li{padding-left:1.3em}
.tabelka-produkty li:before{content:"\e957";font-family:Ultimate-Icons;display:inline-block;margin-left:-1.3em;width:1.3em;padding-top:2px;color:#01a0e3}
p.cell-vertical{writing-mode:vertical-rl;text-orientation:mixed;text-align:center;transform:rotate(180deg);margin-bottom:7px;margin-top:7px}
.njba-content p, .njba-content>.gallery>figure{margin-bottom:0}
.menu-toggle, button, .ast-button, .ast-custom-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]{color:#ffffff;background-color:#0d8842;border-radius:0;transition: all .2s linear}
button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus{background-color:#01a0e3;}
.sidebar-main {margin-top:40px;}
.sidebar-main > .widget_search {position:fixed;width:20%;top:120px;border-top:15px solid #fff;border-bottom:15px solid #fff;}
.labb-testimonials-slider .labb-testimonial-user .labb-image-wrapper img {border-radius: 0 !important}
.mobile a{display:none!important}
li.ast-masthead-custom-menu-items{padding:0!important}
.is-form-style{position:fixed}
.is-menu{position: relative;float: right;padding:20px 10px 0 10px}
.is-menu.is-dropdown form {right:40px !important}
.accordion-section-title{text-shadow:none!important}
.labb-taxonomy-filter{margin:0 auto!important}
.search-close{right: 10px!important}
.no-results>.page-content>.is-search-form{position:relative!important;margin:0 auto;width:30%}
.ast-404-search>.widget_search>.is-search-form{position:relative!important;margin:0 auto;width:100%}
.wpcf7 textarea{height:200px}
@media (min-width: 1350px){.home-button .fl-module-content {margin-right:45%!important}}
@media (max-width: 1600px){.labb-posts-carousel .labb-posts-carousel-item .labb-entry-text-wrap .entry-title a {font-size: 1rem;}}
@media screen and (max-width: 1360px) and (min-width: 1241px){.oferta .labb-portfolio h3 a {font-size: 1rem}.fl-node-5f059d329601a .labb-portfolio .labb-portfolio-item{padding: 2px}}
@media (max-width: 1024px) {.sidebar-main > .widget_search {position: relative;width: 100%;top: 0;border-top: 0;border-bottom: 0;}.sidebar-main {margin-top: 0;}.home-button .njba-icon-img{width:60px!important;height:61px!important}}
@media (max-width: 1023px) {.home-button{display:none}.home-head .labb-heading{margin:0 auto !important}.home-head .labb-heading{margin:0 auto !important}}
@media (max-width: 991px) {
.post-thumb{width:100%;height:320px;overflow: hidden}
.post-thumb img{width:100%;height:auto}
.blog-layout-1 .entry-content {display:inline-block;float: none;width:100%;margin-left:0;padding:10px 0px 10px 35px}
.read-more{display:block;width:100%;padding:15px 0;text-align:center}
}
@media screen and (max-width: 991px) and (min-width: 769px) {
.entry-header+.ast-blog-featured-section{margin:0 0 0 20px;float:none;position:relative;width:100%}
.ast-page-builder-template .entry-header {margin:15px 0 30px 20px;width:100%;float:none;left:0;text-align:center}
}
@media screen and (max-width: 921px) and (min-width: 769px) {
.is-menu.is-dropdown form {left: -275px;}
.ast-header-break-point .site-header .main-header-bar-wrap .site-branding {-js-display: unset;display: block;width: auto;float: left;}
.ast-header-break-point .ast-main-header-bar-alignment {float:right;width:auto}
}
@media screen and (max-width: 1500px) and (min-width: 1201px) { .oferta-kafelka-title>.fl-module-content>.labb-heading>h3>a{font-size:18px!important;padding: 20px 0;}}
@media screen and (max-width: 1200px) and (min-width: 1024px) { .home-welcome-kolumna {clear: none;float: left;display:block!important}.home-button .njba-icon-img{width:60px!important;height:61px!important}}
@media screen and (max-width: 1024px) and (min-width: 768px) {.home-oferta-kolumna {clear: none!important;float: left!important}.kontakt-col-1,.kontakt-col-2{max-width:50%!important;clear: none;float: left}.kontakt-col-3{max-width:100%!important;clear:both;float:none}}
@media screen and (max-width: 1240px) and (min-width: 801px) {.oferta .labb-portfolio h3 a {font-size: 0.8rem}.fl-node-5f059d329601a .labb-portfolio .labb-portfolio-item{padding: 1px}}
@media screen and (max-width: 800px) and (min-width: 769px) {.oferta .labb-portfolio h3 a {font-size: 1rem;}}
@media (max-width: 921px){.mobile a {display:block!important}.ast-custom-button-link,.button-custom-menu-item {display:none!important}}
@media (max-width: 1200px){.kolumna-referencje .njba-icon-img{width:100%!important;height:auto!important}}
@media (max-width: 768px){
.ast-row {margin-left:0;margin-right:0}
.ast-article-post {margin: 0!important;}
.ast-page-builder-template .entry-header {margin:15px 0 30px 0px;width:100%;float:none;left:0;text-align:center}
.ast-page-builder-template .ast-archive-description {margin-top: 2em;}
.entry-content {overflow:hidden}
.entry-header+.ast-blog-featured-section{margin:0 0 0 0;float:none;position:relative;width:100%}
.ast-header-break-point .ast-main-header-bar-alignment {margin-top: -30px;}
.main-header-bar {padding: 10px 0;}
.blog-layout-1 .entry-content {display:inline-block;float: none;width:100%;margin-left:0;padding:0}
#secondary {padding-left: 15px;padding-right:15px;margin:0}
.fl-node-5f0c3703aefaa .labb-posts-carousel .labb-posts-carousel-item {padding: 1px;}
.ast-breadcrumbs-wrapper, .ast-archive-description .ast-archive-title {text-align: center;}
.home-button-referencje{position: relative;z-index: 1}
.home-oferta-kolumna {clear: none!important;float:left!important}
.njba-tabs-label,.accordion-section-title{margin-right:0;margin-bottom:5px!important}
.njba-tabs-label:last-child,.accordion-section-title:last-child{margin-right:0;margin-bottom:0!important}
.is-form-style{position:fixed}
.astm-search-menu,.sub-caption-selector{display:none}
.gallery-caption{padding:5px 0;font-size: .7em!important;}
#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary{height:480px;overflow:scroll}
ul.mega-sub-menu li{margin-left:15px!important}
}
@media screen and (max-width: 768px) and (min-width: 600px) {.is-form-style{position:fixed!important;z-index:999;right:0;display:block;width:auto;}}
@media screen and (max-width: 768px) and (min-width: 480px) {a.accordion-section-title span.njba-accordion-label{font-size:18px!important}table.tabelka-produkty {font-size:0.8rem}}
@media (min-width: 992px) {
.show-mobile{display:none}
.show-desktop{display:block}
}
@media (max-width: 992px) {.show-mobile{display:block}.show-desktop{display:none}}
@media (max-width: 600px) {
.accordion{border-radius:0;}
.tabelka-produkty a {text-align:center;}
.accordion-section-title::before{display:none;}
.site-header{top:30px}
.main-header-bar{padding: 8px 0 0 0}
.ast-header-break-point .ast-main-header-bar-alignment{margin-top: -60px;}
.is-form-style{position:fixed!important;z-index:999;right:0;display:block;width:100%}
}
@media (max-width: 480px) {
.oferta-kafelka-title>.fl-module-content>.labb-heading>h3>a,a.accordion-section-title span.njba-accordion-label{font-size:12px!important}table.tabelka-produkty {font-size:0.7rem}}
@media only screen and (max-width: 479px){
.labb-portfolio-wrap .labb-taxonomy-filter .labb-filter-item a{padding: 0 7px 0px!important;font-size:14px!important}
.labb-portfolio-wrap .labb-portfolio-header{margin: 0 auto 20px!important}
}
@media (max-width: 330px) {.ast-page-builder-template .site-content > .ast-container{margin-top:99px}}